Run request through TCPMON.  Request was:

POST /axis2-war/services/WSRPRegistrationService HTTP/1.1
Content-Type: text/xml;charset=UTF-8
SOAPAction: "urn:oasis:names:tc:wsrp:v1:register"
User-Agent: Jakarta Commons-HttpClient/3.0.1
Host: 172.26.81.99:9090
Content-Length: 477

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:urn="urn:oasis:names:tc:wsrp:v1:types"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing";>
   <soapenv:Header/>
   <soapenv:Body>
      <urn:register>
         <urn:consumerName>foo</urn:consumerName>
         <urn:consumerAgent>bar</urn:consumerAgent>
         <urn:methodGetSupported>false</urn:methodGetSupported>
      </urn:register>
   </soapenv:Body>
</soapenv:Envelope>


Response was:

HTTP/1.1 500 Internal Server Error
Server: Apache-Coyote/1.1
Content-Type: text/xml;charset=UTF-8
Transfer-Encoding: chunked
Date: Mon, 08 Sep 2008 13:27:00 GMT
Connection: close

1f0
<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";><soapenv:Header
xmlns:wsa="http://www.w3.org/2005/08/addressing";><wsa:Action>urn:oasis:names
:tc:wsrp:v1:intf:WSRP_v1_Registration_PortType:register:Fault:OperationFaile
d</wsa:Action></soapenv:Header><soapenv:Body><soapenv:Fault><faultcode>soape
nv:Server</faultcode><faultstring>java.lang.NullPointerException</faultstrin
g><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope>
0


WSDL is for WSRP and has been giving me problems but I have now split it
into multiple services and appears better:


<wsdl:definitions targetNamespace="urn:oasis:names:tc:wsrp:v1:wsdl"
                  xmlns:bind="urn:oasis:names:tc:wsrp:v1:bind"
                  xmlns="http://schemas.xmlsoap.org/wsdl/";
                  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";
                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
                  xmlns:intf="urn:oasis:names:tc:wsrp:v1:intf"
                  xmlns:tns="urn:oasis:names:tc:wsrp:v1:wsdl">

   <import namespace="urn:oasis:names:tc:wsrp:v1:bind"
location="wsrp_v1_bindings.wsdl"/>

   <wsdl:service name="WSRPBaseService">
      <wsdl:port binding="bind:WSRP_v1_Markup_Binding_SOAP"
name="WSRPBaseService">
         <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
      </wsdl:port>
   </wsdl:service>

   <wsdl:service name="WSRPServiceDescriptionService">
      <wsdl:port binding="bind:WSRP_v1_ServiceDescription_Binding_SOAP"
name="WSRPServiceDescriptionService">
         <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
      </wsdl:port>
   </wsdl:service>

   <wsdl:service name="WSRPRegistrationService">

      <wsdl:port binding="bind:WSRP_v1_Registration_Binding_SOAP"
name="WSRPRegistrationService">
         <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
      </wsdl:port>

   </wsdl:service>

   <wsdl:service name="WSRPPortletManagementService">
      <wsdl:port binding="bind:WSRP_v1_PortletManagement_Binding_SOAP"
name="WSRPPortletManagementService">
         <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
      </wsdl:port>
   </wsdl:service>
</wsdl:definitions>

Thanks for your help,

-----Original Message-----
From: Deepal jayasinghe [mailto:[EMAIL PROTECTED]
Sent: 08 September 2008 14:20
To: [email protected]
Subject: Re: NPE when invoking axis2 service


Hi Grange
Could you please send us the HTTP headers of your request , I think
there has to be some problem with that.

-Deepal
> Hi,
>
> I've set up an axis2 service (version 1.4.1) and all appears to be
assembled
> fine, but, unfortunately, whenever I try to run the service (using soapUI
> 2.0.2) I get the following exception:
>
> 08-Sep-2008 14:05:16 org.apache.axis2.transport.http.AxisServlet doPost
> SEVERE: null
> java.lang.NullPointerException
>         at
>
org.apache.axis2.engine.AbstractDispatcher.invoke(AbstractDispatcher.java:12
> 2)
>         at org.apache.axis2.engine.Phase.invoke(Phase.java:317)
>         at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:264)
>         at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:163)
>         at
>
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HT
> TPTransportUtils.java:275)
>         at
> org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:133)
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
>         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
>         at
>
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
> FilterChain.java:290)
>         at
>
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
> ain.java:206)
>         at
>
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
> va:233)
>         at
>
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
> va:191)
>         at
>
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128
> )
>         at
>
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102
> )
>         at
>
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
> :109)
>         at
>
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
>         at
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
>         at
>
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
> 11Protocol.java:583)
>         at
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
>         at java.lang.Thread.run(Thread.java:595)
>
> I did see a post that a fix had been put in for this, but when I tried a
> build against snapshots, the Axis2 servlet class couldn't be found :-(
>
> Anybody got any ideas?
>
> _______________________________________________________
> John Grange
> Senior Software Engineer
> Thales Land & Joint Systems
>
> Wookey Hole Road                      Tel:  +44(0)1749 682589
> Wells                                 Fax:  +44(0)1749 682339
> Somerset BA5 1AA
> UK
> _______________________________________________________
>
>
>
> Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
> is confidential. It may also be legally privileged. It is intended only
for
> the stated addressee(s) and access to it by any other person is
> unauthorised. If you are not an addressee, you must not disclose, copy,
> circulate or in any other way use or rely on the information contained in
> this e-mail. Such unauthorised use may be unlawful. We may monitor all
> e-mail communications through our networks. If you have received this
e-mail
> in error, please inform us immediately on +44 (0) 1749 672081 and delete
it
> and all copies from your system. We accept no responsibility for changes
to
> any e-mail which occur after it has been sent.  Attachments to this e-mail
> may contain software viruses which could damage your system.  We therefore
> recommend you virus-check all attachments before opening. A business of
> Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne
Business
> Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
> 868273
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Thales UK Ltd (Wells) DISCLAIMER: The information contained in this e-mail
is confidential. It may also be legally privileged. It is intended only for
the stated addressee(s) and access to it by any other person is
unauthorised. If you are not an addressee, you must not disclose, copy,
circulate or in any other way use or rely on the information contained in
this e-mail. Such unauthorised use may be unlawful. We may monitor all
e-mail communications through our networks. If you have received this e-mail
in error, please inform us immediately on +44 (0) 1749 672081 and delete it
and all copies from your system. We accept no responsibility for changes to
any e-mail which occur after it has been sent.  Attachments to this e-mail
may contain software viruses which could damage your system.  We therefore
recommend you virus-check all attachments before opening. A business of
Thales UK Ltd. Registered Office: 2 Dashwood Lang Road, The Bourne Business
Park, Addlestone, Weybridge, Surrey KT15 2NX Registered in England No.
868273

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to