Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-02-01 Thread Daniel Walsh
Andreas:

The annotations generated by wsimport are:

HelloService:

@WebServiceClient(name = "HelloService", targetNamespace = "com/wb/hello",
wsdlLocation = "file:/C:/axis2-1.5.1/hello2/service/hello.wsdl")

HelloPortType:

@WebService(name = "helloPortType", targetNamespace = "com/wb/hello")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@XmlSeeAlso({
ObjectFactory.class
})

 HelloPort:

@WebService(name = "helloPort", targetNamespace = "com/wb/hello")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@XmlSeeAlso({
ObjectFactory.class
})

I'm not sure why, but based on timestamps wsimport right now isn't
generating HelloPortType. On the other hand, it isn't referenced anywhere in
any of the other code, so I don't know if it matters.

Dan


On Mon, Feb 1, 2010 at 1:51 PM, Andreas Veithen
wrote:

> Can you show me the annotations on HelloService, HelloPortType and
> HelloPort?
>
> Andreas
>
> On Mon, Feb 1, 2010 at 21:12, Daniel Walsh  wrote:
> > Andreas,
> >
> > I annotated my service class per your example and I am still getting the
> "No
> > annotated classes found in the jar" message when I click on the link
> >
> > Faulty Services
> >
> > c:\tomcat-6.0.20\webapps\axis2\WEB-INF\servicejars\HelloService.jar
> >
> > on the list services page at
> > "http://localhost:8080/axis2/services/listServices";
> >
> > My annotated implementation class, HelloPortImpl, is pretty simple:
> >
> > package com.wb.hello;
> >
> > import java.io.PrintStream;
> >
> > import javax.jws.WebMethod;
> > import javax.jws.WebParam;
> > import javax.jws.WebResult;
> > import javax.jws.WebService;
> > import javax.jws.soap.SOAPBinding;
> > import javax.xml.bind.annotation.XmlSeeAlso;
> >
> > @WebService(endpointInterface = "com.wb.hello.HelloPort",
> > serviceName = "HelloService",
> > portName = "HelloPort",
> > targetNamespace = "com/wb/hello",
> > wsdlLocation = "META-INF/hello.wsdl")
> >
> > public class HelloPortImpl implements HelloPort {
> >
> > @WebMethod
> > @WebResult(name = "helloResponseElement", targetNamespace =
> > "com/wb/hello", partName = "parameters")
> > public HelloResponseType hello(HelloRequestType helloRequestType) {
> > HelloResponseType helloResponseType = new HelloResponseType();
> > helloResponseType.setResponse("Hello " +
> helloRequestType.getRequest());
> > return helloResponseType;
> > }
> > }
> >
> >
> > And the class shows up in the jar file:
> >
> > $ jar tvf
> > c:/tomcat-6.0.20/webapps/axis2/WEB-INF/servicejars/HelloService.jar
> >  0 Mon Feb 01 12:11:02 PST 2010 META-INF/
> > 71 Mon Feb 01 12:11:02 PST 2010 META-INF/MANIFEST.MF
> >890 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloPort.class
> >   1095 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloPortImpl.class
> >898 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloPortType.class
> >752 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloRequestType.class
> >758 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloResponseType.class
> >   2003 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloService.class
> >   1708 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/ObjectFactory.class
> >230 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/package-info.class
> >   1804 Mon Feb 01 12:11:00 PST 2010 META-INF/hello.wsdl
> >805 Mon Feb 01 12:11:00 PST 2010 META-INF/helloSchema.xsd
> >296 Sat Jan 30 16:26:00 PST 2010 META-INF/service.xml
> >
> > If you have any thoughts as to why I can't get this thing to deploy I
> would
> > sure be happy to hear them.
> >
> > Dan
> >
> >
> >
> >  wrote:
> >>
> >> Dan,
> >>
> >> Actually the error message should read "No @WebService annotated
> >> service implementations found" or something like that :-)
> >>
> >> In fact, you also need to annotate your service implementation with
> >> @WebService. Note that while this is the same annotation type than on
> >> the service interface (generated by wsimport), the attributes have a
> >> different meaning. There is an example here [1]. Note that this
> >> requirement is not specific to Axis2, but comes from JSR-109/181.
> >>
> >> Andreas
> >>
> >> [1]
> >>
> https://s

Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-02-01 Thread Daniel Walsh
Andreas,

