Hi,
I am afraid I am not making much headway here. I have my web.xml that specifies the <servlet> and <servlet-mapping>. However, I am not sure what values the axis2.xml parameters should have especially for the ones suggested below: servicePath and contextRoot. The EPR is http://zzz:8080/arsys/services/ARService?server =xxx&WebService=yyy I tried different combinations of values for configRoot and servicePath and got one of the 2 errors. Unable to parse request URL [http://vedanta:8080/arsys/services/ARService][/arsys/ARService] - Unable to parse request URL [http://vedanta:8080/arsys/services/ARService][/arsys/ARService] - Unable to parse request URL [http://vedanta:8080/arsys/services/ARService][/arsys/ARService] - Unable to parse request URL [urn:testWS][/arsys/ARService] Or Unable to parse request URL [urn:testWS][/arsys/ARService] The class that is supposed to handle this has 3 public methods: 1) Void setOperationContext (OperationContext x) 2) OMElement handleRequest(OMElement) 3) Document processRequest(Doc input) --> This one is a carry forward from Axis. I think in the first set of errors, the 3 error messages are corresponding to the above 3 methods. However, none of the methods are executed. Should'nt the specification in web.xml and service.xml be sufficient? My service.xml contains a 'parameter' with ServiceClass name and a messageReceiverfor RAWXML in-out) only. I did not specify any operation. Any detailed explanation would really help. Thanks, --kumar ________________________________ From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Monday, November 13, 2000 6:46 PM To: [email protected] Subject: Re: Dynamic web services SoapAction is *usually* prefaced with urn: as seen here operation.setSoapAction("urn:" + opName); so servicePath is incorrect check ServicesDirectory attribute in axis2.xml servicePath attribute in axis2.xml also Make sure your EPR is valid M-- ----- Original Message ----- From: Iyengar, Kumar <mailto:[EMAIL PROTECTED]> To: [email protected] Sent: Tuesday, November 13, 2007 8:54 PM Subject: RE: Dynamic web services Also, I get an error "Unable to parse request URL [urn:testWS2][/arsys/services]". I get this error whether I have a service.xml file or not. The URL that I pass in to my application is http://zzz:8080/arsys/services/ARService?server =xxx&WebService=yyy Has anyone seen this error? --kumar ________________________________ From: Iyengar, Kumar [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 13, 2007 4:31 PM To: [email protected] Subject: Dynamic web services Hi all, We use Axis in a non standard way. The typical use of Axis is where one generates the java stubs and then populates the stubs and deploys the application. In our application we do it a bit dynamically - we have a generic service and when the request comes in, it takes the request and then extracts the document, determines the operation and makes internal api calls. This way we never generate stubs. I am currently upgrading our setup from Axis to Axis2 and having problems with it: 1) I tried creating a service.xml file specifying the 'ServiceClass' name. However, it is not clear whether I need to specify the method name. With Axis I could specify the method name in the wsdd file. 2) Is there a complete documentation that explains all the options that can be specified in a service.xml? I have only found links (especially in IBM developer network) that explain bits and pieces. 3) Also, is it OK not to specify any operation in the service.xml file? What I really want is my code to take control of the Message Context and then extract the document and operation and then make internal calls. 4) if none of that work then do I have to do this by writing my own handler? I hope that is not the case since I could do this very easily with Axis. Any help is greatly appreciated. --kumar
