|
How to make non-blocking soap.rpc.call in Java?
|
Posted: Aug 15, 2003 2:32 AM
|
|
Advertisement
|
Hello,
The problem is that I can't find any information about non-blocking call. To make blocking I did folloving:
Call call = new Call(); call.setSOAPMappingRegistry(registry); call.setTargetObjectURI("urn:AcceptServer"); call.setMethodName("SetAndSend"); call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
Vector params = new Vector(); params.addElement(new Parameter("Student", Student.class, student, null));
call.setParams(params);
Response response; response = call.invoke(url, "");
But now I have to make non-blocking call.
Please give me any links or help with this code.
Thanks you in adwanse.
Maxim
|
|