I annotated my service class per your example and I am still getting the "No
annotated classes found in the jar" message when I click on the link
Faulty Services
c:\tomcat-6.0.20\webapps\axis2\WEB-INF\servicejars\HelloService.jar<http://localhost:8080/axis2/services/ListFaultyServices?serviceName=c:%5Ctomcat-6.0.20%5Cwebapps%5Caxis2%5CWEB-INF%5Cservicejars%5CHelloService.jar>on
the list services page at "http://localhost:8080/axis2/services/listServices
"

My annotated implementation class, HelloPortImpl, is pretty simple:

package com.wb.hello;

import java.io.PrintStream;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;

@WebService(endpointInterface = "com.wb.hello.HelloPort",
serviceName = "HelloService",
portName = "HelloPort",
targetNamespace = "com/wb/hello",
wsdlLocation = "META-INF/hello.wsdl")

public class HelloPortImpl implements HelloPort {

@WebMethod
@WebResult(name = "helloResponseElement", targetNamespace =
"com/wb/hello", partName = "parameters")
public HelloResponseType hello(HelloRequestType helloRequestType) {
HelloResponseType helloResponseType = new HelloResponseType();
helloResponseType.setResponse("Hello " + helloRequestType.getRequest());
return helloResponseType;
}
}


And the class shows up in the jar file:

$ jar tvf
c:/tomcat-6.0.20/webapps/axis2/WEB-INF/servicejars/HelloService.jar
 0 Mon Feb 01 12:11:02 PST 2010 META-INF/
71 Mon Feb 01 12:11:02 PST 2010 META-INF/MANIFEST.MF
   890 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloPort.class
  1095 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloPortImpl.class
   898 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloPortType.class
   752 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloRequestType.class
   758 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloResponseType.class
  2003 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/HelloService.class
  1708 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/ObjectFactory.class
   230 Mon Feb 01 12:11:02 PST 2010 com/wb/hello/package-info.class
  1804 Mon Feb 01 12:11:00 PST 2010 META-INF/hello.wsdl
   805 Mon Feb 01 12:11:00 PST 2010 META-INF/helloSchema.xsd
   296 Sat Jan 30 16:26:00 PST 2010 META-INF/service.xml

If you have any thoughts as to why I can't get this thing to deploy I would
sure be happy to hear them.

Dan



 wrote:

