axis

Axis wsdl2java not generating all interfaces in stub

I am trying to generate stub using wsdl2java.bat, my wsdl consists of two bindings. I see that wsdl2bat creates interface for operations in the first binding but does not generate anything for operations in the seconds binding. wsdl2java.bat -uri http://... -o client -d adb -s -u. For example the code should look like this try { /...

Unable to create AxisService from ServiceEndpointAddress

Hi All, I do some testing on WS. I create a wsdl with multiple method. But I only can execute the 1st method, others failed and give me error below:- javax.xml.ws.ProtocolException: CWWSS7200E: Unable to create AxisService from ServiceEndpointAddress atorg.apache.axis2.jaxws.ExceptionFactory.createProtocolException(ExceptionFactory.jav...

Web Services:BeanSerializer

When an error like this will occur? <ERROR> <BeanSerializer> <serialize> <Exception:> java.io.IOException: Non nillable element 'standardHeader' is null. at org.apache.axis.encoding.ser.BeanSerializer.serialize(BeanSerializer.java:215) at org.apache.axis.encoding.SerializationContext.serializeActual(SerializationContex...

Web service client code generation problem (with Axis 2 )

Hello I need to generate a Java Client. I tried wsdl2java from Apache CXF Project, it returns "a Null pointer exception" when I give it an http link to a wsdl file. I also tried the Axis2 Codegen plugin for eclipse. It cannot generate a client stub and prints an error that it cannot resolve a relative path to an .xsd file. The provider ...

Java Axis Webservice stub throwing a NoEndPointException

I am consuming a web-service with axis. I am getting a NoEndpointException from any webservice method I call. Its coming from this generated code. if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } So it seems to suggest I haven't set up the endpoint correctly. This is how i've instant...

How to get an Axis2 Web Service to print to the Tomcat logs

Hi all, I'm managed to get the userguide/example1 echo web service working for Axis2. However, to validate that the changes I make to the service are actually working, I would like to print something to the tomcat console. So far, it hasn't worked, using a simple System.out.println("xyz"); I grep the logs and it's not there. Also, I'm ...

Apache Axis: How to set call properties using code generated from wsdl2java?

I'm using Apache Axis 1.4 (yes, the old one), with wsdl2java to generate the client code for a webservice. I'd like to set additional properties on the Call object before calling methods on the generated stub. For example, I'd like to set username, password, perhaps add or modify existing headers, and change the client handlers to use d...

Binding JVM to An IP Other than Default

I have a multihomed system with multiple NICs and IPs. I am not %100 sure how my Sun JVM chooses the IP representing 'this' system (that's the "source IP" when connecting to another system using Socket or URLConnection). Does it pick the system default NIC, or perhaps it does a reverse lookup on the system's name? etc. In any case, is ...

Mirth Connect: javascript to call a webservice

Hello, 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, but it does not work: /*importPackage(java.net); importPackage(org.apache.axis.client.Call); importPackage(org.apache.axis.client.Serv...

org.apache.axis2.AxisFault: First Element must contain the local name, Envelope , but found html

What could be the reason for the following exception from Axis... Http verion used was 1.0. Read this could be solved if the following property is set stub._getServiceClient().getOptions(). setProperty(org.apache.axis2.transport.http.HTTPConstants.CHUNKED, Boolean.FALSE); But the above property is applicable only for ...

Axis WS - wsdd file

Hi, I have a web-application developed with Spring & Hibernate to which I have to add an Axis Web Service. The service should return a list of objects from the domain of the web application. Do you have any idea why Axis won't map my java types to xml types? All I get is this: <complexType name="ArrayOf_xsd_anyType"> <complexConten...

Posting a SOAP XML to an SSL

When I try to post the XML to an SSL link by the following code public void send(String url, String xmldoc) { StringBuffer sb = new StringBuffer(); try { ByteArrayInputStream bais = new ByteArrayInputStream(xmldoc .getBytes()); InputSource is = new InputSource(bais); DocumentBuilderFactory factory = DocumentBuil...

WSDLException : An error occurred trying to resolve schema referenced at ...

Hello i'm trying to generate a proxy class from a local wsdl file with eclipse Galileo and axis 2 1.4 on windows xp . My problem is that i get an error due to an imported schema inside the wsdl . The line tha troubles me is : <xsd:import namespace="http://www.w3.org/2005/05/xmlmime" schemaLocation="http://www.w3.org/2005/05/xmlmime"/&g...

Errors when creating java webservice using Axis 1.4

Hello, Im trying to create a simple web service using Axis 1.4 and Tomcat in Java. I have setup Axis 1.4, by adding the Axis jars to my CLASSPATH, also i have set AXIS_HOME. In my project folder i have two subfolders, src and classes. In src\org\test\wssample, i have SimpleCalculator.java,defined as package org.test.wssample; public c...

Apache Axis 1.x xml payload

I'm using apache axis to consume a few SOAP operations. The web service I'm talking to takes XML as one of the payload inputs. I noticed that Axis is encoding the non xml friendly characters. IE < > to &alt; etc.. etc.. How can I tell apache Axis to allow my payload to go over un-encoded? ...

Axis error about runtime location

The error is: Exception occurred while reading or writing file {0}The Axis2 facets cannot be installed since the Axis2 runtime location has not been set. Go to the Web Services preference page and set the Axis2 runtime location under Axis2 Preferences. In the preferences mentioned, the location is set correctly and in fact, it says "A...

How do I test a web service receiving multiple requests from its clients?

I have an axis web service deployed on JBOSS. My web service is synchronous. So, how does a web service handle multiple requests? And how do I simulate/test that my code can handle multiple requests well? ...

Preventing Axis from sending i18n characters in html encoding

How to change character encodings and prevent html encoding. The other party does not understand html encoding. ...

Setting socket options in Java SOAP Web Service (Axis 1.4)

Is there a way to access the Socket object using Axis? Specifically, I need to call the method setTcpNoDelay, in order to disable the Nagle algorithm. This is a requirement in the Service Level Agreement from the Web Service provider. I cannot find a way to do it in the Axis docs, wiki or otherwise. I am using Axis 1.4, but can switch t...

Calling a JAVA web service created using Axis from PHP code

Hello, Im trying to call a Java web service created using Axis from PHP code.The webservice is hosted on my LAN. I am able to call the web service successfully using SoapUI. I have the PHP Soap Extension installed. However,im not sure whether my PHP code is correct. Below is my PHP code. <?php $client = new SoapClient('http://machinen...