The Artima Developer Community
Sponsored Link

Java Answers Forum
How to make non-blocking soap.rpc.call in Java?

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Maxim Cherepovitsyn

Posts: 1
Nickname: makseek
Registered: Aug, 2003

How to make non-blocking soap.rpc.call in Java? Posted: Aug 15, 2003 2:32 AM
Reply to this message Reply
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

Topic: I am getting a nullpointer exception Previous Topic   Next Topic Topic: Is it possible to get the reference of one object from its element?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use