WSDL2Java is a JAX-RPC tool that is run against the WSDL file to create Java APIs and deployment descriptor templates according to these specifications.

learn more… | top users | synonyms

1
vote
2answers
33 views

axis2 fails to generate java from wsdl with inline schema

I want to generate Java classes from a WSDL. I'm invoking wsdl2java from within an ant task. The commandline would look like this: java -cp ... org.apache.axis2.wsdl.WSDL2Java -o generated_dir -S . ...
0
votes
1answer
18 views

Ant Build Issue: NoClassDefFoundError

I'm new to Ant and this application. I'm not able to decode this error message. C:\Eclipse\sources_int\external-sources>ant netstudy-generate-client Buildfile: ...
0
votes
1answer
49 views

Client classes generated by cxf-codegen-plugin:wsdl2java missing Policies attached in WSDL

I used cxf-codegen-plugin to generate client classes: <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-codegen-plugin</artifactId> ...
0
votes
0answers
11 views

Working with the Coverity with AXIS and Java

How can i create a web-service client for accessing the coverity webservices with java. I don't know where to start. The coverity web-services are deployed in AXIS i think. How can i work with the ...
1
vote
1answer
29 views

Cannot create Stubs in java for svc service created in .net

Just some Help me please, I used WSDL2java jar to generate Stubs. String[] params = new String[] {"-v", "-D", "-oD:\\today", "http://app.dotnetethic.com/UserService.svc?singleWsdl" }; ...
0
votes
0answers
9 views

Generate Session beans and entity beans from WSDL

I have a WSDL file describing a web service and the associated XSD files describing the inputs/outputs of its operations. I would like to generate a an EJB application to use this web service. Thus I ...
1
vote
0answers
18 views

Usage of Jibx2WSDL to generate wsdl from java

I'm using jibx2wsdl plugin to convert wsdl from java. But for java collection list, i am getting same name for all the lists. Everytime i generate jibx i manually rename the lists. Is there a ...
1
vote
1answer
31 views

mustUnderstand Attribute not just set to false.

I have done a ton of research and cant find anything that specifically fixes my problem. I generated my SOAP client with wsdl2java, The problem is that my envelope, when sent out, creates attributes ...
1
vote
0answers
133 views

Pass a HashMap<String,Object> over SOAP using JAXB

I am trying to pass a Hashmap over SOAP. I am using CXF wsdl2java to create my schema. And I have created a wrapper class for my HashMap since Hashmap itself cannot be passed over the line. I have ...
0
votes
1answer
171 views

generating stubs from wsdl using axis 2 for client

I am a new bie to the world of webservices , I have to develop the client side code that is the java code,I have been provided a wsdl which I can see by opening that wsdl in the browser , As i have ...
1
vote
0answers
68 views

org.apache.axis.wsdl.toJava.DuplicateFileException: Duplicate file name:

