Adding agent to a present database using Java app

Asked By 0 points N/A Posted on -
qa-featured

I need some help from anybody on how to make and add Agent to a present database using a Java stand alone application.

As mentioned in an article I undertake the option to bring in through DXL but it doesn’t work. Is there any way to solve this?

Any help or links will be very much appreciated.

SHARE
Answered By 10 points N/A #119071

Adding agent to a present database using Java app

qa-featured

You can try using the java application launcher to carry out task and see if it will be of help.

What happens when you use it is that the java tool will launch the Java application, and it will do that by starting a Java runtime environment, and then it will load a specified class, and thereafter it will invoke the main method of the class.

When doing that, you will need to make sure that the method has been declared public and static, and it must also not return any value, but it should be able to accept a Stringarray as a parameter.

The following is the syntax of how the method should look like:

Public static void main(String args[])

Thompson Locker

 

Related Questions