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

1
vote
0answers
33 views

WSDL with the same operation name and input type produce incorrect client stubs?

I have a WSDL file with the same operation name and request parameter name. When I generated the client stubs using the WSDL file, the port class produces a method with void return type. Furthermore, ...
0
votes
0answers
24 views

wsimport error duplicate class generation error

I tried to generate classes from wsdl using wsimport command of below from commandline. But, getting the errors. **C:\Users\Miky\Desktop>wsimport -keep -s generator Awsdl.wsdl ...
0
votes
1answer
41 views

Generation JAVA classes from wsdl in runtime

my problem in calling wsimport from JAVA code. I have maven project and I need to authomatically call wsimport and get calling's result (it very important). I found only one way to call wsimport from ...
0
votes
0answers
23 views

how remove tag request generated from wsimport?

I need to remove a tag from request generated by wsimport. In the SOAP UI I have this xml request (i commented this tag for it work </get:l7OrderId-->): <get:GetFAOpenBalanceRequest> ...
0
votes
1answer
64 views

jaxws-maven-plugin and proxy exclusions

I use jaxws-maven-plugin to produce java from wsdl. wsdl located in local network, but refers to some xsd in internet. It becomes troubles in generation code with maven plugin, becouse it has lack of ...
0
votes
1answer
48 views

How to Ignore wsit-client.xml when calling web service if exists

The application I am working on calls many webservice. Just recently I have intergrated another web service that requires wsit-client.xml for Soap authentication. That is working now but all the ...
0
votes
0answers
52 views

wsimport : unable to rename the package name

I've a wsdl at an address like https://mycompany.com/mywspath/Documents.svc?wsdl It seems that xsd is visible at https://mycompany.com/mywspath/Documents.svc?wsdl&xsd=xsd0 giving a wsimport ...
0
votes
0answers
81 views

maven wsimport using wsdl from another project

I have a webapp server project which has a webservice implemented with jaxws. The POM specifies the plugin to execute wsgen which creates the wsdl files in target/jaxws/wsgen/wsdl I also have a swt ...
0
votes
1answer
93 views

jaxb binding customization without having xsd

I've a wsdl (I dont have the .xsd file) and I want to generate the classes from it. Using wsimport I get a tree of classes that is the standard mapping of the webservice schemas itself and of its ...
1
vote
1answer
175 views

wsimport: multiple wsdl overwrite ObjectFactory

I have multiple (let's say 2, A and B) webservices and I need to generate a client to use them togheter. In Netbeans I use the wizard "new Web Service Client" passing the two wsdl, looking at the ...
0
votes
1answer
272 views

Ant wsimport task failing

I have a simple ant script to build my classes from a sdl. Unfortunately wsimport fails immediately. I suspect it has something to do with classpaths. <taskdef name="wsimport" ...
0
votes
0answers
26 views

How to fix wsimport bad_certificate

When i run wsimport -s src -b bin https:// exampleWSDL I get the following error [ERROR] Received fatal alert: bad_certificate. How do I solve this I added the certificate to the jvm sercurity lib. ...
0
votes
0answers
235 views

JAXWS wsimport catalog to resolve “element” already defined Error

We are trying to consume a web service which is hosted by the third party. When I tried to generate the artifcats & JAXB classes using wsimport, I ran in to following errors. Please note that ...
1
vote
0answers
417 views

how to get maven-jaxws-plugin to generate @XmlElementWrapper on classes generated from xsd?

I am using maven-jaxws-plugin to generate java classes from my wsdl, schema. It is not generating the @XmlElementWrapper annotation in the generated classes. From this post I understand I nedd to ...
3
votes
2answers
763 views

Applying external JAXB binding file to schema elements imported from WSDL

The XPath expression in my external binding files can't target the elements in my XML schemas which are imported into my WSDL. Everything runs if I do inline binding customization but I really wanted ...
0
votes
0answers
787 views

JAX WS com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport error: java.net.ConnectException: Connection refused

I am new to JAX-WS. I am trying to access a web service on a remote machine within the company. I used wsimport tool to generate JAVA classes from the WSDL resource which is present on our intranet. ...
1
vote
1answer
203 views

wsimport with http:binding

I have following binding and service elements in my wsdl: <wsdl:binding name="MyServiceSOAP11Binding" type="impl:MyServicePortType"> <soap:binding ...
1
vote
1answer
236 views

What does wsimport do with jax-ws-catalog.xml?

All of the documentation I've found online about wsimport seems to be a little vague about one aspect of using a catalog file (jax-ws-catalog.xml). My question is: When I generate a web service ...
0
votes
1answer
260 views

wsimport and WSDL with duplicate variables

I'm trying to run wsimport against a WSDL file that I cannot modify. A portion of the WSDL looks like this: <xsd:complexType name="Bapiitemex"> <xsd:sequence> <xsd:element ...
0
votes
1answer
154 views

wsimport generated SOAP client, any chance to look at resulting XML for request/response?

I have a set of java classes generated by wsimport utility from WSDL. (client) Is there a (simple, not involving sniffers and own replication of server) way to look at generated XML which is sent? I ...
0
votes
0answers
91 views

wsimport not generating package-info for enums

I have a WSDL file that imports external schema : <schema> <import schemaLocation="http://localhost:8080/xxxxxxxx_webservices/services/DiagnosisService?xsd=5" ...
0
votes
1answer
463 views

Cannot run program “wsimport”: CreateProcess in eclipse

This question is for java web service beginners. If you are facing issue to make build or for generating Client code in web service. So I would like to suggest you follow bellow steps:- 1) ...
0
votes
1answer
828 views

wsimport from https: [ERROR] java.security.cert.CertificateException: No subject alternative names present

I'm trying to generate a webservice client using wsimport from https wsdl: call wsimport -d bin -s src -p mypackage.ws https://x.x.x.x:8181/services/SomeService?wsdl For solving security errors I ...
0
votes
1answer
149 views

Name Collision In Wsimport Generated Class And My Original Web Service Class

I have a simple web service class defined as follows: package com.me.basiccalcws; import javax.jws.WebService; @WebService public class Calculator { public int add(int a, int b) { ...
0
votes
2answers
647 views

Generate Wsdl/Client Stubs For Web Service

I have been doing some reading up on web services programming with Java, Eclipse, etc. and I found one particular example where the person created the web service and client by doing the following: ...
0
votes
0answers
133 views

wsimport classpath

My projects are built via maven and I am experimenting with wsimport to create jax-ws service endpoint (using native java 1.6 update 33) to calling external soap services. My initial tests were ...
1
vote
1answer
75 views

What is the default binding of wsimport?

I used wsimport to generate my client stubs. My code for wsimport is like this: wsimport -wsdllocation webservice.wsdl -keep webservice.wsdl -B-XautoNameResolution What binding do I use? Am I using ...
0
votes
1answer
116 views

JAX-WS generate a WS client with protected or private constructor

I am using JAX-WS to generate my jar client for some webservices. Anyone knows if is possible to generate the webservices client using jax-ws with protected or private constructor? I am using maven ...
0
votes
0answers
199 views

javax.xml.ws.Service.getPort throws exception

I am very new to java and am trying to call a WCF web service from a java client. I have successfully generated the classes from the wsdl using wsimport and have coded a test client. All goes well ...
0
votes
1answer
166 views

Why does wsimport have trouble with server object having @XmlRootElement annotation?

I was completing work on a web service using JAX-WS on the server side. In many of the domain objects I used @XmlRootElement to help facilitate the unmarshaling of XML files into the service using ...
0
votes
0answers
34 views

JAX-WS generate serializer class instead of annotations

I'm newbie in generating java files from wsdl. My question is how to generate separated Test_LiteralSerializer.class postfixed files instead of generate only Test.class with annotated methods and ...
0
votes
1answer
159 views

Calling local service from Applet

From everything i ve read, an applet can call any service provided by its own server. Thats why i wrote and started a service(in netbeans) and i can see it in my browser ...
0
votes
0answers
70 views

Reusing Web Service classes in client

Basic idea: I have 2 servers. Each one has web service and data collection servlet. Servlet in server A collects data from web service in server B and vice versa. Now I do "wsimport", and use ...
0
votes
0answers
183 views

Jboss exception : javax.xml.soap.SOAPException: Unsupported content type: text/plain. Response: Internal Server Error/500

when I try to make request to a webservice I got the following error: java.io.IOException:Could not transmit message org.jboss.remoting.CannotConnectException: Can not connect http client invoker. ...
0
votes
0answers
132 views

wsimport with SOCKS proxy

We are developing a JAXWS client for a 3rd party WCF web service. The JAXWS client is going to be part of large web based application that would be deployed on tomcat. Not all servers in our env are ...
4
votes
2answers
1k views

JAX-WS error on WSDL file: “Error resolving component 's:schema'”

The Error I am using wsimport in a Java project to generate sources for three SOAP web services. The first two work fine: I use the JAX-WS Maven plugin to grab the WSDL file and generate ...
1
vote
0answers
374 views

getting XML Catalog to work with wsimport. JAX-WS RI 2.1.6 in JDK 6

I have not had problems with xjc or tools like oxygen and eclipse xml plugin with my catalogs, but can't seem to find a flavor that works with the wsimport command. Using the namespace for ...
1
vote
1answer
148 views

wsimport generate a client with cookies

I'm generating a client for a SOAP 1.2 service using wsimport from the jaxws-maven-plugin in maven with the following execution: <groupId>org.jvnet.jax-ws-commons</groupId> ...
0
votes
0answers
193 views

wsimport generates code with fixed URL addresses

I am writing a client to an existing SOAP web service. I have generated the stubs using the wsimport utility against the WSDL file of an instance of the service running in my Tomcat. The problem is, ...
0
votes
0answers
106 views

How evoke OSB Proxy from C# and Java

I strictly followed chapter 2 of "Oracle SOA Suite 11g R1 Developer's Guide" from author "Antony Reynolds". Basically the chapter guided me to this steps: I created BPEL Process in JDevelop and I ...
2
votes
1answer
871 views

XSD and WSDL in different directories

At my work used jaxws-maven-plugin for code generation. I have two projects are "common" and'' client ". Structure roughly as follows: app/   common/    resource/     some.xsd   client/    ...
0
votes
0answers
198 views

SOAP Web Service Client not working when generated with wsimport

This question is similar to this but not the same. I have to call an external axis web service from my client webapp running in Jboss 5.1 The problem is that with the files generated using wsimport ...
0
votes
1answer
793 views

What should I do to handle WebServiceException:

I have a web service deployed on localhost. I generated the stubs using the wsimport command on the deployment server. I then used the generated stub in my client using the following code: ...
0
votes
1answer
178 views

wsimport generating enum types incorrectly with extra underscore

I am using wsimport to generate my JAX-WS client from a WSDL file (which is also generated), and am having a problem where it is generating an enumeration on the client side that does not match the ...
0
votes
1answer
560 views

wsdl with conflicting xsd imports

I tried to find a solution for some time to the following problem. I have a wsdl file containing several (6) xsd imports. I cannot change these xsd's because they are external to my project. There are ...
2
votes
0answers
133 views

Eclipse Indigo and m2e and wsimport goal. how to generate ws files in this year 2012

Hello Good People!! am part of a team building a jsp/j2ee webapp. i decided to use STS 2.9.2 based on eclipse Indigo as opposed to every other person in the group as they all use netbeans .Every ...
0
votes
0answers
186 views

How to correctly use jax-ws-catalog in order to modify enpoints urls?

I'm trying to use catalog facilities to deploy a webservice client. According to the official documentation , I created a file jax-ws-catalog.xml as following <?xml version="1.0" ...
2
votes
0answers
671 views

WSDL customization: XMLGregorianCalender to java.util.Date

I have several wsdl files almost hundreds. Whenever I create client jaxb client classes for them the Jaxb automatically maps all the date/time fields to XMLGregorianCalender. After a lot of googling, ...
1
vote
1answer
254 views

How do create enum with Eclipse XSD editor

I'm creating an XSD for common web service types that will be used in WSDLs. One of the common types I need is an enum. My problem is when I execute wsimport the artifact generated is a class not ...
0
votes
0answers
800 views

WSDL works in Soap UI but not JAX-WS( wsimport)

WSDL works in Soap UI but not JAX-WS( wsimport) I Used wsimport to generate client stub from wsdl and I am getting following exception when invoking method on webservice. Strange part is that WSDL ...

1 2 3 4