axis « J2EE « JSP-Servlet Q&A





1. Consuming WebServices in Java    stackoverflow.com

We are building a web-application and a significant portion of the project will be making real time calls from our servlets to some back end webservices. Some of these calls ...

2. Asynchronous access from Servlet to Webservice with Axis    coderanch.com

Hi *, My goal is to make an asynchronous access to a web service written in Perl (with SOAP::Lite) from a servlet which communicates an applet or is called from a JSP. The web service has two access modes synchronous and asynchronous. To access the web services I wrote an Java interface and created a WSDL file with the Java2WSDL tool ...

3. Servlet based web-services in Axis?    coderanch.com

Hi, Ive seen a few examples of deploying POJO based web-services in Axis, but never any of Servlet based web-services. Is it possible to do so? Or is it possible to deploy a web-service where we have a Bootstrap kind of a Servlet (which can perform certain common stuff after load on startup), and the functionality exposed through a POJO? If ...

4. Web service Client with Axis2    coderanch.com

5. Calling a web service in a java servlet,.. servlet not finding jar files from axis    coderanch.com

Hi Jeremy, Seems to me a usual problem. Clearly, you have jax-rpc.jar missing in your server/web application classpath. Add this jar into WEB-INF/lib directory. But, this doesn't work always if there are conflicts between server classes and application classes. For Axis1.4 you need to add following jars unless already existing in your server classpath or conflicting with other versions. axis2.jar, jaxrpc.jar, ...

7. Axis: Could not retrieve server module metadata in Axis servlet for module    coderanch.com

I have a http router module BatchOverrideWeb running it on my WAS7 with EJB3.1 i get the following when i test using SOAPUI plugin in the IBM RSA javax.servlet.ServletException: com.ibm.ws.websvcs.exception.ConfigurationException: Could not retrieve server module metadata in Axis servlet for module: BatchOverrideWeb at com.ibm.ws.websvcs.transport.http.WASAxis2Servlet.init(WASAxis2Servlet.java:362) at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:358) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.init(ServletWrapperImpl.java:169) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:739) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502) at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179) at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3826) at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276) at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931) at ...