Re: AXIS2 with SAAJ

2007-09-24 Thread Joe S
Yes I am sure that the request and response messages are correct. I used SOAPTrace to verify this. I have set this aside until I hear something from apache. westpine wrote: > > Are you sure that response contains elements you are searching for? Try to > send request from some tool and retriev

Re: AXIS2 with SAAJ

2007-09-19 Thread westpine
Are you sure that response contains elements you are searching for? Try to send request from some tool and retrieve response. I use soapUI plugin for eclipse for this purpose. -- View this message in context: http://www.nabble.com/AXIS2-with-SAAJ-tf443.html#a12791599 Sent from the Axis - Use

RE: AXIS2 with SAAJ

2007-09-19 Thread Joe S
Sent: Wednesday, September 19, 2007 14:00 > To: axis-user@ws.apache.org > Subject: Re: AXIS2 with SAAJ > > > I'm using this code. body is SOAPBody object. > > String name = > body.getElementsByTagName("Name").item(itemIndex).getTextContent(); > > --

Re: AXIS2 with SAAJ

2007-09-19 Thread Joe S
Thank you for your response. If I do exactly as you mention with my sample xml. "return" should be positioned (itemIndex) 0 or 1 depending on whitespace. I get a null pointer exception. So I took it a step further and ran the below and get nothing. SOAPBody sb2 = reply.getSOAPBody(); NodeList

RE: AXIS2 with SAAJ

2007-09-19 Thread Gennady Shumakher
rowse/WSCOMMONS-255). -Original Message- From: westpine [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 19, 2007 14:00 To: axis-user@ws.apache.org Subject: Re: AXIS2 with SAAJ I'm using this code. body is SOAPBody object. String name = body.getElementsByTagName("Name&q

Re: AXIS2 with SAAJ

2007-09-19 Thread westpine
I'm using this code. body is SOAPBody object. String name = body.getElementsByTagName("Name").item(itemIndex).getTextContent(); -- View this message in context: http://www.nabble.com/AXIS2-with-SAAJ-tf443.html#a12775991 Sent from the Axis - User mailing list archive at Nabble.com. -