1. Changing port on which an Axis web service is listening to stackoverflow.comI have a web application running on port :80, and I have an Axis web service that is part of that web application. As such, the service is running on port ... |
2. Data Binding in axis2 stackoverflow.comI want to create a simple webservice using Axis2 1.5.1. The expectations from the webservice is: |
3. axis 2 web service : null parameters issue with http binding stackoverflow.comI am trying to develop a web service with axis2. The problem is that I don't get the parameters passed in the url for an http Binding. Here is my service.xml :
|
4. Databinding in AXIS2 stackoverflow.comI have created a web service for the following method using AXIS1.4 public class SoapTest { public String test(String param) { System.out.println("soap activity check "+param); return param+" return from soap"; } } I ... |
5. Need some info regrading HttpPost Binding in Axis2 stackoverflow.comI have exposed a POJO in a Web Service (bottom up approach) using AXIS2. Now using the HttpPost endpoint, from a browser I can call that service(with param values) just like ... |
6. AXIS1: How to personalize the "binding name" stackoverflow.comi have the following generated webservices with axis1 tools:
|
7. javax.xml.bind.Marshaller encoding unicode characters with their decimal values stackoverflow.comI have a service that needs to generate xml. Currently I am using jaxb and a Marshaller to create the xml using a StringWriter. Here is the current output that I am ... |
8. Axis2 databinding problem coderanch.comI'm using Axis2 to generate a client from WSDL. I'm having a problem with the databinding. The WSDL I'm using is somewhat complex, so to illustrate the problem I created some simpler WSDL. Consider this ficticious service that takes as a request a last name, and then returns as a response the husband (first name, last name) and wife (first name, ... |
9. Axis2 Problems with Databinding coderanch.comHello everyone, I've following problem and I don't know, how to sovle it. I've WebService client and endpoint implementation - both are Apache Axis2 1.4 . When I'm sending data from Client to WS - I've special object WsRequest I've problems with its variables. My WsRequest containts a reference to object Querry, which containts references to other objects. When I send ... |
10. axis2-1.4.1/WSDL2Java / adb binding with -u option coderanch.comHello, I am doing the following 1. Web Service client code generation using WSD2JAVA WSDL2Java -uri inquiry200808.wsdl -p xxxxx -d adb -s -u with the -p xxxxx option the package structure would start with xxxxx name but with in it I do not have control over the unpacked files(java files generated for XSD files). 2. If I use the unpack option ... |
11. Getting exception org.apache.axis2.AxisFault: org.apache.axis2.databinding.ADBException: Unexpected coderanch.comPlease let me know whether it is possible to use inheritance in axis2. I wrote a new program //B.java public class B { int j1 = 0; public B(){ } /** * @return the j1 */ public int getJ1() { return j1; } /** * @param j1 the j1 to set */ public void setJ1(int j) { this.j1 = j; } ... |
12. AXIS2 - Databinding question coderanch.com |
13. Can we bind Axis2 web service with particular address of the machine coderanch.comHi all, I have a web serive which is running on localhost. When I am creating client , it working fine.But when I deploy that service to remote machine & try to create client. It creates the client code (Stub & Handler classed.After that , when I test this web services, it throws an exception. Connection time out error. But deploying ... |
14. Axis 2 Data binding frameworks coderanch.comHi, As of now axis supports ADB, xmlbeans and jibx. Currently JaxBRI (ref impl) is under experiment. Axis seems to generate mappings depending upon the kind of binder selected. Is it true that to develop and work with axis WS, one needs to be aware of the way the selected binder works? Fx, ADB doesn't work with restrictions and complex type ... |
15. Axis 2 Binding question (Important) coderanch.comHi, I'm facing some peculiar problem here. I'm using Axis 2, ADB binding framework and a document literal style of WSDL. |
16. org.apache.axis2.AxisFault: org.apache.axis2.databinding.ADBException: Unexpected subelement coderanch.comHi. I put your response XML in NewFile.xml. And I got this program (adapted from this) to read it: import java.io.File; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class XMLReader { public static void main(String argv[]) { try { File file = new File("NewFile.xml"); DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = ... |
17. org.apache.axis2.AxisFault: org.apache.axis2.databinding.ADBException: Unexpected subelement coderanch.comaxis 2.1.5.2 org.apache.axis2.AxisFault: org.apache.axis2.databinding.ADBException: Unexpected subelement westernUnionCheckResponse this is my wsdl |