Hi,
I am using Apache ODE 1.3.3 and have deployed it on my JBOSS 4.2.3
Server.
I have created a Web Service client for the Process and Instance
Management API and am trying to get the info of the variables in my
process using getVariableInfo API.
I can access this API and get the correct result by using SOAP UI. But
by using Java WS Client code it is always null. I monitored the WS Call
and response using TCP Mon and I could see the correct response coming
back. But by the time it reaches back to the Java Code it is null.
TInstanceInfo instanceInfo = GetInstanceManagementPortType()
.getInstanceInfo(Long.parseLong(strProcessInstanceId));
String scopeId =
instanceInfo.getRootScope().getSiid();
TScopeInfo scopeInfo =
GetInstanceManagementPortType().getScopeInfo(Long.parseLong(scopeId));
//here varInfo is null
TVariableInfo varInfo =
GetInstanceManagementPortType().getVariableInfo(scopeInfo.getSiid(),strV
ariableName);
The code is as given above. Has anybody come across such a situation. Is
this a known Issue? I am creating the Webservice Client Stubs using JAX
WS.
Thanks & Regards
Dhanush Gopinath
|