SOAP calls don't return

2009-07-04 Thread prashant sharma
Hi, I am using axis with apache tomcat for my web application. In my application what happens is that one of the SOAP calls takes time to return (or probably never returns). Because this call is in synchronized java block, all the other threads keep waiting for this particular call to return

WSDL2Java and manual soap calls not working

2009-05-08 Thread Trenton D. Adams
Hi Guys, I'm a newbie, and I'm using axis-1.4. I have a web service that I am connecting to, which I did not write, which was written using axis-1.4. I am having problems using the WSDL2Java generated files, as well as using the soap call api. Neither appear to work as expected. I'm almost

multiple soap calls fail

2007-10-08 Thread topcoder1
Hi, I am using generated client stub to make 2 blocking calls consecutively, first call always goes ok, but the second one will cause a seg fault.I tried to create a new service client for every call, but it doesn't help. has anyone encountered the same problem? May I see an example of two

Re: multiple soap calls fail

2007-10-08 Thread Dimuthu Gamage
Hi, Please check the attached example, I 'm sending the same request 100 times without having an error from the same stub. Im usin axis2/c latest svn But It should work fine with axis2/c 1.1 as well. Anyway please send us the backtrace of your seg fault. It may be something specific to your wsdl.

Re: axis2 bad header for soap calls

2007-09-06 Thread Eran Chinthaka
be why it was successful. You can not change Axis2 to accept custom content types as SOAP calls. Let's see whether SOAP 1.3 helps us in that ;) HTH. Chinthaka axelspin wrote: POST /axis2/services/resources HTTP/1.1 Host: bsfso1:9080 this is the http header of the ajax client I am using

axis2 bad header for soap calls

2007-09-05 Thread axelspin
: ? or such a client header has to be deprecated and not used at all? thanks -- View this message in context: http://www.nabble.com/axis2-bad-header-for-soap-calls-tf4383353.html#a12495734 Sent from the Axis - User mailing list archive at Nabble.com

Re: SOAP calls

2007-06-06 Thread Jeff Greif
All the namespace URIs below are incorrect. They must have slashes, not backslash characters. There must be two slashes after the protocol. Example: http://www.w3.org/2001/XMLSchema Jeff Demetris G wrote: Hey all, I captured the SOAP message that a Client Stub generated and which I

RE: SOAP calls

2007-06-06 Thread Walker, Jeff
, June 06, 2007 12:38 AM To: axis-user@ws.apache.org Subject: SOAP calls Hey all, I captured the SOAP message that a Client Stub generated and which I verified works at the server Axis side, and I tried to pass it to that server through an HTTP Client I wrote. The SOAP message is below

Re: SOAP calls

2007-06-06 Thread Martin Gainty
: SOAP calls All I can suggest is to try running org.apache.axis.utils.tcpmon.java (from the older Axis 1.4) or even SOAPScope to capture not only the SOAP envelope, but also the HTTP headers that it probably expects. -Original Message- From: Demetris G [mailto:[EMAIL PROTECTED] Sent

Re: SOAP calls

2007-06-06 Thread Demetris G
Good catch Jeff - No idea how that happened there. Let me try it again. And thanks also to Jeff Walker for his suggestion - instead of using the tcpmon I read the message myself through a tcp socket so essentially I am doing the same thing. I separate the HTTP headers from the SOAP msg (using

Re: SOAP calls

2007-06-06 Thread Demetris G
. - Original Message - From: Walker, Jeff [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Wednesday, June 06, 2007 9:19 AM Subject: RE: SOAP calls All I can suggest is to try running org.apache.axis.utils.tcpmon.java (from the older Axis 1.4) or even SOAPScope to capture not only the SOAP envelope

Re: SOAP calls

2007-06-06 Thread Demetris G
And this is how I am sending the SOAP message over: String strURL = http://localhost:8080/axis/services;; File input = new File(SOAPMessage); PostMethod post = new PostMethod(strURL); RequestEntity entity = new FileRequestEntity(input,

Re: SOAP calls

2007-06-06 Thread Demetris G
notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: Walker, Jeff [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Wednesday, June 06, 2007 9:19 AM Subject: RE: SOAP calls All I can suggest

Re: SOAP calls

2007-06-06 Thread Demetris G
- From: Walker, Jeff [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Wednesday, June 06, 2007 9:19 AM Subject: RE: SOAP calls All I can suggest is to try running org.apache.axis.utils.tcpmon.java (from the older Axis 1.4) or even SOAPScope to capture not only the SOAP envelope, but also

SOAP calls

2007-06-05 Thread Demetris G
Hey all, I captured the SOAP message that a Client Stub generated and which I verified works at the server Axis side, and I tried to pass it to that server through an HTTP Client I wrote. The SOAP message is below and it gives the error at the end. Any ideas what that is ? I saw this in

SV: xmlns= in soap calls

2006-10-02 Thread Felix Sprick
the schema definition that I have used -Ursprungligt meddelande- Från: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Skickat: den 29 september 2006 23:10 Till: axis-user@ws.apache.org Ämne: Re: xmlns= in soap calls We need to see the schema to determine where the problem is. My guess

Re: xmlns= in soap calls

2006-10-02 Thread Thilina Gunarathne
[mailto:[EMAIL PROTECTED] Skickat: den 29 september 2006 23:10 Till: axis-user@ws.apache.org Ämne: Re: xmlns= in soap calls We need to see the schema to determine where the problem is. My guess is that the schema defines the safeSearch and maxResults elements as local elements to the doGoogleSearch

xmlns= in soap calls

2006-09-29 Thread Felix Sprick
Hi all, I have problems with xmlns= in element tags when making soap calls. The server side has difficulties when parsing/validating the call. I ran wsdl2java of the latest nightly-build of axis2 on the google.wsdl as well as on others. When I print out the soap call before sending

Re: xmlns= in soap calls

2006-09-29 Thread Anne Thomas Manes
[EMAIL PROTECTED] wrote: Hi all, I have problems with xmlns= in element tags when making soap calls. The server side has difficulties when parsing/validating the call. I ran wsdl2java of the latest nightly-build of axis2 on the google.wsdl as well as on others. When I print out the soap

Monitor SOAP calls through a client

2005-07-08 Thread todd runstein
Boy, do I feel dumb! I'm pretty new to axis but I felt like I was starting to have a good understanding of it - at least up until now that is. I'm trying to view raw SOAP messages as they leave and are returned to my client. I'm able to call a test service through a local Axis server with the