WS « axis « Java Enterprise Q&A





1. Is it possible to generate code for WS operations from eclipse web services explorer?    stackoverflow.com

I have successfully tested WS operation from eclipse WS explorer. I have problems with programming all the neccessary parameters for WS operation (lots of non Java types). I created my WS ...

2. javax.xml.ws.Service class from javax api conflicting with Axis2 jar    stackoverflow.com

I have a code for webservice communication using javax webservices. It works fine when running as a standalone application(using 1.6 version of java), but when I need to integrate same code ...

3. Apache Axis WS call from browser    stackoverflow.com

regarding this blog post, is it possible to call an axis (not axis2) Web Service from a web browser? For requesting a WS from a web broswer it is ...

4. JDK5 + Axis2 : How to create a WS with URL encoded parameters?    stackoverflow.com

I have Tomcat 5.5 + Axis2 1.5.5 + 2 servlets running. One of my servlet is a custom servlet that runs axis2 too. I have WEB-INF and all subdirectories under it (conf, lib, ...

5. Re: Feedback: Getting Started with Axis WS in NetBeans IDE 6.1    forums.netbeans.org

i've spent some time now studying axis -- both axis1, axis2 -- with this tutorial, with an axis2 web services book and with the apache axis[12] web sites. it took too long to understand(should have been explained somewhere sooner) that .aar files only are deployed to the axis2.war deployed servlet. lots of the apache axis[12] samples are not .aar samples -- ...

6. problem deploying ws with axis    coderanch.com

I have no problem with deploying a web service in axis if it is just one class that is used, from this class I make the stubs etc. with java2wsdl and wsdl2java, compiling it and making a *.jar file out of it and puting it in axis lib catalog. This works fine, but now I have a web service that has ...

9. Returning map / list with axis ws    coderanch.com

Hi all, I have an axis WS client calling a remote ejb3 web service as below: Call call = (Call) service.createCall(); call.setTargetEndpointAddress( new java.net.URL(endpoint) ); call.setOperationName(new QName("http://session.um.com/", "getAuc") ); call.addParameter("arg0", org.apache.axis.Constants.XSD_INT, javax.xml.rpc.ParameterMode.IN); call.setReturnClass(HashMap.class); HashMap ret = (HashMap) call.invoke( new Object[] {"1"} Thought it throws no error, the returned Map / List never has any contents in them. Also, if instead of ...





10. New to WS, Jax-Ws vs Axis and how to get started in eclipse    coderanch.com

Good morning everyone, I'm looking to consume a webservice published by Oracle BI publisher running on Oracle Application Server. Currently we are using Java 6 with IBM's RAD tools which are eclipse based. Which way would be easiest to go to consume the service. Looks like the two most popular frameworks are Axis 2 and Jax-WS. Are there any advantages/disadvanges to ...

11. Deploying ws to app server without Axis2 jars - Deployment Strategy    coderanch.com

Hi All, I have deployed ws (i.e war file) to an oc4j app server. I have placed the axis2 jar and other dependent jar onto the classpath of the server under j2ee\home. The war file that I now deploy is very small. I will be developing and deploying serveral ws in the future. My question is:- Is it a good approach ...

12. How to create WS client automatically in Axis2    coderanch.com

Hi all, I am a newbie in Web Service. I am facing a problem in creating web service client. Actually I have a .wsdl file refering to many .xsd. When I am trying to create the client using bottom up approach I am getting confused to create the response because it is not visible which DTO puts the input parameters. Please ...

13. javax.xml.ws.WebServiceException: org.apache.axis2.AxisFault: Transport error: 403 Error: Forbidden    coderanch.com

Hi Guys, I created a JAX WS client with wsimport and try to make a call but all attempts give me the following exception Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.axis2.AxisFault: Transport error: 403 Error: Forbidden at org.apache.axis2.jaxws.ExceptionFactory.createWebServiceException(ExceptionFactory.java:175) at org.apache.axis2.jaxws.ExceptionFactory.makeWebServiceException(ExceptionFactory.java:70) at org.apache.axis2.jaxws.ExceptionFactory.makeWebServiceException(ExceptionFactory.java:128) at org.apache.axis2.jaxws.core.controller.impl.AxisInvocationController.execute(AxisInvocationController.java:559) at org.apache.axis2.jaxws.core.controller.impl.AxisInvocationController.doInvoke(AxisInvocationController.java:118) at org.apache.axis2.jaxws.core.controller.impl.InvocationControllerImpl.invoke(InvocationControllerImpl.java:82) at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invokeSEIMethod(JAXWSProxyHandler.java:317) at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invoke(JAXWSProxyHandler.java:159) at $Proxy9.itemSearch(Unknown Source) at com.blazer.shopping.text.TestRun2.main(TestRun2.java:52) Caused by: org.apache.axis2.AxisFault: Transport error: ...

14. Axis2 - Securing WS with External Authentication or SSO    coderanch.com

Hi, I am new to axi2 and have developed a web services. Now I want to use SSO or external authentication module to secure my WS. My WS class is deployed within axis2.war/WEB-INF/services/*.aar files. The question is how to configure axis2 to talk to LDAP server or third party system using FORM or BASIC (don't care) and set user PRINCIPLE which ...