Tagged Questions
1
vote
0answers
17 views
JAX-WS web-service defined by WSDL with abstract global elements
Here is a WSDL containing abstract global element named paramName:
<wsdl:definitions name="AdapterSessionManagerService" targetNamespace="http://companyname.org/" ...
1
vote
0answers
13 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, ...
1
vote
0answers
46 views
SOAP response object parameters not populated
OK, so i'm developing both client and service app. Web Service is JAX-WS, and client is C#.
Here is request envelope:
<s:Envelope xmlns:a="http://www.w3.org/2005/08/addressing" ...
0
votes
1answer
37 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
14 views
Uncomplete class definition in the wsdl file/page/site
I have simple web service based on jax-ws. It has a method, let's say getUser, which returns the object of the User class, e.g.:
public class User {
//...
private String id;
public String ...
5
votes
2answers
154 views
JAX-WS duplicates complex type when generating wsdl
I'm developing a web service with several methods taking as input identical complex data types. The data types have JAXB annotations and setters and getters, and the web service class has JAX-WS ...
1
vote
2answers
108 views
JAX-WS has XSD schema in different URL
I made a small web service using JAX-WS. The WSDL file has TYPES element like this.
<types>
<xsd:schema>
<xsd:import namespace="http://ws.poc.mawia/" ...
1
vote
1answer
59 views
Multiple web-service names pointing to the same implementation
Using @WebService annotation it is possible to publish a stateless EJB bean as a web-service. However, is there a way to publish several web-services all having the same implementing class without ...
1
vote
1answer
212 views
Auto-generate web-service JAX-WS from WSDL
I have to create a web service equal to an existing one. The WSDL must be the same because they do not want to change the client. How can I do this?
Also, how I can do with JAX-WS with Maven?
1
vote
0answers
98 views
java.util.Date property rendered as xs:string in xsd using JAX-WS (Apache CXF / Metro)
I generated some model classes based on a WSDL using apache cxf. I then added a jaxb bindingfile to convert all xs:dateTime and xs:date elements to java.util.date (instead of the default ...
0
votes
1answer
73 views
JAX-WS port from WSDL
I have a JAX-WS imported WSDL client. When I try to connect to webservice endpoint, the JAX-WS client tries to load WSDL. Why that? I dont want to store the WSDL in my project, I dont want to load ...
1
vote
1answer
168 views
jaxws wsdl parsing issues
I have a WebService which is created using JAX-WS, I've written a JUnit to connect to it in the following manner:
public class LicenseSvcClient {
private static final String WS_URL = ...
1
vote
1answer
109 views
Add default namespace to an element within soap body
I have generated a web-service client (JAX-WS) and model from wsdl and xsd. I have problem with namespaces within soap body.
Lets assume we have two classes:
@XmlRootElement(namespace="aNamespace") ...
0
votes
0answers
168 views
Web Service (JAX-WS,SOAP) WSDL Structure Design
This is a bit of an open ended question and quite a bit of text but hang on with me.
First a little bit of background. For a last year I have been writing web services. I started with zero knowledge ...
0
votes
1answer
68 views
Jax-ws multiple webservices
Originally I was sent one wsdl from a 3rd party and chose jax-ws for the solution. I soon realized that the webservice did not contain all the functions, when I asked about it I was sent 4 more ...
1
vote
2answers
62 views
Java web service - when to use XmlAttribute?
Having a halo class with fields like that:
private String description; // a lot of text
private long price;
private int count;
.. I found that for price and count @XmlAttribute was used, but not ...
0
votes
0answers
100 views
Public JAX-WS (JAVA Web Service)
I want to consume JAVA Web Services (JAX-WS) through C#.Net.
Can you please provide me any JAVA Web Service which is publicly available.
I got few .Net Web Services like ...
0
votes
1answer
250 views
Making a web service request parameter a required field
The is code first approach to Jax-WS web service.
@WebService (serviceName = "MyInstallPhotoService")
@SOAPBinding(style=SOAPBinding.Style.DOCUMENT, use=SOAPBinding.Use.LITERAL, ...
0
votes
0answers
114 views
Very slow connection to wsdl web service
I am new to Java programming. i have a web client that consumes wsdl service and i could get the connection established successfully. I could even get the response from the web service, but the ...
1
vote
1answer
224 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 ...
1
vote
1answer
48 views
Change message name
Here is the part of my WSDL. I'm using the code first approach.
<portType name="MyWebService">
<operation name="echoString"/>
<input message="echoString"/>
...
1
vote
1answer
236 views
Soap Client in Perl with authentication for wsdl web service
I am trying to make SOAP client in perl for JAX-WS web service with authentication. I am able to communicate with a service without authentication. But when I try to communicate with the actual web ...
1
vote
1answer
82 views
XML sequence with JAX-WS
Is there any way to make default WSDL being generated by JAX-WS (returned via ?wsdl) to use XML choice instead of any and sequence?
0
votes
0answers
74 views
Override WSDL returned via ?wsdl in JAX-WS
Can I override WSDL being returned by ?wsdl?
Looks like wsdlLocation can serve the purpose. According to multiple examples, I can write something like WEB-INF/wsdl/DSystemWS.wsdl. It simply doesn't ...
0
votes
0answers
93 views
Webservices / dynamic class generation / flow
My question probably sounds all wrong since I'm not sure what to ask exactly. I'm very new to web services in general but get a very high level idea. I'm looking at some code where the classes/methods ...
2
votes
1answer
722 views
jaxws-maven-plugin resolving WSDL location relative to class location, why?
I'm using the jaxws-maven-plugin version 2.1. I've found out very strange code generated for WSDL location from jar resources:
<configuration>
...
3
votes
0answers
105 views
How does CXF translate WSDL's localhost to actual server URL?
All WSDLs I have seen so far, use localhost to describe the services address. e.g.:
<wsdl:service name="SQLService">
<wsdl:port name="SQLServiceSoap" binding="tns:SQLServiceSoap">
...
0
votes
0answers
93 views
Identifying ServiceInterface in a wsdl
I'm trying to create a client using SpringMVC from WSDL Service endpoint I have defined in jax-ws.xml like this:
<bean id="userAdminWebService" ...
0
votes
1answer
200 views
cxf-java2ws-plugin and jaxb annotated classes
I'm trying to generate wsdl from java.
The plugin generates schema information for those classes included in the same project but seems not for classes in dependency packages.
<xs:element ...
1
vote
1answer
73 views
jaxws multple webservices single wsdl
I have created to Java objects and add the necessary @WebService annotations, etc. and I can view the wsdls for each on their seperate urls.
I was hoping to combine the two services into a single ...
0
votes
0answers
231 views
Jax-ws object marshalling pass parameter
I have a java code as follows:
private static SendSMSOutput sendSMS(tr.com.SomeProvider.sdp.mapping.generated.SendSMSInput requestPart) {
tr.com.SomeProvider.sdp.wsdl.generated.SendMessage ...
2
votes
0answers
137 views
xsd restrictions not reflected in WSDL
The generated WSDL at deploy time from my JAX-WS service does not reflect the restrictions specified in the associated XMLSchema .xsd file, although the generated Java class files do. I am using xjc ...
4
votes
1answer
331 views
missing prefix in soap request using jax-ws
In a Java project I created a webservice client using jax-ws and a wsdl. The request is valid xml but missing a prefix which is needed in this specific soap call. Currently I solve this by manually ...
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
1answer
618 views
How to generate WSDL 2.0 with JAX-WS
This questions may be silly but I haven't found a way to get a WSDL 2.0 generated by a JAX-WS RI Web service.
I've been using the latest jax-ws version and if I create a very simple WS (such as the ...
1
vote
0answers
95 views
Got Permission denied: connect while opening stream
I have a strange behaviour with a java client that uses webservice stubs generated by wsimport.
The client says sth about
Got Permission denied: connect while opening stream from ...
0
votes
0answers
104 views
SOAP “An Xml document must have a top leve element. Error processing resource http://127.0.0.1:2989/wse/wsdl/soap_…”
I deployed war file to tomcat7 server and it was succesfully deployed. But when I'm trying to call webservice method I got this error: "An Xml document must have a top leve element. Error processing ...
1
vote
1answer
187 views
JAX-WS and java generics
I want to generate a webservice in a bottom up approach but it does not work properly with generics.
I have a few classes which looks like these and can hardly be modified (maybe some annotations) :
...
1
vote
1answer
473 views
How to view WSDL on a JAX-WS web service running under Glassfish?
How can I view the WSDL of my JAX-WS web service if I'm running it under Glassfish? I know I can generate the WSDL file using wsgen, but I'm want to know if I can have a runtime WSDL on Glassfish?
...
1
vote
1answer
269 views
Delegate Axis2 WSDL generation to the JAX-WS RI?
I have a very simple JAX-WS + JAXB SOAP service that I am, by nature of my employment, forced to deploy via Axis2.
If I take my JAXB classes and my service class, and deploy them via the JAX-WS ...
2
votes
1answer
3k views
Generating JAX-WS client stubs for JAX-RPC web service?
Will I be able to connect to a JAX-RPC web service using a JAX-WS (wsimport) generated client stub? What are the effects of consuming a JAX-RPC web service using a JAX-WS client? Are there any ...
6
votes
2answers
935 views
Code generated by wsimport - best practice for packing the code
I have a question regarding generating Java artifacts with wsimport tool (by Maven Jax-WS )
When I generate the Java artifacts from WSDL, I would like to pack the web service project as a WAR file, ...
2
votes
1answer
1k views
Why classes generated by wsimport requires JAXBElement<ClassName> parameters?
I have a WSDL file which is from an Axis2 Web Service. When I generate a client stub using wsimport given the WSDL file, the resulting classes require JAXBElement paramaters. Why is it like that?
...
0
votes
0answers
156 views
Hiding WSDL in JAX-WS
I'm, using JAX-WS in order to build and deploy web-services.
Everything is working properly, however I need to hide the WSDL. In other words, If the user goes to the following URL: ...
1
vote
1answer
374 views
jaxb-generate classes from wsdl ,each schema classes should go to corrsponding package
i have one wsdl file which have schhemas included in it, i want to generate java classes for each schema in different package,please help me.
i have used following code,its generating classes ...
0
votes
1answer
386 views
Could not find wsdlLocation in additional metadatafiles
I have jax-ws web service (jboss implementation) configured with annotation.
@WebService([...], wsdlLocation = "/WEB-INF/wsdl/service.wsdl")
The wsld file is included into war file. The war file is ...
0
votes
3answers
3k views
javax.xml.ws.WebServiceException: Failed to access the WSDL. Response: '401: Unauthorized'
I am trying to access a web service for a project i'm working on. I'm using JAX-WS and the app is deployed on weblogic. When i'm trying to access the WS, i get the following exception:
...
0
votes
1answer
258 views
Deploy Web Service with a different URL
I try to deploy a Web-service on Glassfish. Everything works fine. The web-service use a befor defined WSDL File i do this with Annotation:
@WebService(serviceName = "Daten", portName = "DatenSOAP", ...
2
votes
0answers
227 views
SOAP Faults - Integrating .NET WCF and Java WSImport
I'm looking for help/advice on defining SOAP faults the correct way when creating a web service with .NET WCF and consuming it with JAX-WS (wsimport).
Let's assume my service looks like this:
...
0
votes
0answers
142 views
How to prevent JAX-WS generated code?
In JAXB, it is possible to prevent the generation of classes by adding a custom binding such as the following:
<jaxb:bindings schemaLocation="mySchema.xsd" node="/xsd:schema">
...
