AXIS 1 « wsdl « Java Enterprise Q&A





1. Using complex data types from Java in Axis webservice    stackoverflow.com

I am currently developing a Java app which handles a SOAP webservice. The problem lies after I parse the WSDL [the Parser object from Apache Axis does it for me], and ...

2. Axis2 WSDL2Java : missing no-arg operation in generated stub    stackoverflow.com

I've got in my webservice a simple public boolean isAlive() service. I defined it in my WSDL :

<wsdl:types>
    <xsd:element name="isAliveResponse" type="xsd:boolean">
    </xsd:element>
</wsdl:types>
<wsdl:message name="isAliveResponse">
    ...

3. AXIS 1.4 adds elements to custom fault type    stackoverflow.com

Maybe someone found a workaround for the following problem: It seems as if AXIS 1.4 adds an <exceptionName> and a <hostname> element to each custom fault element. In the WSDL the fault ...

4. axis wsdl generation    stackoverflow.com

I'm using Axis to model a sample WebService. What I'm doing now is trying to understand which are the limitations of the automated wsdl and code generation. Now for some server side ...

5. make a parameter of type byte array nullable in an axis web service    stackoverflow.com

i have a java method that is part of an web service interface and that takes a byte array parameter like this

public int computeSomeThind(byte[] data) {
  if(data != null) {
 ...

6. wsdl2java ant task: howto include wsdl file name in java file comment    stackoverflow.com

We're generating Java files from WSDL descripitons using the axis-wsdl2java ant task.

<axis-wsdl2java url="${src.dir.etc}/wsdl/BLAH.wsdl" 
                output="${build.dir.generated_src}" timeout="240000"
 ...

7. "Time out" when multithreading requests to a webservice with java and axis2    stackoverflow.com

I'm working with a slow webservice (about 4 minutes each request) and I need to do about 100 requests in two hours, so I've decided to use multiple threads. The problem ...

8. How to access the FirstData web service integration WSDL file?    stackoverflow.com

FirstData has horrendous customer support, but I have to integrate with their Global Gateway web service for a project I'm working on. I'm simply trying to run the Axis2 wsdl2java tool ...

9. Java .Net Interop. Axis java.util.Map    stackoverflow.com

I have wsdl that needs to be interpreted by wsdl.exe (.net sdk 2.0) This wsdl is generated on runtime by axis engine, and it is reading a wsdd file to generate this. ...





10. "java form generator" from a given wsdl file    stackoverflow.com

I'm trying to develop a form generator in java, in which users will be able to write a wsdl url and get the list of the operations supported by the web ...

11. Interoperability of Axis2    stackoverflow.com

I have created a simple webservice using the POJO class in eclipse. One of the web had a custom class as a parameter. The issue that I faced was when I created ...

12. ColdFusion fails to generate WSDL    stackoverflow.com

I am having trouble getting web services to work in ColdFusion. This works just fine on my development server, but when I gave it to QA they are getting this error ...

13. WSDL2Java Throws Could not find main class: org.apache.axis.wsdl.WSDL2Java    stackoverflow.com

I am trying to create the java files from a remote webservice. I downloaded axis 1.4, copied the lib folder to c:\data\axis\lib which contains of these files:

  • axis.jar
  • axis-ant.jar
  • commons-discovery-0.2.jar
  • commons-logging-1.0.4.jar
  • jaxrpc.jar
  • log4j.properties
  • log4j-1.2.8.jar
  • saaj.jar
  • wsdl4j-1.5.1.jar
I added the c:\data\axis\lib folder ...

14. How to use WSDL2Java generated files?    stackoverflow.com

I generated the .java files using wsdl2java found in axis2-1.5. Now it generated the files in this folder structure: src/net/mycompany/www/services/ The files in the services folder are: SessionIntegrationStub and SessionIntegrationCallbackHandler. I would ...

15. Axis2 Web Services and Eclipse WSDL authoring: Adding an axis fault to wsdl causes exception when running wsdl2java    stackoverflow.com

I am trying to create a contract-first Web Service using Apache Axis2 1.4.1. Since Eclipse has what seems like a pretty complete wsdl editor I started autoring my wsdls using Eclipse´s ...

16. Axis2 WebService and multiple ExceptionFault elements in WSDL    stackoverflow.com

I am not AXIS2 expert, therefore I am using Eclipse to generate bottom - up webservice. I am publishing 2 methods as webservices. These methods are defined to throw java.lang.Exception in ...





17. WSDLs generated by Axis2 services can't be read by SoapUI or WSDL2Java    stackoverflow.com

I'm converting some services from Apache SOAP to Axis2, so the Java service classes already exist. I created a new project in Eclipse, imported the source, made sure that the Axis2 ...

18. where can I find class org.apache.axis2.wsdl.java2wsdl    stackoverflow.com

when I invoke "<java classname='org.apache.axis2.wsdl.wsdl2java'> <arg value ...> ...", It works well !!! But when I try to invoke "<java classname='org.apache.axis2.wsdl.java2wsdl'> ...", I always get an error "Can not find org.apache.axis2.wsdl.java2wsdl" Can anybody ...

19. wsdl interoperability problems    stackoverflow.com

I wrote a .asmx web service which I'm trying to consume from a java client. I'm using axis2's wsdl2java to generate code. But it says that the wsdl is invalid. What ...

20. axis2 doesn't return xml-response according to given WSDL    stackoverflow.com

I've got a problem with axis2' backward compatibility. The problem is next: there's need to migrate from axis1 on axis2 w/o changing clients. Since I have WSDL this must not be a problem. ...

21. Web services - WSDL to Java - Extending only skeleton file?    stackoverflow.com

I have converted a WSDL file to generate Java code (with Axis2)that will be deployed as web service. Do I only need to implement and extend the skeleton file generated? Or, ...

22. Removing Nillable="true" while generating WSDL    stackoverflow.com

I'm creating a web services and generating a contract (WSDL) with Axis2 like a POJO web service which is in turn giving me an output like this

<xs:element minOccurs="0" name="acHolderName" nillable="true" type="xs:string"/>
Whereas ...

23. WSDL with type int or blank is not readable by stubs generated by wsdl2java    stackoverflow.com

I have created a simple type

   <xsd:simpleType name="IntOrBlank">
            <xsd:union memberTypes="xsd:int">
         ...

24. WSDL2Java Throws Could not find main class: org.apache.axis.wsdl.WSDL2Java    stackoverflow.com

I'm trying to use WSDL2Java on my Mac. I setup the CLASSPATH in bash.

AXIS=/Users/bernie/axis-1_4/lib

CLASSPATH=".:$AXIS/axis-ant.jar:$AXIS/axis.jar:$AXIS/commons-discovery-0.2.jar:$AXIS/commons-logging-1.0.4.jar:$AXIS/jaxrpc.jar:$AXIS/log4j-1.2.8.jar:$AXIS/saaj.jar:$AXIS/wsdl4j-1.5.1.jar";
But when I run
java -cp $CLASSPATH org.apache.wsdl.WSDL2JAVA mywsdl.wsdl
I get an error.
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/wsdl/WSDL2JAVA
Caused by: java.lang.ClassNotFoundException: org.apache.wsdl.WSDL2JAVA
 ...

25. WSDL2Java won't create all the stubs    stackoverflow.com

I'm using Apache axis2 and more specifically, the wsdl2java tool to generate the stubs for a web service and create a client, given the wsdl file. When I try to generate stub ...

26. Prevent WSDL generation from including certain fields    stackoverflow.com

I'm using Axis2 and Eclipse to create my webservice. I have created my schema object to be included in the WSDL, but I don't want some fields to be included ...

27. Does Axis2 provide any features for determining if a service is deployed or not?    stackoverflow.com

I've got a bunch of web services deployed in an Axis2 environment. From my Java code, I want to find out if a particular web service is deployed or not. I'm thinking, that ...

28. Compatibility of Axis2 with older wsdl files / Web Services    stackoverflow.com

If I understand correctly, all frameworks use SOAP while communicating with Web Services. I am still in dilemma whether a particular server supports all frameworks. Let's say, XYZ has released its ...

29. Dealing with ArrayOfAnyType (Java) with Axis2    stackoverflow.com

I have generated a stub (.java) using Axis2's WSDL2Java application, but I can't deal with the "ArrayOfAnyType" type. I want to invoke a method that has ArrayOfAnyType as parameter type. But... how to ...

30. Web Services : wsdl to java in eclipse    stackoverflow.com

I have generated java code from wsdl file using eclipse axis2 plugin i.e client side code, server side code, test client also my question is how will i implement the method ...

31. Getting parameters values blank and null when using custom wsdl in axis2    stackoverflow.com

I am using axis2 for my web services creation. I want to use my own wsdl file instead of using generated wsdl file. When I am placing my own wsdl file ...

32. AXIS: The OperationDesc was not synchronized to a method    stackoverflow.com

So I have a webservice that gets a flag from a table in sql, which works. I am now trying to add the functionality to set the same flag. ...

33. Parameters in request to POJO AXIS2 web service are not passed to the POJO    stackoverflow.com

We have a POJO web service implemented in AXIS2 v1.5.2 running in Tomcat 6 behind Apache2 webserver. For demonstration purposes, I will focus on the validateUser message and corresponding method. All of the ...

34. Axis2 problems with Inheritence    stackoverflow.com

We have object inheritance in our java classes and in the operations we are returning the base classes. Upon running Java2WSDL we noticed that only the base class object is created ...

35. Generating WSDL for custom rampart policy token    stackoverflow.com

I have created a new Security Policy token for Rampart say of type SignedSupportingToken. It successfully generates a request with custom tag in the policy.xml

<sp:SignedSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
     ...

36. how can parse wsdl using axis2    stackoverflow.com

how can parse wsdl using axis2

37. What's wrong with my WSDL?    stackoverflow.com

Spent all day trying to generate an xmlbeans binding using wsdl2java (Axis2 1.5.4) Completely befuddled. Here's my command line:

wsdl2java.bat -uri http://localhost:3000/api/wsdl -d xmlbeans -a -or -o build/client
Here's the WSDL:
<?xml ...

38. Code generation from WSDL causes exception    stackoverflow.com

I'm using Axis2 1.5.1 (wsdl2java) for code generation (client stubs) from a given WSDL file.
The webservice is provided by an external application.

<?xml version="1.0" encoding="utf-8"?>  
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"  
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility- 1.0.xsd"  ...

39. Axis generates all classes but not Axis2?    stackoverflow.com

I've generated stubs using following commands Axis: java org.apache.axis.wsdl.WSDL2Java CrmDiscoveryServiceWsdl.xml : Generates all classes Axis2 : wsdl2java.bat -u -uri CrmDiscoveryServiceWsdl.xml : Generates only a few classes.

       ...

40. java2wsdl (axis2) usage    stackoverflow.com

I'm trying to use java2wsdl to generate a document literal wsdl for JiraSoapServiceImpl. However it seems that no matter what usage I use, I got a ClassNotFoundException.

java2wsdl -cp . -cn com.atlassian.jira.rpc.soap.JiraSoapServiceImpl
The ...

41. Couldn't find a matching Java operation for WSDD operation    stackoverflow.com

I hv created a web service for the following code but am getting an exception:

org.apache.axis.InternalException: java.lang.Exception: Couldn't find a matching Java operation for WSDD operation "andrQues" (0 args)" ...

42. The endpoint reference (EPR) for the Operation not found is     stackoverflow.com

I have been struggling with the following error the last couple of days can you please help! I generated my server and client code using the wsdl2java tool from a wsdl 2.0 file. When invoking ...

43. Specified throwing AxisFault in WSDL file    stackoverflow.com

I generate my web service from WSDL file. But I need t o define in this file that my methods in SkeletonInterface thow Axis Fault Exception. Smth like:

void method() throws ...

44. End-to-End Axis example with WSDL    stackoverflow.com

Wading through the user guide and gathering bits and pieces, I have a wsdl file and ran the wsdl2java tool in axis to get a bunch of java codes: Abc.java, AbcService.java, ...

45. Getting the parameters values as null while working with custom wsdl file in axis2    stackoverflow.com

I have a web service method which takes a parameter. If I am not using any custom wsdl file, then it is working very fine. But it doesn't work when I ...

46. Apache Axis WSDL to Java conversion    stackoverflow.com

I have a integer field in a class which I have made private and no setter method is provided but when I generate the client with WSDL2Java, the generated class has ...

47. Axis Connection Timeout    stackoverflow.com

My Axis based client program tries to connect to a webservice, when the server is down I don't want to wait too much time . I want to wait max 3 ...

48. WSDL to java conversion    stackoverflow.com

I want to convert WSDL file into java classes file.Suggest me the package used for it. I found one that is axis 2.0 .But i want to more packages used to ...

49. Axis2 : Generting Wsdl from java code    stackoverflow.com

I have written a simple java class as shown below :

public class Simple {

    public String echo(String rest) {

        return rest;
 ...

50. Inheritance issue in Apache Axis WSDL to Java conversion    stackoverflow.com

I am trying to generate a stub for two classes using wsdl2java with Apache Axis 2 server. This is what I am trying to do:



    public abstract class Vehicle{
 ...

51. creating header with axis2 java2wsdl - how?    stackoverflow.com

I am using org.apache.axis2 to create wsdl. Our code is implementing ScemaGenerator and has our additions. I am trying to find a way to create the wsdl with the header definition, ...

52. axis2 webservice EPR issue    stackoverflow.com

So, i've been been trying to deploy a very simple service, following this tutorial using maven3 and JEE eclilpse http://maksim.sorokin.dk/it/2011/01/13/axis2-maven-servlets-tomcat/ But receive this exception. org.apache.axis2.AxisFault: The service cannot be found ...

53. AXIS: Deserialization exception for complex type parameter    stackoverflow.com

I use AXIS 1.4 autogenerated WSDL (IDEA->generate WSDL from java code) and I just cannot call any my web-service with complex parameter type - exception occures on the request:

org.xml.sax.SAXException: Deserializing ...

54. How to transfer a java.util.Map through a Web Service?    stackoverflow.com

My method returns a Map<int, String[]>. Is it possible to pass it through to a Web Service?

55. wsdl2java with Basic Authentication (Axis 1.6.1)    stackoverflow.com

I am using wsdl2java to generate my java stub code for a web service. I know it has been a bug since 1.4 that a wsdl source that requires HTTP ...

56. Axis 1.4 hexBinary wsdl return type    stackoverflow.com

I made a WS client from a wsdl containing one method of hexBinary type. While this worked perfectly OK with JAX-WS, AXIS is a completely different story. Firstly this method in ...

57. Axis2: wsdl2java for a wsdl based on ssl    stackoverflow.com

Please have a look at the error below which occurred when I used the command: E:\Web Services\Security\axis2>wsdl2java -o . -uri https://localhost/axis2/services/SecureService?wsdl

Using AXIS2_HOME:   C:\Program Files\axis2-1.6.1
Using JAVA_HOME:    ...

58. Web Services Tutorials covers WSDL, Apache Axis, and more    coderanch.com

This tutorial shows J2EE developers how to use the IBM ETTK (Emerging Technologies Toolkit) to make any EJB a Web Service that will run on any application server. This tutorial also works with Apache Axis. Do you currently use EJB technology? Have you ever wondered how to expose an EJB component as a Web service no matter what your application server ...

59. wsdl in uddi with axis    coderanch.com

60. how to turn off ?wsdl, ?list?, ?method etc. (axis)    coderanch.com

Hi, I am looking for an answer to this question for 3 days now... but did not get any break through. Looked at the axis-user mailinglist and JavaRanch forums also, but did not get working solution. I found following in the reference guide, I tried it but that also didnt go through. "By default, Axis provides for three Axis servlet query ...

61. Make a WSDL from JWS using Axis (Complex types problem)    coderanch.com

I'm trying to make a WSDL from JWS using Axis. File compiles without errors, but if i press "Click to see the WSDL", it gives me nothing. What can be wrong with my code? With simple types all works OK. public class TestWebService { private User user; public User getUser(int userID) { return new User(); } public void setUser(User user){ this.user ...

62. Axis - describing arrays in WSDL : "unbounded sequence" instead of "soapenc:Array"    coderanch.com

Would anyone happen to know if it's possible to control the way Axis describes arrays in WSDL - in particular, is it possible to make it use , instead of ? For instance, a web service that receives a parameter of type Zoo, where Zoo holds an array of animals: public class Animal implements Serializable { private String ...

63. AXIS - wsdl with meaningful parameter names instead of in0,in1...?    coderanch.com

Hi, In Axis, I have just realized that the wsdl files (found using Tomcat Web Application Manager) automatically generated by my application contained: ==================== .... ... =========================== Now, I would like to have the parameter names instead of in0 and in1 like I have defined it in the routine: ...

65. Using Axis ,but unable to get WSDL for parameterised method    coderanch.com

Hi All, I'm very new Web Service , i have installed Axis to use web Service,my problem is when i'm deploying my web application & accessing it on local machine, i'm getting the WSDL file for an empty method call eg Hi() but for the methods like add(int,int) ,unable to get the desired WSDL file for ex http://localhost:8080/axisT/Calculate.jws?method=hi but what is ...

66. Java Integer Object in Axis - WSDL    coderanch.com

Hi balaji, Thanks for ur reply. My Bean as follows public class Content implements Serializable { private static final long serialVersionUID = -5057543397130314245L; private Long cId; private Integer catId; private String catName; public Long getContentId() { return this.cId; } public void setContentId(long cid) { this.cId = new Long(cid); } public Integer getCategoryId() { return this.catId; } public void setCategoryId(int catId) { ...

67. How to create axis wsdl with user friendly names    coderanch.com

Peer, thanks for the reply and nice link. However some one asked me to compile interface with -g option which is same as debug="on" in ANT task, and then use java2wsdl. compiler produces all debug information and java2wsdl uses that debug information to give variable names in wsdl file. I have done above exercize but still i get wsdl which doesn't ...

68. Axis: Should I publish wsdl again?    coderanch.com

I developed a wsdl and using wsdl2java to generate classes. After I deploy this service on axis, I can get a live wsdl by click the link besides the portName when viewing the list of available services. Let's call the wsdl for generating classes as start-wsdl and the wsdl on list page as end-wsdl. My question is: if user can view ...

69. Registering a WSDL file with axis    coderanch.com

70. axis2 without wsdl?!    coderanch.com

71. How to deploy a WSDL to Axis 1.4    coderanch.com

Can anybody tell me how to deploy a Web Service from a WSDL file in axis 1.4 running on a tomcat server? I tried a lot to locate some clue on the net. Nothing meaningful I got. I have generated the WSDL using the axis-java2wsdl task. I can use a axis-wsdl2java task again on the generated WSDL file and deploy the ...

73. AXis 2 and Array in doc literal wsdl    coderanch.com

I am writing a doc literal wsdl. I have an issue with creating an array of objects. I have an element 'a' and another element 'b' which is an array of objects 'a'. WSDL2JAVA gives me WARNING: Type {http://sample.com/}a missing! Here are the wsdl snippets: ...

75. Parameter names in wsdl - axis2    coderanch.com

Dudley, I am laso having the same issue with Axis2. I looked into sample apps of Axis2, they also have same problem. This wsdl is useless then as I can't asl client to use param0, param1 etc.Please share if you find any work around. Arafat, this wsdl is generated by accessing localhost:8080.services.

76. WSDL generation in Axis - item is referenced but not defined    coderanch.com

I'm new to web services and axis, but I've been having some success with developing them so far. My current task is to create a web service from a WSDL that's been handed to me, I have not been given much information on how it was created, but it seems that there has to be something wrong with it. I'm not ...

77. Axis - Extra classes in WSDL    coderanch.com

Hi I have a we service method that takes an abstract type as parameter. I have defined classes which are concrete implementation of this abstract type. Using java2wsdl I get the wsdl with all the types defined (P.S. I have set extra classes). Now I run wsdl2java to get he deploy.wsdd. The WSDD file is missing the parameter "extraClasses". But I ...

78. creating web services from wsdl(servercode) using apache axis xmlbeans    coderanch.com

I am a newbie to web services .I have an existing wsdl.I am using axis platform for creating the web service using xmlbeans.I followed the document in the following link http://ws.apache.org/axis2/1_2/quickstartguide.html I created the server side skeliton .ans created the client code. Also suggest me how to proceed with xmlbeans. I am getting the following errors in the client code org.apache.axis2.AxisFault: ...

80. Axis2 Generation - Multiple WSDL Ports    coderanch.com

Consider the following WSDL outline: ... ... ... ... When I run Axis2 code generation on it (org.apache.axis2.wsdl.WSDL2Java), the Stub it generates "WidgetServiceStub" only contains methods for one of the ports above. For example, in one generation I only have methods defined in Sale ...

81. Axis2 WSDL2Java ignores wsdl:documentation    coderanch.com

Any WSDL element can contain a single documentation element with arbitrary content that can be used to add descriptive text to it for the benefit of implementers of the service itself or of clients that will use the service. The use of elements is preferred over XML comments because XML parsers are not required to pass XML comments to application code. ...

82. minOccurs and maxOccurs in wsdl being igored by Axis WSDL2Java    coderanch.com

I have a wsdl file with a webservice method that is supposed to return a list of Java objects. The element is defined as However when I generate the client classes using org.apache.axis.wsdl.WSDL2Java, I am not getting a List as the return type. Does axis ignore maxOccurs? What can I do to construct the classes correctly? Thanks ...

84. Axis2 Unable to parse wsdl    coderanch.com

Hi, I am just getting started on WebServices...I have a wsdl that works perfectly with Axis, I am able to generated the client code and access the service. I am trying to upgrade to Axis2, however when I use the Axis2's WSDL2Java converter its erroring out. My question is, Is the WSDL dependent on the Axis frame work? Isn't Axis2 backward ...

85. How to create a webservice with axis specific WSDL    coderanch.com

Hi All, I want to know if anybody can provide with me any documentation or information link from where i can find the way how to deploy webservices using axis specific WSDL(i mean WSDL is created using axis jars) on to the application server like Weblogic. I would like to know the following, 1 - How to create the web.xml 2 ...

86. Axis - wsdd Vs wsdl    coderanch.com

Hi! A WSDL document describes the services made available by a web service and the format of the data send to, and received from, the web service. Thus, the WSDL is to be consumed by (prospective) clients of the web service, in order to know how to use the web service. A deployment descriptor tells some kind of container, for instance ...

87. Axis 1.4: not doing correct beanmapping on deployment wsdl    coderanch.com

Hi all, I'm using Axis 1.4 in java. When I create the deployment document I specified the beanmappings I want axis to published in the wsdl [1]. But when generating the wsdl they are not included as , and just putting the classes that are directly referenced in the treatmentStageWS class. I want to explicitly add other classes to the beanmapping ...

88. I don't know how to use java org.apache.axis.wsdl.WSDL2Java    coderanch.com

A class not found exception means you don't have all the required classes in your classpath; we can't say which one you're missing since we don't have access to the exception stack trace. But normally, you wouldn't use that class directly, you'd use the wsdl2java script that comes with Axis; any particular reason you're not doing that?

89. AXIS Generated WSDL file looks wrong.    coderanch.com

Just an update, just tried restarting my Tomcat and now when I run my CalcClient, I get a Caused by: java.lang.NoClassDefFoundError: Calculator (wrong name: com/test/axis/Calculator); nested exception is: java.lang.NoClassDefFoundError: Calculator (wrong name: com/test/axis/Calculator) error. The Calculator.class looks like: package com.test.axis; public class Calculator { TestBean bean = new TestBean(); public TestBean add(TestBean bean) { bean.setResult(bean.getI1() + bean.getI2()); return bean; } public ...

90. Getting Axis to publish a wsdl instead of generating it    coderanch.com

Can someone tell me how to have axis publish a wsdl instead of generating one? I have a top down service with a predefined wsdl that needs to be published. Although I used the predefined wsdl to generate my code for my service, when I request the wsdl from the service, there are some slight differences. I know jax-ws has a ...

91. Axis2 - WSDL to code    coderanch.com

I have started learning webservices development using Axis2. We need to follow the contract first approach. I have created this simple WSDL.

92. Exclude bean property in wsdl (axis 1.4)    coderanch.com

Hi, I have to write a new web service using axis 1.4 by using an existing bean with a new property - Integer companyId'. The existing bean is already been used by an existing web service deployed on production. How can I add a new property to this bean without changing the wsdl which would break the calls on the consumer ...

94. wsdd and wsdl in Axis    coderanch.com

I read some article and it says the standard way to expose a java code as a WS is: 1) create java code 2) run java2WSDL to create WSDL 3) rin WSDL2Java to create server/client code and deploy.wsdd and undeploy.wsdd Question: A) Then where does server-config.wsdd fit ? In which step is server-config.wsdl created ? B) I heard there are 2 ...

96. Axis2 POJO web service - wsdl generating xs:anyType    coderanch.com

Hi there. I can't figure out how to get my a simple Axis2 v1.5 POJO web service to work (Tomcat 6). Included is some simplified code below to see the "nested classes" - they are not internal classes. I'm not returning an Object anywhere, the Classes are defined. I initially had List members instead of using arrays thinking that may have ...

97. WSDL file with Axis2    coderanch.com

99. how do i make a field mandatory in my WSDL using axis2    coderanch.com

I am exposing a simple web service using axis 2. How do i make sure that the WSDL generates minOccurs=1 Lets say I have a method public String (string data1, String data2){ return (data1 + data2) } i want to make sure that data1 is mandatory and data2 is not. WSDL always generated it as minOccurs=0 on runtime in Axis 2. ...

100. WSDL 2.0 webservice with axis2    coderanch.com