The Java Dynamic Management Kit or JDMK is a Java technology that provides a Java API and a collection of software tools for developing and designing JMX based applications (wikipedia).
Questions tagged [jdmk]
6 questions
5
votes
1 answer
Is Java DMK (or OpenDMK) still supported by Oracle?
Is Java DMK (Dynamic Management Kit) still supported by Oracle? I was trying to find any reference to JDMK on Oracle's site and all I could find was documentation/tutorial on how to use it, no reference to the product page itself.
I know about…

ganeshk
- 5,583
- 3
- 27
- 31
1
vote
0 answers
Encrypting or Encoding content in jdmk.security
I'm coding a java program, using the JDMK 5.1 toolkit, to send SNMPv3 traps and the jdmk security file (jdmk.security.file) I seem to need to create, and have in place, to do so currently has the authorization and privacy keys in the clear.
How can…

Dale
- 3,527
- 6
- 24
- 22
1
vote
0 answers
JMX Connection Hangs
With the following super simple Java application:
class Main {
static final private Logger logger = LoggerFactory.getLogger(Main.class);
public static void main(String[] args) throws Exception {
JMXServiceURL url = new…

clay
- 18,138
- 28
- 107
- 192
1
vote
2 answers
How can I tell why I'm getting an IOException at line 113 in com.sun.jdmk.comm.HttpSendSocket
My JDMK based application is getting intermittent IOExceptions at line 313 in com.sun.jdmk.comm.HttpSendSocket and I can't figure out why. All I know from the Javadoc about this is if an I/O error occurs while creating the input stream you'll get…

Dale
- 3,527
- 6
- 24
- 22
0
votes
2 answers
ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3 for arrays.main
import java.util.Scanner;
public class arrays {
public static void main(String[] args) {
int i;
int [][] m1 = new int[2][3];
int j;
Scanner sc = new Scanner(System.in);
…

Imbroz Singh
- 9
- 1
0
votes
0 answers
SnmpV3AdaptorServer snmpV1Trap throws IOException and not releasing its resource
I am using SNMPAdaptorServer for sending trap.
snmpAdaptor.snmpV1Trap(...)
For some reason it throwing IOException:
java.io.IOException: Invalid argument
at java.net.PlainDatagramSocketImpl.send(Native Method)
at…

c.sankhala
- 850
- 13
- 27