about the reveiver in the services.xml

2006-09-08 Thread David Xu
Hello, I meet a problem as the following: In the server side, the public method is like OMElement autoupdate(String a, String b). so what should be the receiver in the service.xml file? org.apache.axis2.receivers.RawXMLINOutMessageReceiver (I got the org.apache.axis2.AxisFault:

Re: about the reveiver in the services.xml

2006-09-08 Thread Deepal Jayasinghe
Hi David; I wrote my service impl class as shown blow; public class MyService { public OMElement echo(String a, String b) throws MyException { OMFactory fac = OMAbstractFactory.getOMFactory(); OMNamespace omNs = fac.createOMNamespace(http://ws.apache.org/axis2/xsd;, ns1);

RE: about the reveiver in the services.xml

2006-09-08 Thread David Xu
:[EMAIL PROTECTED] Sent: Friday, September 08, 2006 6:50 PM To: axis-dev@ws.apache.org Subject: Re: about the reveiver in the services.xml Hi David; I wrote my service impl class as shown blow; public class MyService { public OMElement echo(String a, String b) throws MyException