Re: calling dot net web services from java soap

2004-01-16 Thread Jonathan Roberts
Scott,   ps can you recommend any sample dot net services which are know to work with java soap apps.   Thanks again   JonathanScott Nichol <[EMAIL PROTECTED]> wrote: > What about the other soap code from the following snippet:> > e.g.> NS_URI_SOAP_ENCThat can probably stay, although it is technica

Re: calling dot net web services from java soap

2004-01-16 Thread Jonathan Roberts
Hi Scott,   The name space seems to be the ip address according to the dot net generated file!   I'll see if I get answhere   JonathanScott Nichol <[EMAIL PROTECTED]> wrote: > What about the other soap code from the following snippet:> > e.g.> NS_URI_SOAP_ENCThat can probably stay, although it is t

Re: calling dot net web services from java soap

2004-01-15 Thread Scott Nichol
> What about the other soap code from the following snippet: > > e.g. > NS_URI_SOAP_ENC That can probably stay, although it is technically not correct for document/literal. > & > urn:xml-SOAP-App (the name of my app) > You use the namespace of the .NET service. Scott Nichol Do not send e-ma

Re: calling dot net web services from java soap

2004-01-15 Thread Jonathan Roberts
Hi Scott,   What about the other soap code from the following snippet:   e.g. NS_URI_SOAP_ENC & urn:xml-SOAP-App (the name of my app)   Sicne I am now taliking to dotnet and not soap, presumably they do differ?   Jonathan         URL url = "" URL(mstrHostString + "/main.asmx");   

Re: calling dot net web services from java soap

2004-01-13 Thread Martin Gainty
You are most welcome.Cheers!Martin Gainty (cell) 001-617-852-7822From: Jonathan Roberts <[EMAIL PROTECTED]>>Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: calling dot net web services from java soap >Date: Tue, 13 Jan 2004 15:22:02 + (GMT)

Re: calling dot net web services from java soap

2004-01-13 Thread Jonathan Roberts
Thanks Scott. Scott Nichol <[EMAIL PROTECTED]> wrote: You usedr = c.invoke ( new URL( "localhost/soap/servlet/rpcrouter"), "" because "localhost/soap/servlet/rpcrouter" was the URL for your Apache SOAP service. The URL is simply the service endpoint; it can be any URL. To call a .NET service, you m

Re: calling dot net web services from java soap

2004-01-13 Thread Scott Nichol
You used r = c.invoke ( new URL( "localhost/soap/servlet/rpcrouter"), "" because "localhost/soap/servlet/rpcrouter" was the URL for your Apache SOAP service. The URL is simply the service endpoint; it can be any URL. To call a .NET service, you might have r = c.invoke ( new URL(http

Re: calling dot net web services from java soap

2004-01-13 Thread Jonathan Roberts
Thanks - looks like a great read.    JonathanMartin Gainty <[EMAIL PROTECTED]> wrote: JonathanCheck outhttp://www.csharphelp.com/archives/archive53.htmlRegards, Martin Gainty - Original Message - From: Jonathan Roberts To: [EMAIL PROTECTED] Sent: Tuesday, January 13, 2004 10:08 AM

Re: calling dot net web services from java soap

2004-01-13 Thread Martin Gainty
JonathanCheck outhttp://www.csharphelp.com/archives/archive53.htmlRegards, Martin Gainty - Original Message - From: Jonathan Roberts To: [EMAIL PROTECTED] Sent: Tuesday, January 13, 2004 10:08 AM Subject: calling dot net web services from java soap Hi guys