Joined: 28 Apr 2002 Posts: 14 Location: Madison, WI
For Windows NT
The main problem is allowing the java application to find the classes that it needs under the userid that the trigger monitor it is executing under. A perl script can insert the path(s) required into the classpath environment variable and execute your java application. The script should look something like this...
$addPath = "c:\javadev1\;";
$currPath = $ENV{"CLASSPATH"};
$ENV{CLASSPATH} = $addPath.";".$currPath;
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum