Tagged Questions

wsimport is a command-line tool to generate client and service artifacts from WSDL. The utility is part of the JAX-WS standard and began shipping with the Java platform starting with version 6.

learn more… | top users | synonyms

11
votes
7answers
12k views

JAX-WS Loading WSDL from jar

I'm writing a fat client that makes use of a SOAP service for some features (bug reporting etc.) I've got JAX-WS working fine, but by default (in netbeans at least) it fetches the WSDL from the ...
8
votes
2answers
5k views

Get rid of JAXBElement in classes generated by wsimport called from ant

I have the following problem: I'm using the wsimport ant task to create a webservice client (for salesforce.com). Everything's working fine but the generated classes all use this strange JAXBElement ...
6
votes
2answers
945 views

No enums generated by jax-ws ri 2.2.1 for amazon ecs wsdl file

I'm attempting to generate artifacts for the following amazon wsdl: http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl using the following ant task: <taskdef ...
5
votes
1answer
660 views

Checked exceptions hierarchy in WebServices using JAX-WS Maven Plugin (wsimport)

I'm working on a project where we want to use checked exceptions to notify user of (for example) wrong input or wrong action taken. Such exceptions should have hierarchy such as: public abstract ...
5
votes
2answers
1k views

“Portable” JAX-WS client

I deployed a JAX-WS Service and use wsimport to generate client code. Because I run wsimport on localhost, I got the client code with binind on "localhost" address. But I want to reuse those client ...
4
votes
2answers
1k views

Changing the URL on a webservice client generated with wsimport

I am trying to write a module for a Java application that accesses a WSDL-described webservice. The source WSDL was downloaded straight from what I believe to be an ASP.NET webservice; the service ...
4
votes
2answers
4k views

Problem generating Java SOAP web services client with JDK tool wsimport from a WSDL generated by a .NET 2.0 application

I'm trying to generate a client for some SOAP web services using the JDK 6 tool wsimport. The WSDL was generated by a .NET 2.0 application. For .NET 3.X applications, it works fine. When I run ...
3
votes
1answer
762 views

Replacing XmlType.namespace using jaxb bindings during type generation

My web-services application is moving from Axis to JAX-WS and I'm having trouble doing some of the conversions. My primary issue is that I have several XSD's with the same types defined slightly ...
3
votes
1answer
139 views

Rename all the exception classes who are generated with wsimport

When a generate my code with wsimport using a .net wsdl I've got extreme long exception classes like [servicename][operationname]FaultFaultFaultMessage. I know how to rename each single exception but ...
2
votes
0answers
67 views

How do you transform a Point[] to ArrayOfPoint in Java?

I am importing a wsdl file using wsimport from a .net service and getting ArrayOfXXX. What is the recommended way of converting from java collections to these objects? Take a Position object ...
2
votes
3answers
222 views

wsimport - how to generate service endpoint classes and JAXB classes in seperate projects/folders

We are using top-down approach for a project with multiple web services (multiple wsdl's). Each web service needs to be setup as a seperate project and deployed as a seperate war. However the ...
2
votes
1answer
164 views

wsimport forgets one proxy class

I use wsimport to generate the proxy classes from the WSDL file. Class A gets generated, but the class B which corresponds to the A's parameter for its constructor - not. What could be the reason for ...
2
votes
0answers
119 views

ws jaxb custom external mapping

I have to do custom JAXB external mapping file. Already red tutorial about this and can not find any suitable example of JAXB customization. My scenario is that I have two WSDL files main WSDL and ...
2
votes
1answer
196 views

How to generate a web service from a WSDL

I know this question has been asked a few times, but I checked the stackoverflow history/questions and it does not quite answer what I am trying to do. I have a WSDL. I want to generate a web service ...
2
votes
1answer
675 views

How can I use wsimport to generate a webservice client which wsdl requires authentication?

I'm trying to generate a webservice client using wsimport, but the wsdl requires authentication. I'm using a command like this: wsimport https://username:password@url?wsdl But it doesn't work.
2
votes
1answer
388 views

java wsimport rename/different ObjectFactory.java

I'm having problem with wsimport. In one of my wsdl which has to be wsimported I have a complexType with name "objectFactory". Is there any way to tell command wsimport to create while importing ...
2
votes
2answers
1k views

Creating and using Webservices in same maven project

I'm trying to build a maven project, an OSGi bundle, which contains Webservices. I'm using JAX-WS with all the @WebService annotations to specify the webservices I have. To load these Webservices at a ...
2
votes
1answer
424 views

Comments in Enums imported from XSD by wsimport

is there a way to get comments from XSD to Java code using wsimport? For example, I have an XSD file <!-- Enumerace /model/user/UserLevel.java --> <xs:simpleType name="userLevel"> ...
2
votes
2answers
539 views

How to create folder for generated sources in Maven?

I have to generate sources using wsimport and i assume that it should go to /target/generated-sources/wsimport rather than /src/main/java. The problem is that wsimport needs target folder created ...
2
votes
1answer
695 views

wsimport - Imported schema with no namespace ==> package with name 'generated'

I created a Web Service which has a WSDL importing a schema(let's call it SCHEMA A) file which has no target namespace in it. It defines it's own types but also imports other schemas. So when the ...
2
votes
1answer
378 views

how to reconcile conflict between original and generated file within Java web services?

I have a legacy Java application that uses class mypackage.Foo. I would like that application to utilize a web service that returns instances of Foo. To connect to this web service, I use wsimport ...
1
vote
1answer
24 views

How to ignore BP1.1 compliance errors using wsimport?

I'm trying to import a WSDL using wsimport (JDK 6). This fails, however, telling me to: turn off BP 1.1 conformance warnings How can I configure these in wsimport? I've tried running wsimport ...
1
vote
0answers
32 views

JAX-WS - wsdl with operations or message that have a long parameter list

First of all, I would like to say that my English is poor, so I asked you sorry for that. So, I have a wsdl generated by wfc that have some methods/messages with too many parameters. When I used a ...
1
vote
0answers
89 views

What customization to apply for JAX-WS to unwrap objects to lists?

I am trying to find if there is a way to customize e.g. CSID2ExtRefs operation for ChemSpider WebService that is passed a list of strings as one of the arguments and returns the list of objects: ...
1
vote
1answer
167 views

wsimport not using complex input types

When I use wsimport to generate proxies for some services, the resulting method signature for each port does not seem to use the complex types specified in the WSDL; but yet I've noticed that with ...
1
vote
0answers
60 views

wsimport import fails with NCBI/Blast

I'm trying to generate the files handling the SOAP services documented here: http://www.ncbi.nlm.nih.gov/books/NBK55699/ But wsimport fails: $ wsimport -d generated ...
1
vote
0answers
69 views

JEE Webservices: Naming conflict

I'm trying to create Webservices proxies with wsimport, but I get an error because of a conflict. "Two declarations cause a collision in the ObjectFactory class." I've got two EJBs with Webservices ...
1
vote
0answers
238 views

wsimport doesnt generate code related to soap headers

I'm generating client java code from a wsdl using 'wsimport'. The wsdl has soap:header in the operation definitions like this <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions ...
1
vote
1answer
232 views

Can jaxb2-basics be configured to specify an interface for a type variable of a generic object?

I am using jax-ws's wsimport to generate java classes from WSDLs. I am using the jaxb2-basics plugin to create toString, equals, hashCode, copy, and merge methods. I would like for the generated ...
1
vote
0answers
286 views

Unable to create Web Service Client from WSDL URL in NetBeans

I'm trying to create a Web Service Client using the option WSDL URL in NetBeans IDE 7.0. Unfortunately, it is not able to create one and is failing with the following error: Saxon cannot write a ...
1
vote
2answers
473 views

How to customize the schema inlined inside an imported WSDL

I have a.wsdl & b.wsdl where a.wsdl imports b.wsdl. Now I have to customize the schema inside b.wsdl using wsimport and JAXB. but using below customization is giving error that "XPath evaluation ...
1
vote
1answer
364 views

java wsimport problem with wsdl (jax-ws)

Can someone help me what is wrong with WSDL file. wsimport -d test uri_to_my_wsdl parsing WSDL... [WARNING] src-resolve: Cannot resolve the name 'ns1:HeaderType' to a(n) 'type definition' ...
1
vote
0answers
90 views

Generate Response as List<ComplexObject> instead of ComplexObject

I am running wsimport to generate server-side skeleton code. For a response of such operation, I want to returnList<Item>, but the generated code return Item Here is the WSDL file: ...
1
vote
1answer
376 views

How can I tell wsimport that separate WSDL files are referring to the same object classes?

I have three different JAX-WS services which use the same classes on the server (e.g. ServiceA, ServiceB, and ServiceC, all of which use MyCommonClass as a parameter). Another module we are developing ...
1
vote
2answers
839 views

Combine JAXB and JAXWS for an imported XML Schema

How can I specify a JAXB Binding for an imported XSD within a WSDL when using wsimport? I tried following binding, which causes the error "XPath evaluation of //xs:element[@name='isFoobar'] results ...
1
vote
0answers
291 views

Collision in ObjectFactory of two things that should be only one

i am trying to do a wsimport (through netbeans 6.9.1) in a WSDL from a 3rd party, but it keeps generating this error in JAXB: Two declarations cause a collision in the ObjectFactory class. The ...
1
vote
1answer
1k views

How do I troubleshoot this wsimport error in NetBeans?

I'm using NetBeans 6.9.1 on Mac OS X 10.6.4 with Java 1.6.0_22. I have a web application that connects to an application server (GlassFish v3) via JAX-WS. During the "Clean and Build" process, ...
1
vote
2answers
371 views

WebService proxy classes

I have written a java webservice, deployed it on my tomcat and accessed the service WSDL via my webbrowser, all looks okay. The next step was to generate proxy class which can be used by client to ...
1
vote
1answer
2k views

need to use custom classes instead of generated (by wsimport) in web-services

Could you, please, help with the following issue? When generate WS client code (with wsimport ant task), all classes are generated automatically in the same package (e.g. helloservice.endpoint) as ...
1
vote
1answer
66 views

Accessing identical web services using the same client

I have some web services and I am creating a web client using ws-import. When creating the client I have this line: MyServiceService service = new MyServiceService(); It works fine as it is. I ...
1
vote
0answers
879 views

wsimport how to create web service client from WSDL for http:binding GET/POST

I have wsdl and I create classes with wsimport tool. Everything is going ok for SOAP messages but for http:binding GET/POST I get error. Part of the WSDL follows: <wsdl:binding ...
1
vote
2answers
355 views

Is there any JAX-WS implementation that support dynamic namespace in generated client?

I generated a JAX-WS client (proxy API) using JAXWS-RI wsimport.bat from a WSDL having as namespace "http://a.mydomain". I'd like to reuse the same generated proxy against a service having as ...
1
vote
1answer
3k views

wsimport “Cannot resolve the name…”

I've been trying to import the following web service: http://soap.genome.jp/KEGG.wsdl with ${JAVA_HOME}/bin/wsimport: wsimport -version JAX-WS RI 2.1.6 in JDK 6 but I got the following error: ...
1
vote
1answer
227 views

How to generate meaningful list names in JAX-WS web services

I have a schema with something along the lines of <xs:element ref="Item" minOccurs="0" maxOccurs="unbounded" /> and it is referenced in my wsdl. When I use wsimport to create java code, the ...
1
vote
2answers
3k views

Either WSDL or wsimport and wsdl (mono) are horribly broken

EDIT I started off with the example given below, but I have now: Tried the example from the W3C spec. After fixing another error (binding was called StockQuoteSoapBinding in one place, ...
0
votes
1answer
27 views

A WebService annotation is not present on class: java.net.URL

i generated a webservice client in netbeans(jdk1.6) and target client to jdk1.5.03. Then i moved all libs to jdk1.5 classpath and when i run WS Client, i got: ...
0
votes
0answers
54 views

Adding prefix for all package names while using wsimport ant task

I am using wsimport ant task to generate client codes. As known, the package names of auto-generated classes are determined according to the namespaces located in WSDL. I want to change these package ...
0
votes
1answer
65 views

Generating web service client in netbeans in web application using maven

I have a web application which has web services clients. When I right click on the client in netbeans I get option to edit web service attribute like below. When I add maven to the same ...
0
votes
0answers
26 views

How do I generate hashCode(), equals() with wsimport in websphere 8

Currently when I call wsimport in Websphere 8, it doesn't generate the hashCode() and equals() methods. How do I go about doing that?
0
votes
1answer
98 views

Send base64Binary SOAP parameter between Java client and PHP server

I have a PHP SOAP server (using nuSOAP with wsdl) that send the content of a html page. Of course, the HTML can be coded with differents encoding, but this parameter is base64Binary type in XML, and I ...

1 2