connect « axis « Java Enterprise Q&A





1. How to connect with an Axis webservice hosted in a password protected realm?    stackoverflow.com

I'm trying to connect with a webservice that's in a password protected host, i.e. you must enter user+pass to access the remote WSDL. The key word there is "trying", I have a ...

2. Mirth Connect: javascript to call a webservice    stackoverflow.com

I'm trying to call a web service from a Mirth Channel transformer javascript using apache axis library (which it's supposed to be deployed with Mirth). I've tried using the following java script, ...

3. Connect to AXIS Web Service Issues    stackoverflow.com

So here's the deal. I'm attempting to use Visual Studio to connect to an AXIS web service. Unfortunately, the Web Service does not have a public WSDL file available on the ...

4. java connect to webserver with eToken and root.cer    stackoverflow.com

I need to connect to a axis web server with an USB eToken Alladin from linux. The eToken provider gave me a root.cer, public.cer. In windows you need to install them.I ...

5. Axis 1.4 Error plz help Connect Exception    coderanch.com

Hi, Please help me im getting the following exception in Axis 1.4 :- [Ljava.lang.StackTraceElement;@13d9c02 AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: java.net.ConnectException: Connection timed out faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/} stackTrace:java.net.ConnectException: Connection timed out at java.net.PlainSocketImpl.socketConnect(Native Method)......... I have created a Stub from the provided WSDL with WSDL2Java.class in AXIS 1.4, the call for the Web Service executes very well on my machine but ...

6. Problem with RPCServiceClient to connect to a Rampart secured Axis2 web service    coderanch.com

I am trying to connect to a Rampart secured Axis2 web service using a RPCService client (I am not using a stub ok,got the point?) When I run my client it gives a Invalid security exception as follows, org.apache.axis2.AxisFault: InvalidSecurity at org.apache.rampart.handler.PostDispatchVerificationHandler.invoke(PostDispatchVerificationHandler.java:143) at org.apache.axis2.engine.Phase.invoke(Phase.java:317) at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:264) at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:163) at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275) at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:133) at javax.servlet.http.HttpServlet.service(HttpServlet.java:710) at javax.servlet.http.HttpServlet.service(HttpServlet.java:803) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at ...

7. Axis - Connection refused: connect    coderanch.com

Im trying out the axis1 example thats given inside the documentation but eneded up with the connection refused. String endpoint = "http://ws.apache.org:5049/axis/services/echo"; Service service = new Service(); Call call = (Call)service.createCall(); call.setTargetEndpointAddress(new java.net.URL(endpoint)); call.setOperationName(new QName("http://soapinterop.org/", "echoString")); String ret = (String) call.invoke( new Object[] { "Hello!" } ); System.out.println("Sent 'Hello!', got '" + ret + "'"); 10:53:45,406 ERROR [STDERR] AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException ...

8. connecting to webservices using axis    coderanch.com

I need to connect to a webservice using axis. What I now have is this: try { System.out.println("Start"); Service service = new Service(); System.out.println("Service ready"); Call call = (Call) service.createCall(); System.out.println("call ready"); URL url = new URL("http://10.1.1.134:2587"); call.setTargetEndpointAddress(url); call.setOperationName("get:GetWoningToewijzingRequest"); call.addParameter("cal:Customer", XMLType.XSD_STRING, ParameterMode.IN); call.addParameter("cal:Module", XMLType.XSD_STRING, ParameterMode.IN); call.addParameter("cal:Version", XMLType.XSD_STRING, ParameterMode.IN); call.addParameter("HuuraanbodID", XMLType.XSD_STRING, ParameterMode.IN); call.setReturnType(XMLType.XSD_STRING); String r = (String) call.invoke(new Object[] { "ServicePunt", "klantcontact", ...