Tagged Questions
WSDL2Java command is run against the WSDL file to create Java APIs and deployment descriptor templates according to these specifications.
52
votes
8answers
73k views
Access restriction on class due to restriction on required library rt.jar?
I'm attempting to compile Java 1.4 code that was created by IBM's WSDL2Java on Java5 without recreating the stubs and saw this error in Eclipse. I'm under the assumption that the stubs created should ...
12
votes
3answers
7k views
Java Webservice Client (Best way)
I have a third party WSDL, I need to write code in JAVA for a web service client to invoke the operations in the third party WSDL. Right now, I have generated the client stub using the WSDL2JAVA tool ...
7
votes
3answers
423 views
Error in publishing Web service
I have a WSDL file from which I have created Server Side Code Skeleton. Now after modification of these skeleton Java classes I have deleted the WSDL file from the project folder. Now, I am trying to ...
5
votes
5answers
9k views
Axis2's wsdl2java fails on RPC/Encoded style web services
Is there any alternative to Axis2? Or the way to make it work (different data binding, for example)?
Retrieving document at '...'.
Exception in thread "main" ...
4
votes
2answers
130 views
How is build-wsdl2java.xml generated?
I've inherited the code base for a Java application which talks to a few SOAP web services. Proxy classes to do this are generated using an ANT task calling wsdl2java. As my Java experience is quite ...
4
votes
3answers
73 views
Integer to int using jaxb
I have a weird situation where the getter in a class returns a primitive int type, and the setter takes a Integer class.
When jaxb unmarshals an element to this class, it cannot find the setter it is ...
4
votes
2answers
3k views
How to use Axis WSDL2Java generated files?
I generated Java files from WSDL with WSDL2Java converter, but I don't know how can I use service with these files, because there are no examples. I'm implementing client side.
3
votes
2answers
411 views
Not able to generate the stubs/java skeletons from the WSDL
I have written a WSDL to generate the Stubs and skeleton but my skeletons are not getting generated in the eclipse. I am using Helios version of Eclipse.
Can any one tell what is the issue with WSDL?
...
3
votes
2answers
717 views
CXF Wsdl2Java Best Practice
I'm currently using cxf 2.4.0 and my code is a caller to a webservice. I was able to generate the client side java files using the cxf plugin in Maven. My question is what is the best practice for ...
3
votes
1answer
520 views
How to debug Wsdl2Java Jaxb error “declarations cause a collision”
I have a wsdl that was generated by .NET that I am trying to consume in a java application. To do this, I am trying to use the CXF Wsdl2Java tool. The problem is that when the tool runs, it throws a ...
3
votes
2answers
929 views
Two classes have the same xml type name
When I try to publish my Workspace in RAD, I get this error "Two classes have the same xml type name", probably because the same class name exists in the same package, but in two different jars. And ...
3
votes
1answer
696 views
CXF: How to change package of WSDL imported XML Schema using JAXB external binding file?
I have a WSDL file which imports several XML Schemas, each of them having the same namespace (let's call it A). I'm trying to use a JAXB external binding file to change the generated package name (to ...
3
votes
1answer
330 views
Axis WSDL2Java generated code: Server Error when performing requests in quick succession
I have been provided with a 3rd party wsdl and a deployment descriptor etc for custom encryption for an Axis web service. I used WSDL2Java to generate the java classes and it all works pretty well... ...
3
votes
1answer
239 views
Where should you put XSD documentation in order for JAXB to pick them up and put them in Javadoc?
I am developing a contract first webservice and wish to include the appropriate documentation in the schema so that it is as self descriptive as possible.
What is the best practice to put XSD ...
3
votes
2answers
323 views
Skip maven2 plugin by default
I am looking for a way to not have a plugin execute on install. More specifically, my scenario is as follows:
I am using org.apache.cxf:cxf-codegen-plugin to generate source code.
Every time I ...
3
votes
1answer
3k views
How do I add a namespace reference to a SOAP response with Apache Axis2 and WSDL2Java
I'm looking at the SOAP output from a web service I'm developing, and I noticed something curious:
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
...
2
votes
0answers
658 views
Is there any Apache Axis WSDL2Java jar file for Eclipse Indigo
Is there any separate org.apache.axis.wsdl2java jar file for Eclipse Indigo version because its not worked in indigo version shows error like:
The selected wizard could not be started.
Plug-in ...
2
votes
0answers
89 views
Does Apache CXF support “output only” services? If so, how do you get wsdl2java to handle it?
While using Apache CXF, I'd like to define a port type like this:
<wsdl:portType name="CustomerNotificationPort">
<wsdl:operation name="changeNotification">
<wsdl:output ...
2
votes
1answer
607 views
Axis2 generated Stubs are thread-safe?
Are the Stubs generated by WSDL2JAVA (using XMLBeans binding option) through Axis2 1.5.4 thread-safe?
Actually I have created one Stub for a Web Service that I am invoking through multiple threads. ...
2
votes
0answers
166 views
Can ApacheCXF generate full constructors when using the cxf-codegen-plugin for Maven?
I generate server/client from my wsdl/xsd's using the cxf-codegen-plugin for Maven. All the types created have default no-arg-constructors, which makes them a pain to work with.
Is there any way to ...
2
votes
1answer
755 views
Bundling wsdl in jar with CXF wsdl2java
I'm working on an implementation that will use a wsdl that I have gotten from a vendor. Our project is running on Spring and CXF, and I'd like to create a jar that will allow me to access this ...
2
votes
0answers
209 views
How to get rid of cos-nonambig schema error while generating java source from wsdl with cxf 2.2.12
Hi I have a problem while generating source code from this wsdl https://mollusk.atollon.com//scheduler.wsdl . My question is:
is it possible to get rid of the cos-nonambig error and generate source ...
2
votes
3answers
3k views
How to avoid the need to specify the WSDL location in a CXF or JAX-WS generated webservice client?
When I generate a webservice client using wsdl2java from CXF (which generates something similar to wsimport), via maven, my services starts with codes like this:
@WebServiceClient(name = ...
2
votes
3answers
444 views
Stub files using a WSDL file in j2me
Is it possible to generate stub files using a "WSDL" file?
I know how to generate stub files using wscompiler in j2me.
I have a wsdl file is it possible to create stub files using it?
I am using ...
2
votes
1answer
1k views
Writing WSDL file to existing web service
I need to write a WSDL file to an existing web service which is provided to me by a colleague (it's realized with Perl and SOAP::Lite). Therefore, I have a given format for the SOAP-response and need ...
2
votes
1answer
233 views
Namespace repeated in all nodes using axis2 and java2wdsl
I am using eclipse and axis2 1.4.1 facet to generate a webservice.
My problem is that in the generation process, the namespaces are being repeated in all nodes. As you can see below, ns4 is repeated ...
2
votes
3answers
795 views
Code generation from WSDL using XML Catalog
Is there any tool for generating Java code from WSDL using XML Catalogs? The problem is that I have wsdl files that import XML schemas which also import other schemas and the schemas are not available ...
2
votes
1answer
147 views
tell wsdl2java not to generate code if file is not modified since last code was generated
basically i am using ant to generate webservice client and server stubs. We don't change wsdl as frequently as our java code. But since wsdl2java generated code is always new, javac target always ...
2
votes
1answer
1k views
NTLM authentication using CXF wsdl2java stubs
I have a web service protected by HTTPS with NTLM authentication and I generated a set of java stubs using CXF's wsdl2java tool by temporarily disabling authentication. I am now attempting to use the ...
2
votes
3answers
3k views
CXF maven plugin generate classes in wrong directory
I'm using maven cxf-codegen-plugin to generate java web service files from wsdl.
The plugin works fine if I'm trying to generate the files in the default output directory
...
2
votes
1answer
1k views
HOWTO override Axis2 request headers for .NET web service?
I have to use a 3rd party web service implemented in .NET 2.0 (on IIS, of course).
I have to make a java client. I am using wsdl2java to generate the SOAP stub.
As the original Apache Axis project ...
1
vote
0answers
40 views
Old Version of Commons-HttpClient gives IOException in the Axis2 Web Service Client
I am using a wsdl2java generated web service client for the axis2 web service (axis2 version is 1.6.1). So for http connection the old version of commons-httpclient 3.1 is used. While doing some load ...
1
vote
0answers
39 views
Generating missing Webservice Proxy Class
We are using axis webservices in our projects.
Up to now we generated our webservice clients within Eclipse. We choose New -> Other -> Web Services -> Web Service Client. Afterwards we ...
1
vote
0answers
67 views
change package of generated jaxb class
I have the following data type defined in a wsdl:
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="myService" targetNamespace="http://example.com" ...
1
vote
1answer
52 views
What is role of <service-name>SoapBindingImpl.java file
When we use -s option while generating stubs using wsdl2java(apache axis) tool it generates <service-name>SoapBindingImpl.java file.
This file contains all the method definition.
What is use ...
1
vote
1answer
40 views
Invalid RESTful WSDL v2.0 from .Net 4.0 Framework
I created a couple of WCF services. One very robust one that can accept both SOAP and RESTful requests, and provide XML and JSON responses.
--EDIT: FYI: Enabling an SOAP endpoint to accept a ...
1
vote
1answer
94 views
Web service with no input params
I need to create a web service method which is not supposed to take any params. I'm using jax-ws and apache xref for generation Java sources from wsdl. I cannot omit input message (an error occurs). ...
1
vote
1answer
172 views
Microsoft webservice and CXF client: JAXB fails to understand “s:schema”
I have ordinary Microsoft webservice and normal CXF of latest version with Java/JDK 1.6, Eclipse etc. When I am running wsdl2java, the JAXB part throws an error
"Thrown by JAXB: undefined element ...
1
vote
1answer
264 views
Adding custom Soap Header to Webservice Request
i have generated stub for a webserivce using apache axis2 and i want to add custom soap header to the request i want soap header to look like this
<soapenv:Header ...
1
vote
1answer
109 views
Code signature and steps to write public static void main(String args[] )
Using WSDL2Java the "WeatherService" WSDL to Client side code is generated successfully.
In which java file and methods should be used for the main class be written to access the and execute the ...
1
vote
3answers
191 views
Scala equivalent to wsdl2java?
Is ther any equivalent to wsdl2java that will take a WSDL file and generate scala stubs for the server and/or client?
I googled, but either there isn't or my google-fu is weak.
1
vote
1answer
559 views
cxf-codegen-plugin keeps giving me “Failed to generate types” error message
Hoping for some feedback on this issue that has been troubling for a while.
I use maven for building a simple web services client application.
It uses several wsdls ( around 8 ) the wsdls have xsd ...
1
vote
1answer
231 views
Using wsdl2java to generate stub with PROPER async support
Lets say I have a service with ONLY one method: int generateRandomNumbers().
Is is possible to use wsdl2java to generate a stub with proper async support?
For example, the generated class should has ...
1
vote
1answer
154 views
Axis Marshaller
I have a group of classes that were created using wsdl2java (Axis 1.4) and am looking for a way to unmarshal and marshal the data from/to String and Object. I have written a JAXB unmarshaller that ...
1
vote
1answer
122 views
Axis generates all classes but not Axis2?
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 ...
1
vote
2answers
661 views
Code generation from WSDL causes exception
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"?>
...
1
vote
2answers
2k views
Set Java Compliance Level in CXF wsdl2java
I’m brand new to CXF and am trying to create a client from WSDL. I have used Metro and Axis in the past. I downloaded apache-cxf-2.3.3 and used wsdl2java to generate the client stubs. I use Maven ...
1
vote
0answers
373 views
JaxWsDynamicClientFactory.newInstance().createClient() and wsdl2Java inconsistencies
So I'm trying to use JaxWsDynamicClientFactory to dynamically create the SEI classes. Running the below code
JaxWsDynamicClientFactory def = JaxWsDynamicClientFactory.newInstance();
...
1
vote
0answers
526 views
javax.xml.ws.WebServiceException: Port {http://tempuri.org/}WSHttpBinding_IDWService not found
I'm trying to consume a webservice in java, using a client generated from the wsdl file with wsdl2java.
I'm using Eclipse version Helios and jdk 1.6.0_20, and I've generated the .class files using ...
1
vote
2answers
418 views
WSDL2JAVA does not generate setter methods
Has anyone come across this? Basically I switched from the SUN jre to IBM's and compilation fails due to wsdl2java not having compiled the necessary setter methods.
Thanks in advance.