You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Jens Schumann (JIRA)" <ji...@apache.org> on 2006/04/17 17:40:19 UTC

[jira] Created: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

NullPointer in XMLBeans Factory.parse() after OMElement.toString()
------------------------------------------------------------------

         Key: AXIS2-574
         URL: http://issues.apache.org/jira/browse/AXIS2-574
     Project: Apache Axis 2.0 (Axis2)
        Type: Bug

    Versions: 0.95    
    Reporter: Jens Schumann


If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()

For further discussion see

http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2

I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Jens Schumann (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12374771 ] 

Jens Schumann commented on AXIS2-574:
-------------------------------------

Stacktrace for the error:

17:53:21,159 ERROR [TestApiPortMessageReceiverInOut] Error processing 
java.lang.RuntimeException: Data binding error
        at test.TestApiPortMessageReceiverInOut.fromOM(TestApiPortMessageReceiverInOut.java:137)
        at test.TestApiPortMessageReceiverInOut.invokeBusinessLogic(TestApiPortMessageReceiverInOut.java:56)
        at org.apache.axis2.receivers.AbstractInOutSyncMessageReceiver.receive(AbstractInOutSyncMessageReceiver.java:37)
        at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:408)
        at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:288)
        at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:160)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
        at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
        at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:54)
        at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
        at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:868)
        at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:663)
        at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
        at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
        at java.lang.Thread.run(Thread.java:613)
Caused by: java.lang.NullPointerException
        at org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(Cur.java:3184)
        at org.apache.xmlbeans.impl.store.Locale.loadXMLStreamReader(Locale.java:1216)
        at org.apache.xmlbeans.impl.store.Locale.parseToXmlObject(Locale.java:843)
        at org.apache.xmlbeans.impl.store.Locale.parseToXmlObject(Locale.java:826)
        at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:231)
        at foo.bar.RequestDocument$Factory.parse(Unknown Source)
        at test.TestApiPortMessageReceiverInOut.fromOM(TestApiPortMessageReceiverInOut.java:129)
        ... 26 more                                

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12375512 ] 

Deepal Jayasinghe commented on AXIS2-574:
-----------------------------------------

I will attached the service archive file , if you want you can check

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574-RC1.tar.gz, axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Sebastian Szczygiel (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12374959 ] 

Sebastian Szczygiel commented on AXIS2-574:
-------------------------------------------

I get exactly the same exception like Jens (same project and same InOut class), but in fromOM-Methode in following line:

return FooRequestDocument.Factory.parse(param.getXMLStreamReaderWithoutCaching());


> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574-RC1.tar.gz, axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-574?page=all ]

Deepal Jayasinghe updated AXIS2-574:
------------------------------------

    Attachment: TestApi.aar

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: TestApi.aar, axis-574-RC1.tar.gz, axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12375511 ] 

Deepal Jayasinghe commented on AXIS2-574:
-----------------------------------------

I did the following steps and was able to resolve the issue pls follow the same steps and clarify that
 (I was able to regenerate the problem)
1.Generate skeleton using your wsdl
2.Then fill the skeleton
3.Then deploy the service
4.remember I used xbean-2.1.0.jar  

Note : The problem is not there in ADB

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574-RC1.tar.gz, axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Jens Schumann (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-574?page=all ]

Jens Schumann updated AXIS2-574:
--------------------------------

    Attachment: axis-574.tar.gz

Attached an archive containing the sources to demonstrate the bug. Provided .aar files should work with axis2.war upload out of the box.

Use TestApi.aar-without-build  (rename to .aar only) and execute RequestTest to see the error.

TestApi.aar-with-build will not throw NullPointerException. 

Changes to generated InOut class: I added line 52 and 53

 OMElement firstElement = msgContext.getEnvelope().getBody().getFirstElement();
  log.info(firstElement);

Sorry for the size;)


> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Jens Schumann (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12375186 ] 

Jens Schumann commented on AXIS2-574:
-------------------------------------

Deepal: Any news on this? 

It turns out that I have a use case where I running into problems because of that;)

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574-RC1.tar.gz, axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Jens Schumann (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-574?page=all ]

Jens Schumann updated AXIS2-574:
--------------------------------

    Attachment: axis-574-RC1.tar.gz

Attached the same example using RC1. Did not use nightly snapshot since I did not find a .war archive for it.

See build.xml if you want to generate the original InOut based on my wsdl.

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574-RC1.tar.gz, axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Jens Schumann (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12374927 ] 

Jens Schumann commented on AXIS2-574:
-------------------------------------

Where do I get RC1?

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12374921 ] 

Deepal Jayasinghe commented on AXIS2-574:
-----------------------------------------

I tried to run ur service and test cases , but I could not since I have latest code. I tried to use the lib that u have given even then I did not able to run. Can you please check to see whether the mentioned bug is there in current  code base or RC1

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/AXIS2-574?page=comments#action_12374928 ] 

Davanum Srinivas commented on AXIS2-574:
----------------------------------------

Nightly is here: http://cvs.apache.org/dist/axis2/nightly/

RC1 Details are as follows:
* binary and source distributions -
http://people.apache.org/~deepal/axis2/1.0-RC1/

* jars                                                
http://people.apache.org/~deepal/maven/ws/axis2/jars/

* mars (addressing and security)
http://people.apache.org/~deepal/maven/ws/axis2/mars/

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>  Attachments: axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (AXIS2-574) NullPointer in XMLBeans Factory.parse() after OMElement.toString()

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-574?page=all ]
     
Deepal Jayasinghe resolved AXIS2-574:
-------------------------------------

    Fix Version: 1.0
     Resolution: Fixed

I will resolved the issue , but if you are still getting the problem pls re-open the issue

> NullPointer in XMLBeans Factory.parse() after OMElement.toString()
> ------------------------------------------------------------------
>
>          Key: AXIS2-574
>          URL: http://issues.apache.org/jira/browse/AXIS2-574
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Bug

>     Versions: 0.95
>     Reporter: Jens Schumann
>      Fix For: 1.0
>  Attachments: TestApi.aar, axis-574-RC1.tar.gz, axis-574.tar.gz
>
> If I call toString() in my generated InOut Class on msgContext.getEnvelope().getBody().getFirstElement() before calling XMLBeans#Factory.parse() I get an NullPointer in org.apache.xmlbeans.impl.store.Cur$CurLoadContext.finish(). The NullPointerException seems to be related to sending a SOAP Header and not calling getEnvelipe().build() before calling tostring()
> For further discussion see
> http://marc.theaimsgroup.com/?l=axis-user&m=114523119514899&w=2
> I will attach an working example shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira