Re: SOAPException

2002-08-02 Thread Scott Nichol
The "return value" is the first element in the response, which in this case is 'login'. The other elements in the response are available in the Response#getParams, which returns a Vector of Parameter instances. Scott Nichol - Original Message - From: "Siddique Farhan-W13881" <[EMAIL PRO

Extracting SOAP Entry From SOAP Body

2002-08-02 Thread Siddique Farhan-W13881
Hi, How do i extract SOAP entries from the SOAP body of a response??. I really appreciate your response. Thanks for your help in advance. Regards, Farhan -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: SOAPException

2002-08-02 Thread Scott Nichol
You will get the most help from this list if you post the code you are trying to run. Otherwise, unless you are experiencing one of the more common problems, you will probably not provide enough information for the folks reading this list to help. Scott Nichol - Original Message - From:

Re: Displaying the SOAP Message before Call.invoke() and after success

2002-08-02 Thread Scott Nichol
You cannot display the SOAP envelope before Call#invoke, because that is when the marshalling occurs. The best way to monitor what is being sent is using TcpTunnelGui included with Apache SOAP, some other proxy or a network monitor. If you have access to a UNIX-style platform, tcpdump is a great

Displaying the SOAP Message before Call.invoke() and after success

2002-08-02 Thread Siddique Farhan-W13881
Hello, How do i display SOAP messages before call.invoke and after success to System.out. Sample code would be very helpful. Thanks in advance Regards, Farhan -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: SOAPException

2002-08-02 Thread Siddique Farhan-W13881
Hi Guys, I am getting a different error now. What can be wrong if i get this error java.lang.Exception at java.lang.Throwable.fillInStackTrace(Native Method) at java.lang.Throwable.fillInStackTrace(Compiled Code) at java.lang.Throwable.(Compiled Code) at jav

Re: Question: Does SOAP support call-back?

2002-08-02 Thread Scott Nichol
My question is it possible for me to have a SOAP call back without setting up a web application server at the client-side? In the sense that you can have a SOAP server without a web app server, yes. Apache SOAP, however, requires an app server to receive SOAP RPC calls. Scott Nichol

RE: Question: Does SOAP support call-back?

2002-08-02 Thread Hongda Lin
My understandings for call back under SOAP are (please correct me if I am wrong): 1. Client and server switch rolls (during the call back, server initialized the connection to the client first). 2. Both server and client need to have web application server running (Apache Tomcat f

Re: Question: Does SOAP support call-back?

2002-08-02 Thread Scott Nichol
It does not support call back in a way like RMI. SOAP lacks many capabilities that RMI has. The SOAP 1.1 spec lists in Design Goals the following things that SOAP does *not* do: a.. Distributed garbage collection b.. Boxcarring or batching of messages c.. Objects-by-reference (which requi

Question: Does SOAP support call-back?

2002-08-02 Thread Hongda Lin
Hi,     I am trying to switch from JAVA RMI to SOAP. Does SOAP support call-back? If it does, how? Thank you.