Re: AxisServlet NullPointerException

2007-06-07 Thread Jack Sprat
WSDL and WAR file have been uploaded. Thanks. Davanum Srinivas <[EMAIL PROTECTED]> wrote: Jack, Please upload the WAR w/o the axis2/related jars and let us know the names of the jars that need to be added. thanks, dims On 6/6/07, Jack Sprat wrote: > JIRA AXIS2-2674 was logged when I first ca

Re: AxisServlet NullPointerException

2007-06-06 Thread Davanum Srinivas
Jack, Please upload the WAR w/o the axis2/related jars and let us know the names of the jars that need to be added. thanks, dims On 6/6/07, Jack Sprat <[EMAIL PROTECTED]> wrote: JIRA AXIS2-2674 was logged when I first came across this problem. All the details are in there but I have not yet at

Re: AxisServlet NullPointerException

2007-06-06 Thread Jack Sprat
JIRA AXIS2-2674 was logged when I first came across this problem. All the details are in there but I have not yet attached the WAR file since Axis2 is included within my web application. This makes the WAR file very large due to all the included JAR files. The WAR file is about 12 MB. You are

Re: AxisServlet NullPointerException

2007-06-04 Thread Thilina Gunarathne
Jack, Please log a Jira with the necessary resources to reproduce the error... A stripped down test case with a WSDL similar to your one would be great... Also provide details about your environment too... After numerous trials and errors, the problem was alleviated by setting the elementFormDe

Re: AxisServlet NullPointerException

2007-06-04 Thread Jack Sprat
I believe I found the source of this problem, though I still do not know why the code in the HTTPTransportUtils class behaved like it did. After numerous trials and errors, the problem was alleviated by setting the elementFormDefault="required" on the WSDL and all included schemas. Does anyone

Re: AxisServlet NullPointerException

2007-05-14 Thread Jack Sprat
Jeremy <[EMAIL PROTECTED]> wrote: Jack Sprat wrote: > I believe I found the bug in the > org.apache.axis2.transport.http.HTTPTransportUtils class. The > following "if" condition lacks a set of parentheses: > > if ((msgContext.getEnvelope() == null) && soapVersion != > VERSION_SOAP11

Re: AxisServlet NullPointerException

2007-05-08 Thread Jeremy
Jack Sprat wrote: */Jeremy <[EMAIL PROTECTED]>/* wrote: Jack Sprat wrote: > I believe I found the bug in the > org.apache.axis2.transport.http.HTTPTransportUtils class. The > following "if" condition lacks a set of parentheses: > > if ((msgContext.getEnvelope() == null) &

Re: AxisServlet NullPointerException

2007-05-08 Thread Jack Sprat
Jeremy <[EMAIL PROTECTED]> wrote: Jack Sprat wrote: > I believe I found the bug in the > org.apache.axis2.transport.http.HTTPTransportUtils class. The > following "if" condition lacks a set of parentheses: > > if ((msgContext.getEnvelope() == null) && soapVersion != > VERSION_SOAP11

Re: AxisServlet NullPointerException

2007-05-08 Thread Jeremy
Jack Sprat wrote: I believe I found the bug in the org.apache.axis2.transport.http.HTTPTransportUtils class. The following "if" condition lacks a set of parentheses: if ((msgContext.getEnvelope() == null) && soapVersion != VERSION_SOAP11) { msgContext.setEnvelope(

Re: AxisServlet NullPointerException

2007-05-08 Thread Jack Sprat
I believe I found the bug in the org.apache.axis2.transport.http.HTTPTransportUtils class. The following "if" condition lacks a set of parentheses: if ((msgContext.getEnvelope() == null) && soapVersion != VERSION_SOAP11) { msgContext.setEnvelope(new SOAP12Factory()

AxisServlet NullPointerException

2007-05-08 Thread Jack Sprat
I have a web application to which I added Axis 1.2. The Java class stubs were generated using he WSDL2Java tool using XMLBeans data binding. Everything appears to be configured right since the methods in the skeleton class are being invoked correctly. The echo method works fine. However, when