Can any one help to write simple program using jlink java to open creo tool on executing of java program. what i have done so far is, installed creo-5.0.0.0 and JDK 8 and JLink i was trying to execute some programs, i get above error. May i know if i have missed anything? i just want basic steps from paths need to set and program to run open creo tool to draw. iam totally new to development only. Any help is appreciated. Thank
try
{
proe_cmd = "proeCmd -g:no_graphics -i:rpc_input";
pfcInstallTest.printMsg ("Async install test started.");
System.loadLibrary ("pfcasyncmt");
AsyncConnection ac = pfcAsyncConnection.AsyncConnection_Start (proe_cmd, null);
currSession = ac.GetSession ();
new pfcInstallTest (currSession);
ac.End();
pfcInstallTest.printMsg ("Async install test completed.");
System.runFinalization();
System.exit (0);
}