> Hello, I'm just checking I have used the right syntax for my jvmargs as
> I'm having some problems (although this may be a config problem).
[quoted text clipped - 7 lines]
> Is this the correct syntax (obviously it isn't wrapped)?
> ...
The commandline seems to be incorrect (unless the class UberClient
parses the remaining commandline parameters). Java specific parameters
(-D, -client, -classpath) should appear before the main class (i.e. the
class to be invoked, UberClient in your case). Any parameters following
the main class are passed to this class, which should handle and/or
parse them.
It probably should be like this (all on a single line):
java -client -Dorg.omg.CORBA.ORBInitialHost=192.168.1.1
-Dorg.omg.CORBA.ORBInitialPort=3700 -classpath
C:\politse\j2ee.jar;C:\politse\appserv-rt.jar UberClient
See also <http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/java.html>

Signature
Regards,
Roland
Jeffrey Spoon - 24 Apr 2006 17:37 GMT
>The commandline seems to be incorrect (unless the class UberClient
>parses the remaining commandline parameters). Java specific parameters
[quoted text clipped - 10 lines]
>
>See also <http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/java.html>
Yeah I was taking the instructions a bit too literally. I found a good
example here
http://developers.sun.com/prodtech/appserver/reference/techart/mgmt_monit
oring.html after posting this.
The reason I tried the jvmargs at the end was because initially it
wouldn't work at the beginning, but that's because I was being stupid :/
Thanks for the help.

Signature
Jeffrey Spoon