Re: reading SOAP Message at the webserver?

2007-08-23 Thread Pushkar Bodas
Sorry, It was supposed to be TCPMon...not TCSMon... :P Pushkar Bodas wrote: > > Hi Kerstin, > > Try to use TCSMon to monitor your soap message > [http://ws.apache.org/commons/tcpmon/] > This will help you monitor the soap message exchange. > > The soap message sent ca

Re: reading SOAP Message at the webserver?

2007-08-23 Thread Pushkar Bodas
Hi Kerstin, Try to use TCSMon to monitor your soap message [http://ws.apache.org/commons/tcpmon/] This will help you monitor the soap message exchange. The soap message sent can be seen in the stub as you debug through the program...and also, if im not mistaken (as I use axis2, earlier I used ax

Re: too many connections openned...

2007-08-21 Thread Pushkar Bodas
Hi Deepal, I was using Axis2 1.2 and there, in the client, using stub._getServiceClient().getOptions().setProperty() did not work the same way as adding a _serviceClient.getOptions().setProperty(...) to the stub. Should it work or there is a problem in whatever I am trying to write? Have yo

WSDL2Java Option for choosing Transport Chunking as FALSE

2007-08-21 Thread Pushkar Bodas
Hi All, I use Axis2's WSDL2Java utility to generate ADB stubs from a .NET webservice. This works fine if I change the option for Transport Chunking to False in the service client or the operation client in the stub. But if I want that while generating the stubs itself, they are generated with the

Re: urgent help on interop with SOAP over TCP on .Net

2007-08-20 Thread Pushkar Bodas
Hi, Do you want to monitor the SOAP messages?if so, try and use TCPmon [http://ws.apache.org/commons/tcpmon/].if I got you wrong, please specify what you want to do by receiving it. Thanks and regards, Pushkar Chen, John (N-Avatar Inc.) wrote: > > I have a .Net program sending SOAP me

Re: Using object lists for interop between axis2 and .NET

2007-08-20 Thread Pushkar Bodas
Hi, Using normal object arrays does work both ways. Thanks a lot anyway. Thanks and regards, Pushkar Pushkar Bodas wrote: > > Hi, > > Yeah, Im on to it right now and it may work, atleast its working for the > C# client for nowIv yet to test it on the java client. As so

Re: Using object lists for interop between axis2 and .NET

2007-08-20 Thread Pushkar Bodas
basic arrays -- avoid Java-specific collection classes. > > Anne > > On 8/20/07, Pushkar Bodas <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> I am trying to send a list of user defined objects across .NET and Axis2 >> web >> services and

Using object lists for interop between axis2 and .NET

2007-08-20 Thread Pushkar Bodas
Hi, I am trying to send a list of user defined objects across .NET and Axis2 web services and cleints(Java client for .NET service and C# client for Axis2 service). I havent done much ground work on this, but I tried passing ArrayLists and that doesnt work. I think using HashMaps may work, but

Re: Transfer-Encoding: chunked in axis 1.3

2007-08-20 Thread Pushkar Bodas
Hi, Do you create some stub to consume the webservice? The code which Felipe gave, or : .getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); in the stub does help setting the Transfer Encoding to be false and solves the problem between HTTP 1.1 and

RE: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-16 Thread Pushkar Bodas
d on by default, in > Axis, I believe. > Turn it off and those extraneous characters will go away. > http://wso2.org/library/952 > Suspect .NET doesn't have chunking, or at least doesn't have it on by > default. > -jeff > > > -Original Message- > From:

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-16 Thread Pushkar Bodas
t; > Hi, > By a casual look this seems to be a SOAP version problem. I see the > SOAPAction header in the C# client and not in the Axis2 client. > SOAPAction header is a specific header that is required in SOAP 1.1 > and the reason why the server coughs could be that > >

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-16 Thread Pushkar Bodas
hema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>http://tempuri.org/"/> / END OF MESSAGE / Ill look too, but guys, please have a look at this and help me. Thanks and regards, Pushkar Pu

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-16 Thread Pushkar Bodas
ease. Thanks and regards, Pushkar Pushkar Bodas wrote: > > Hi, > [See : Amila] > > The port numbers are as per changed by the TCPMon. Both the requests are > redirected to the same port 2389. So I had just chosen these ports so that > it would be easy for me to monitor

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-16 Thread Pushkar Bodas
ook this seems to be a SOAP version problem. I see the > SOAPAction header in the C# client and not in the Axis2 client. > SOAPAction header is a specific header that is required in SOAP 1.1 > and the reason why the server coughs could be that > > Ajith > > On 8/15/07, Pushkar Bod

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-16 Thread Pushkar Bodas
I see the >> SOAPAction header in the C# client and not in the Axis2 client. >> SOAPAction header is a specific header that is required in SOAP 1.1 >> and the reason why the server coughs could be that >> >> Ajith >> >> On 8/15/07, Pushkar Bodas <[EMA

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-15 Thread Pushkar Bodas
ere we see the elements "Content-Type","User-Agent" etc, or another problem could be the "d2" and "0" thing wrapping the soap message. Please help. Thanks and regards, Pushkar Pushkar Bodas wrote: > > Hi, > > Thanks for this utility. Its just a

RE: [AXIS2] org.apache.axis2.AxisFault: input stream for an incoming message is null

2007-08-15 Thread Pushkar Bodas
Hi, Even I am trying to do almost the same thing. I exposed a web service in .NET and I am consuming it in Axis2 generated ADB Client. But the Hello World method itself gives a Error 400 : Bad Request. Then I tried using the Axis2 plugin in Eclipse and got the input stream null message. But for t

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-15 Thread Pushkar Bodas
om this what the problem is, I would highly appreciate the help. Thanks and regards, Pushkar Amila Suriarachchi wrote: > > can you use the tcp mon[1] and check the reqest send from the axis2 > client > and > response it gets. > > [1]http://ws.apache.org/commons

Re: Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-15 Thread Pushkar Bodas
gt; specified in the Port element (in the wsdl) to the stub file. Then if you > do > not override this (by giving the epr to stub) it uses this already saved > epr. > > Please check this epr is correct or not. > > Amila. > > On 8/15/07, Pushkar Bodas <[EMAIL PROTECTED

Consuming .NET exposed web service by an Axis2 ADB Client gives Error 400 : Bad Request

2007-08-14 Thread Pushkar Bodas
Hi, I am a newbie to AXIS2 and .NET too. I exposed a web service in .NET and I am trying to consume it by using AXIS2's ADB client. The way in which .NET creates the WSDL makes the WSDL2java utility of AXIS2 to generate request classes for even those web-methods, which do not take any parameters.