I am trying to create client project from WSDL file using Axis 1.4 (I don't have other choices, even cannot use Axis 2) and getting following error. Can any one suggest me how can I resolve it? The ...
0
votes
1answer
79 views

Axis 1.4.1 wsdl2Java Locator classes

I spend a good amount of time on rest services but not so much on SOAP services. So this might be a stupid question, but i am going to ask it anyway. I am building my wsdl files with wsdl2java (axis ...
0
votes
0answers
37 views

axis2 wsdl2java with castor databinding

I am upgrading an axis 1.4 web service which was implemented using castor databinding to axis 2.0 web service. The download the latest axis. It has an example for castor databinding in ...
0
votes
0answers
191 views

Initiating java web service client passing local WSDL file with relative path to XSD in schemaLocation

I have WSDL and XSD files stored localy. Using CXF (wsdl2java tool) - I have generated client service classes. To service class constructor I pass local path to WSDL file like this: ...
0
votes
0answers
152 views

How to use Annox to Add @XmlRootElement When Generating JAXB Model from WSDL?

I have the following WSDL <?xml version='1.0' encoding='UTF-8'?> <wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
0answers
42 views

Accessing service layer From Axis2 Web Service

I have an axis2 web service deployed as an AAR file in tomcat axis2. In the initially phases of the project we created a dummy (with limited test data) web service server and client code using axis ...
0
votes
1answer
75 views

Amazon API SOAP code generation from WSDL, Intellij

I generated Java code from the Amazon WSDL found here in Intellij. It appeared to have worked great. However, as I followed the tutorial found on this page I encountered a problem. The last line of ...
0
votes
1answer
184 views

axis2 error creating java code from wsdl

i have to create a client for a given wsdl ... <?xml version="1.0" encoding="UTF-8"?><wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
0answers
55 views

How do I read an attachment from a service generated by cxf and WSDLtoJAVA

I was given a wsdl by a client from which I've generated a service and related classes. The expected attachment is a PDF. This is the structure of the response from their service: ...
0
votes
0answers
135 views

org.apache.axis2.AxisFault: unknown on connecting to web service from client

I am running into 'org.apache.axis2.AxisFault: unknown' exceptions when connecting to a web service from client stub. This is an axis 2 web service. Client and server side stubs were generated by ...
0
votes
1answer
125 views

Using axis 1.4 on server side and axis 2.0 on client side

I have a wsdl and xsd to create a web service. I am planning to use axis's wsdltojava to generate the stub and skeleton. The server side Axis is on 1.4 version and client side Axis is on version 2.0. ...
0
votes
1answer
283 views

Creating web service (not web service client) from WSDL file

I have a requirement, according to which i have to create an Axis2 Web service based on a wsdl file. I already got the wsdl file. I have been using wsdl2java earlier to create web service client but i ...
0
votes
1answer
87 views

Can't generate java classes from wsdl using wsdl2java

I have the this wsdl document generated from a .NET application using StackService. I'm using Apache CXF in order to get some generated java classes. I'm running the following command (windows): ...
0
votes
1answer
228 views

Using Maven and Apache CXF code-gen with different endpoints in testing and production

I have a Java web project that consumes a web service, using Apache CXF to generate the underlying code, based on the WSDL published by the service. I have a test version of the service for ...
0
votes
0answers
45 views

Fully qualified class name while using exceptionSuper argument in CXF Wsdl2Java utilty

This is related to this question and the subsequent patch applied to cxf . When using a WSDL-first approach to generate java stubs, is there a way to make exceptions extend RuntimeException instead ...
0
votes
2answers
246 views

wsdl2java error on generating the java classes

I'm trying to write a java SOAP client for a PHP SOAP server. For an easier start I would like to generate the java classes via wsdl2java, but unfortunately I'm getting the following error from ...
0
votes
1answer
168 views

JAX-WS nillable schema validation for string does not seem to work

I have java code generated by apache CXF wsdl2java tool. I turn on schema validation by setting: <jaxws:properties> <entry key="schema-validation-enabled" value="true" /> ...
0
votes
1answer
206 views

Generating a web service server implementation using wsdl2java in CXF

Background : I have prior experience working on consuming Apache CXF web services but I am a bit new to generating a service endpoint interface (SEI) and a service implementation using the wsdl2java ...
0
votes
0answers
163 views

wsdl2Java issue: Cannot find dispatch method for

I am learning java web services and using apache cxf and have a problem with getting the client to run after running wsdl2java -all. I have been running it with java instead of ant. If I use ant the ...
3
votes
1answer
272 views

Generating WSDL2Java from Maven with CXF

For e.g. I have cxf-codegen-plugin like this: <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-codegen-plugin</artifactId> ...
1
vote
0answers
64 views

maven plugins conflict

I am a newbie to maven. I have two maven plugins in my maven project, when I do generate sources one of them generates sources all the time (jaxb2-maven-plugin) but other doesn't (wsdl2java) generate ...
0
votes
0answers
102 views

Java Axis2 1.5.5 Transport NullPointerException

I have a working Axis2 web service and a wsdl2java generated client. When debugging the service gets called, the service returnes the correct data, but then the following error occurs (with full ...
0
votes
0answers
117 views

WSDL2java -d jibx -Ebindingfile refuses to find mapping

I figure there's a 90% chance I'm blind and that this will turn out to be something silly, but can anyone identify what I've done wrong here? I ran $AXIS2_HOME/bin/wsdl2java.sh -uri ...
0
votes
1answer
225 views

How to parse a WSDL file to extract the contents of a particular node

Here is a part of my wsdl file: <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" ...
0
votes
1answer
78 views

Is there tool similar to CXF wsdl2java can generate client code for aegis?

CXF wsdl2java tool can generate client code which databinding is jaxb. It seems wsdl2java can not generate aegis code. Is there a similar tool can generate client code for aegis?
0
votes
0answers
111 views

Service Proxy not generated in wsdl2java in axis.jar

I am using JAX-RPC for some maintenance work in our existing application. When I generate the Webservice Client using Eclipse IDE, I used to get a Serviceproxy class generated. Today I had to ...
0
votes
0answers
59 views

Axis2 wsdl2java bean generation

Web Service uses bean classes in a jar. When client generated from wsdl2java bean classes generated which implements org.apache.axis2.databinding.ADBBean class. Is it possible to client methods use ...
1
vote
1answer
533 views

Create Java class from WSDL

I am trying to create a Java class from WSDL with maven cxf-codegen-plugin, but when I try to do it, it just shows an error and no generated classes. I can't understand why I have this error, my pom ...
0
votes
1answer
260 views

Axis 2 can't see JAVA_HOME on my Mac (soapUI and wsdl2java)

Question : Why can Axis 2 not see where Java home is? Have I set it incorrectly? Summary : I'm attempting to use Axis 2 with soapUI to generate Java objects from a wsdl on my Mac. However, I get the ...
0
votes
0answers
142 views

WSDL2java not generating JAXBElement as expected

I have a base schema base.xsd and it defines my element with nillable=true: <xs:element name="occurrenceNumber" type="xs:int" nillable="true" /> then in the sub.xsd this element gets ...
0
votes
0answers
14 views

Force invoke() in axis generated code

We have fixed WSDL file (I don't want to modify it) with operations without output (response message). Axis has generated stubs with invokeOneWay() method, however such method does not throw any ...
0
votes
0answers
139 views

Caused by: java.lang.NoSuchMethodException: CXF WSDL

I get the below exception (method is not found) though I have a service(DeliverMessageCallbackService) class which implements the method deliverMessage(), I'm not sure what is hapenning. Caused by: ...
0
votes
2answers
270 views

How WSDLToJava in cxf works?

'org.apache.cxf.tools.wsdlto.WSDLToJava' converts wsdl to java classes. Is it using JAXB internally?How come this command is able to generate classes like how 'xjc' creates?Can somebody explain me ...
1
vote
1answer
74 views

How to document a web service API?

I have a problem with documenting my web service API. It is written in Java, then I use java2wsdl go generate wsdl file, etc. How do I create a documentation for this? I need some documentation that ...
0
votes
1answer
501 views

Use Apache CXF wsdl2java to generate classes with full constructors

Is there a way to configure Apache CXF wsdl2java to generate a constructor with all of a classes fields in it? Right now only the empty default constructor is generated as well as void returning ...
1
vote
1answer
288 views

Unable to execute wsdl2java with maven

I want to execute wsdl2java with maven but I have the following build failure : [INFO] --- maven-dependency-plugin:2.1:copy (default) @ mogopay --- [INFO] Configured Artifact: ...
0
votes
0answers
421 views

Where to set username and password in a Web Service client?

I was provided this WSDL, and I have to develop a client for it (I've been making questions here about it lol). <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions ...
0
votes
0answers
66 views

Exception: org.xml.sax.SAXException: Found instance data for {urn:ManterFornecedor}Create in the soap:body instead of the soap:header

I was provided a WSDL and asked to create a client for it. I installed tomcat, eclipse and axis2 and am trying the basics first. In eclipse, I right-clicked the WDSL and followed: New > Other > Web ...
0
votes
0answers
102 views

Axis WSDL2Java generates wrong datatype for some parameters

While generating the stubs using WSDL2Java ,the field in wsdl file , an int type , becomes type short in the stub file. Has anyone seen this before ?? Is there any known workaround for this. ...
0
votes
1answer
390 views

cxf-jaxws-wsdl2java-BottomUp approach

I have a wsdl file with me now. Using cxf 's 'wsdl2java' command,i convert wsdl to java classes. How I can have my own implementation classes for the interfaces generated after wsdl to java ...

1 2 3 4 5 6