Re: Accessing C# Web service from Java Client...

2002-12-09 Thread Siddhartha Mehta
Oh.. that was a silly mistake. Got it working though!!  Siddhartha Mehta <[EMAIL PROTECTED]> wrote: Yes, that was an error with the SOAPAction. I use MimeHeaders to set the header with SOAPAction and its working for me. Now when I send the login name and password, I get the string in return with t

Re: Accessing C# Web service from Java Client...

2002-12-09 Thread Siddhartha Mehta
Yes, that was an error with the SOAPAction. I use MimeHeaders to set the header with SOAPAction and its working for me. Now when I send the login name and password, I get the string in return with the session key. But I am not able to just retrieve the session key from the response. I've pasted bel

Re: Accessing C# Web service from Java Client...

2002-12-08 Thread Scott Nichol
Microsoft web services use SOAPAction to determine the method to execute. Your call.invoke is specifying an empty string. The WSDL for the service will show you the SOAPAction. Also, have you written the .NET web service to use rpc/encoded? Apache SOAP always sends rpc/encoded messages. You do

Re: Accessing C# Web service from Java Client...

2002-12-07 Thread Martin Gainty
that it is free of errors, virus, interception or interference.  _GMT-5___   >From: Siddhartha Mehta <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] >Subject: Re

Re: Accessing C# Web service from Java Client...

2002-12-07 Thread Siddhartha Mehta
Hi Martin, Thanks for your reply. When you said I have to SetContentType to text/xml, it has to be done on the Java client or in the C# web service. This could be very trivial. Please let me know. Thanks, Siddhartha  Martin Gainty <[EMAIL PROTECTED]> wrote: for SOAPContext SOAPResponse you h

Re: Accessing C# Web service from Java Client...

2002-12-07 Thread Martin Gainty
for SOAPContext SOAPResponse you have to SetContentType("text/xml"); I dont know how to do that with the Call Statements you have research use ofSOAPResponse to ensure you are getting the correct ContentType specified.. Keep me apprised, Martin Gainty ___