axis2 access .net web service

2007-09-22 Thread zhrb
Hello, I am now using axis2 accessing .net web service following samples of "EchoNonBlockingDualClient".The userguide just mentions the condition of both web service and client are based on axis2.But if my web service is .net web service,how should I use Axis2 client to access in the "EchoNonB

Re: Axis2 access .net web service

2007-09-22 Thread Sanjiva Weerawarana
zhrb wrote: > Thank you Anne,I have solved this problem as what you told me.I can > receive the param now.But still appearing the information "- > Discarding unexpected response: HTTP/1.1 100 Continue".Does that mean > anything wrong? No. .Net has this habit of first sending "100 Continuee" a

RE: Axis2 access .net web service

2007-09-22 Thread zhrb
Thank you Anne,I have solved this problem as what you told me.I can receive the param now.But still appearing the information "- Discarding unexpected response: HTTP/1.1 100 Continue".Does that mean anything wrong? -Zhang > Date: Sat, 22 Sep 2007 17:52:38 -0400> From: [EMAIL PROTECTED]> To:

Re: Axis2 access .net web service

2007-09-22 Thread Anne Thomas Manes
I believe you are not creating your payload properly. I'm not an expert on AXIOM, but I think it should look like this: public static OMElement getContentOMElement() { OMFactory fac = OMAbstractFactory.getOMFactory(); OMNamespace omNs = fac.createOMNamespace("http://tempuri.or

RE: Axis2 access .net web service

2007-09-22 Thread zhrb
Wsdl document is in the attachment.Waiting for your help. > Date: Sat, 22 Sep 2007 08:29:59 -0400> From: [EMAIL PROTECTED]> To: > axis-dev@ws.apache.org> Subject: Re: Axis2 access .net web service> > Please > provide the WSDL.> > Anne> > On 9/22/07, zhrb <[EMAIL PROTECTED]> wrote:> >> > > Hello

RE: Axis2 access .net web service

2007-09-22 Thread zhrb
WSDL document is in the attachment.This problem has troubled me for days,please help me.Thanks! > Date: Sat, 22 Sep 2007 08:29:59 -0400> From: [EMAIL PROTECTED]> To: > axis-dev@ws.apache.org> Subject: Re: Axis2 access .net web service> > Please > provide the WSDL.> > Anne> > On 9/22/07, zhrb <[

Re: Axis2 access .net web service

2007-09-22 Thread Anne Thomas Manes
Also -- please ask these questions on the axis-user list rather than the axis-dev list. Anne On 9/22/07, Anne Thomas Manes <[EMAIL PROTECTED]> wrote: > Please provide the WSDL. > > Anne > > On 9/22/07, zhrb <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > I am now trying to using axis2 as clien

Re: Axis2 access .net web service

2007-09-22 Thread Anne Thomas Manes
Please provide the WSDL. Anne On 9/22/07, zhrb <[EMAIL PROTECTED]> wrote: > > Hello, > > I am now trying to using axis2 as client to access .net web service. > > .net web service as follows: > > public string HelloWorld(string name) > { >return "Hello World"+name; > } > > Axis2 client co