> Dan,
>
> Actually the error message should read "No @WebService annotated
> service implementations found" or something like that :-)
>
> In fact, you also need to annotate your service implementation with
> @WebService. Note that while this is the same annotation type than on
> the service interface (generated by wsimport), the attributes have a
> different meaning. There is an example here [1]. Note that this
> requirement is not specific to Axis2, but comes from JSR-109/181.
>
> Andreas
>
> [1]
> https://svn.apache.org/repos/asf/webservices/axis2/scratch/java/veithen/AXIS2-4611/jaxws-calculator-aar/src/main/java/org/apache/axis2/jaxws/calculator/impl/CalculatorImpl.java
>
> On Thu, Jan 28, 2010 at 19:46, Daniel Walsh  wrote:
> > Andreas,
> >
> > Thanks for the tip. I would never have figured that out by myself.
> >
> > Unfortunately, simply moving the "services/HelloService.aar" file to
> > "servicejars/HelloServices.jar" seems to have made things worse. Whereas
> > before I saw the service listed as deployed on the listServices page (but
> > got the exception when trying to run the client), now the service doesn't
> > even deploy. Clicking through the faulty services link on the
> listServices
> > page gives me this:
> >
> > Error: No annotated classes found in the jar:
> >
> file:/c:/tomcat-6.0.20/webapps/axis2/WEB-INF/servicejars/HelloService.jar.
> > Service deployment failed.
> >
> > Looking for annotations in just the .java files generated by "wsimport
> -keep
> > -verbose hello.wsdl" (the .class files of which are in the jar file) I
> find
> > the following (I used grep "^@" | sort)
> >
> > @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
> > @WebService(name = "helloPort", targetNamespace = "com/wb/hello")
> > @WebServiceClient(name = "HelloService", targetNamespace =
> "com/wb/hello",
> > wsdlL
> > ocation =
> > "file:/C:/Documents%20and%20Settings/dan/My%20Documents/tmp/hello2/ser
> > vice/hello.wsdl")
> > @XmlAccessorType(XmlAccessType.FIELD)
> > @XmlAccessorType(XmlAcces

Re: Axis2: SampleService example from Axis 2 webpage gets exception

2010-01-31 Thread Daniel Walsh
Andreas,

Yup, 1.5.1 did it. Thanks.

Dan


On Fri, Jan 29, 2010 at 11:20 AM, Andreas Veithen  wrote:

> That probably means that the Axis2 version you used to compile the
> code is not the same as the one deployed in Tomcat. In particular,
> "axis2-std-1.0-bin" doesn't sound good. If you are starting with Axis2
> you should use version 1.5.1, unless there is a particular requirement
> to use a version as old as 1.0.
>
> Andreas
>
> On Fri, Jan 29, 2010 at 19:23, Daniel Walsh  wrote:
> > I'm trying to build and run the SampleService example from the Apache
> Axis2
> > webpage at
> >
> http://ws.apache.org/axis2/1_5_1/userguide-buildingservices.html#buildservices
> > listings 8-10. When I try to run the client I get
> > org.apache.axis2.AxisFault:
> >
> org.apache.axiom.om.OMFactory.createOMText(Lorg/apache/axiom/om/OMElement;Ljava/lang/String;)Lorg/apache/axiom/om/OMText;
> > I tried putting the message into Google and it came up with no results.
> >
> > I figured that as a newbie I would try the first example and build from
> > there, but I don't have any idea what the error message means or what I
> > should do about it. Can anyone help me out here?
> >
> > Thanks,
> > Dan
> >
> >
> --
> >
> > Here is a detailed description of what I did, in case it helps:
> >
> > What I did was to cut and paste SampleService, services.xml and
> SampleClient
> > from listings 8-10 of
> >
> http://ws.apache.org/axis2/1_5_1/userguide-buildingservices.html#buildservices
> > into org/apache/axis2/axis2userguide/SampleService.java,
> > META-INF/services.xml and
> org/apache/axis2/axis2userguide/SampleClient.java
> > respectively. I also copied all the axis2 libraries from
> > axis2-std-1.0-bin/lib into ../lib. I then wrote (in cygwin bash) a simple
> > shell script to build and deploy the service:
> >
> > export CLASSPATH=`echo ../lib/*.jar | tr ' ' ';'`
> > echo classpath $CLASSPATH
> > javac org/apache/axis2/axis2userguide/SampleService.java
> > jar cf SampleService.aar
> org/apache/axis2/axis2userguide/SampleService.class
> > META-INF/services.xml
> > cp SampleService.aar
> > /cygdrive/c/tomcat-6.0.20/webapps/axis2/WEB-INF/services
> >
> > I ran the above script, shut down tomcat and brought it up again, and I
> saw
> > the service deployed in
> http://localhost:8080/axis2/services/listServices
> >
> > I then wrote another shell script to compile and run the client:
> >
> > export CLASSPATH=`echo ../lib/*.jar | tr ' ' ';'`
> > echo classpath $CLASSPATH
> > javac org/apache/axis2/axis2userguide/SampleClient.java
> > java -cp "$CLASSPATH;." org/apache/axis2/axis2userguide/SampleClient
> >
> > When I run this script I get the error mentioned above:
> > org.apache.axis2.AxisFault:
> >
> org.apache.axiom.om.OMFactory.createOMText(Lorg/apache/axiom/om/OMElement;Ljava/lang/String;)Lorg/apache/axiom/om/OMText;
> >
> > I swear I literally copied the SampleService, service.xml and
> SampleClient
> > from code listings 8-10 respectively, except that I had to change line 33
> of
> > SampleClient because it breaks a quoted string across two lines and the
> > compiler won't allow that. I changed nothing else from the example.
> >
> >
>


Axis2: SampleService example from Axis 2 webpage gets exception

2010-01-29 Thread Daniel Walsh
I'm trying to build and run the SampleService example from the Apache Axis2
webpage at
http://ws.apache.org/axis2/1_5_1/userguide-buildingservices.html#buildserviceslistings
8-10. When I try to run the client I get
org.apache.axis2.AxisFault:
org.apache.axiom.om.OMFactory.createOMText(Lorg/apache/axiom/om/OMElement;Ljava/lang/String;)Lorg/apache/axiom/om/OMText;
I tried putting the message into Google and it came up with no results.

I figured that as a newbie I would try the first example and build from
there, but I don't have any idea what the error message means or what I
should do about it. Can anyone help me out here?

Thanks,
Dan

--

Here is a detailed description of what I did, in case it helps:

What I did was to cut and paste SampleService, services.xml and SampleClient
from listings 8-10 of
http://ws.apache.org/axis2/1_5_1/userguide-buildingservices.html#buildservicesinto
org/apache/axis2/axis2userguide/SampleService.java,
META-INF/services.xml and org/apache/axis2/axis2userguide/SampleClient.java
respectively. I also copied all the axis2 libraries from
axis2-std-1.0-bin/lib into ../lib. I then wrote (in cygwin bash) a simple
shell script to build and deploy the service:

export CLASSPATH=`echo ../lib/*.jar | tr ' ' ';'`
echo classpath $CLASSPATH
javac org/apache/axis2/axis2userguide/SampleService.java
jar cf SampleService.aar org/apache/axis2/axis2userguide/SampleService.class
META-INF/services.xml
cp SampleService.aar
/cygdrive/c/tomcat-6.0.20/webapps/axis2/WEB-INF/services

I ran the above script, shut down tomcat and brought it up again, and I saw
the service deployed in http://localhost:8080/axis2/services/listServices

I then wrote another shell script to compile and run the client:

export CLASSPATH=`echo ../lib/*.jar | tr ' ' ';'`
echo classpath $CLASSPATH
javac org/apache/axis2/axis2userguide/SampleClient.java
java -cp "$CLASSPATH;." org/apache/axis2/axis2userguide/SampleClient

When I run this script I get the error mentioned above:
org.apache.axis2.AxisFault:
org.apache.axiom.om.OMFactory.createOMText(Lorg/apache/axiom/om/OMElement;Ljava/lang/String;)Lorg/apache/axiom/om/OMText;

I swear I literally copied the SampleService, service.xml and SampleClient
from code listings 8-10 respectively, except that I had to change line 33 of
SampleClient because it breaks a quoted string across two lines and the
compiler won't allow that. I changed nothing else from the example.


Re: Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-01-28 Thread Daniel Walsh
Andreas,

Thanks for the tip. I would never have figured that out by myself.

Unfortunately, simply moving the "services/HelloService.aar" file to
"servicejars/HelloServices.jar" seems to have made things worse. Whereas
before I saw the service listed as deployed on the listServices page (but
got the exception when trying to run the client), now the service doesn't
even deploy. Clicking through the faulty services link on the listServices
page gives me this:

Error: No annotated classes found in the jar:
file:/c:/tomcat-6.0.20/webapps/axis2/WEB-INF/servicejars/HelloService.jar.
Service deployment failed.

Looking for annotations in just the .java files generated by "wsimport -keep
-verbose hello.wsdl" (the .class files of which are in the jar file) I find
the following (I used grep "^@" | sort)

@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@WebService(name = "helloPort", targetNamespace = "com/wb/hello")
@WebServiceClient(name = "HelloService", targetNamespace = "com/wb/hello",
wsdlL
ocation =
"file:/C:/Documents%20and%20Settings/dan/My%20Documents/tmp/hello2/ser
vice/hello.wsdl")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRegistry
@XmlSeeAlso({
@XmlType(name = "helloRequestType", propOrder = {
@XmlType(name = "helloResponseType", propOrder = {
@javax.xml.bind.annotation.XmlSchema(namespace = "com/wb/hello")

Clearly, there are lots of annotations, so the error message is incorrect.

I'm not sure what to do at this point.

Dan


On Wed, Jan 27, 2010 at 12:46 PM, Andreas Veithen  wrote:

> Daniel,
>
> Please have a look at AXIS2-4611 [1]. If deploying as a servicejar is
> not an option for you, feel free to vote for the issue and leave a
> comment.
>
> Andreas
>
> [1] https://issues.apache.org/jira/browse/AXIS2-4611
>
> On Wed, Jan 27, 2010 at 21:32, Daniel Walsh  wrote:
> >
> > I have written a simple hello application in Axis2 JAX-WS and when I run
> my client I am getting an error that the service class cannot be found. In
> this email I'm including the exact message, my services.xml file, a jar
> output of my aar file, my wsdl file, my schema file, a snippet from the
> available services webpage and a stacktrace from catalina.out.
> >
> > I wrote the services.xml, the schema and the wsdl files by hand and
> generated all the classes (except HelloClient, my client class) by "wsimport
> -keep -verbose hello.wsdl".
> >
> > I have tried every Google search I can think of and have looked at
> several tutorials and dozens of mail archives without finding out the
> answer. If you can help, I would really appreciate it.
> >
> >
> --
> >
> > The error message I get when I run the client (java -cp HelloService.jar
> com/wb/hello/HelloClient) is:
> >
> > "Exception in thread "main" javax.xml.ws.soap.SOAPFaultException:
> java.lang.RuntimeException: The service class cannot be found for this
> AxisService."
> >
> >
> --
> >
> > My services.xml file is simple:
> >
> > 
> >   com.wb.hello.HelloService
> >   
> > http://www.w3.org/2004/08/wsdl/in-out";
> > class="org.apache.axis2.jaxws.server.JAXWSMessageReceiver"/>
> >   
> > 
> >
> >
> --
> >
> > When I go to /cygdrive/c/tomcat-6.0.20/webapps/axis2/WEB-INF/services and
> jar the aar file, the service class is there:
> >
> > $ jar tvf HelloService.aar
> >  0 Tue Jan 26 14:41:52 PST 2010 META-INF/
> > 71 Tue Jan 26 14:41:52 PST 2010 META-INF/MANIFEST.MF
> >   1287 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloClient.class
> >886 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloPort.class
> >898 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloPortType.class
> >752 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloRequestType.class
> >758 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloResponseType.class
> >   2079 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloService.class
> >   1708 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/ObjectFactory.class
> >230 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/package-info.class
> >   1794 Tue Jan 26 14:41:50 PST

Axis2 JAX-WS: The service class cannot be found for this AxisService

2010-01-27 Thread Daniel Walsh
I have written a simple hello application in Axis2 JAX-WS and when I run my
client I am getting an error that the service class cannot be found. In this
email I'm including the exact message, my services.xml file, a jar output of
my aar file, my wsdl file, my schema file, a snippet from the available
services webpage and a stacktrace from catalina.out.

I wrote the services.xml, the schema and the wsdl files by hand and
generated all the classes (except HelloClient, my client class) by "wsimport
-keep -verbose hello.wsdl".

I have tried every Google search I can think of and have looked at several
tutorials and dozens of mail archives without finding out the answer. If you
can help, I would really appreciate it.

--

The error message I get when I run the client (java -cp HelloService.jar
com/wb/hello/HelloClient) is:

"Exception in thread "main" javax.xml.ws.soap.SOAPFaultException:
java.lang.RuntimeException: The service class cannot be found for this
AxisService."

--

My services.xml file is simple:


  com.wb.hello.HelloService
  
http://www.w3.org/2004/08/wsdl/in-out";
class="org.apache.axis2.jaxws.server.JAXWSMessageReceiver"/>
  


--

When I go to /cygdrive/c/tomcat-6.0.20/webapps/axis2/WEB-INF/services and
jar the aar file, the service class is there:

$ jar tvf HelloService.aar
 0 Tue Jan 26 14:41:52 PST 2010 META-INF/
71 Tue Jan 26 14:41:52 PST 2010 META-INF/MANIFEST.MF
  1287 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloClient.class
   886 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloPort.class
   898 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloPortType.class
   752 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloRequestType.class
   758 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloResponseType.class
  2079 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/HelloService.class
  1708 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/ObjectFactory.class
   230 Tue Jan 26 14:41:52 PST 2010 com/wb/hello/package-info.class
  1794 Tue Jan 26 14:41:50 PST 2010 META-INF/hello.wsdl
   805 Tue Jan 26 14:41:50 PST 2010 META-INF/helloSchema.xsd
   301 Tue Jan 26 14:41:36 PST 2010 META-INF/services.xml

--

My wsdl file is:


http://schemas.xmlsoap.org/wsdl/";
 xmlns:tns="com/wb/hello"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema";
 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
 xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"; >

  
  

  

  

  
  

  

  

  

  
  

  
  

  

  
  
http://schemas.xmlsoap.org/soap/http";
  style="document"/>

  
  

  
  

  

  

  
  

  http://localhost:8080/axis2/services/HelloService"/>

  



--

My schema file is:


http://www.w3.org/2001/XMLSchema";>

  
  

  

  

  

  

  

  
  
  



--

When I point my browser to
http://localhost:8080/axis2/services/listServicesit shows it as
available:

 Back Home   |
Refresh
  Available services
HelloService
Service
EPR : http://localhost:8080/axis2/services/HelloService
Service Description : HelloService *Service Status : Active*
*Available Operations*

   - hello

--

And for what it's worth, /cygdrive/c/tomcat-6.0.20/logs/catalina.out
includes:

[ERROR] The service class cannot be found for this AxisService.
java.lang.RuntimeException: The service class cannot be found for this
AxisServi
ce.
at
org.apache.axis2.jaxws.server.JAXWSMessageReceiver.receive(JAXWSMessa
geReceiver.java:95)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:173)
at
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostReq
uest(HTTPTransportUtils.java:167)
at
org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:1
42)
at javax.ser