JAX-WS is the JSR 224 defining a Java API for XML-Based Web Services

learn more… | top users | synonyms (1)

20
votes
3answers
742 views

How to reduce memory size of Apache CXF client stub objects?

My web service client application uses Apache CXF to generate client stubs for talking to several web services. The generated CXF web service stub objects have quite a large memory footprint (10 - 15 ...
18
votes
6answers
20k views

setProperty must be overridden by all subclasses of SOAPMessage

I'm trying to deploy some web services in a WAR application on JBoss 5.1.0. I have created the source files from an existing wsdl using JAX-WS tool wsgen. This created the Service files and @XmlType ...
15
votes
2answers
13k views

java: Rpc/encoded wsdls are not supported in JAXWS 2.0

I'm using CXF 2.1 to generate java code from a wsdl, but I'm getting the following error: WSDLToJava Error: Rpc/encoded wsdls are not supported in JAXWS 2.0 ...
12
votes
3answers
247 views

Thread.sleep() in an EJB

I know that messing with threads inside an EJB is a big no-no, but I would just like to ask for advice on how handle this case. My EJB is calling an external Web service which may sometimes return a ...
12
votes
3answers
409 views

WebServices security with SAML (SSO) - How to?

The Problem: I want to implement a set of Webservices, protected with SAML. I need to authenticate the users, and also need to authorize based on the user role. I found some questions similar to this ...
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 ...
11
votes
7answers
11k 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 ...
10
votes
8answers
12k views

RMI vs. Web Services. What's best for Java2Java remoting?

I'm new to both Web Services and RMI and I wonder which is the better way to do remoting between different web applications, when these applications are all written in Java, that is when different ...
9
votes
4answers
367 views

Java: JAX-WS Mapping

I am using JAX-WS for web services. Whenever I use a char as a method parameter, I am getting it as an unsignedShort in the xsd (Focus on weatherLetter). Here is the declaration: @WebMethod public ...
9
votes
1answer
738 views

WSContext.getUserPrincipal() returns null for password digest authentication

In my WebService I need to log the caller's id, but wsContext.getUserPrincipal() returns null even though the user was authenticated using WS-Security with password authentication. According to the ...
8
votes
1answer
266 views

Sign JAX-WS SOAP request

I would like to write a JAX-WS web service that signs my SOAP messages using the http://www.w3.org/TR/xmldsig-core/ recommendation. With what I found on the internet I wrote a JAX-WS handler ...
8
votes
3answers
745 views

Save File to Sharepoint Server using JAX-WS

I'm trying to save a file to a Sharepoint server using JAX-WS. The web service call is reporting a success, but the file doesn't show up. I used this command (from a WinXP) to generate the Java code ...
8
votes
1answer
12k views

How to change webservice url endpoint?

I generated a web-service client using JBoss utils (JAX-WS compatible) using Eclipse 'web service client from a wsdl'. So, the only thing I provided was a url to a web-service WSDL. Now, the web ...
7
votes
2answers
181 views

How to define a global JAX-WS MessageHandler that intercepts all services in a transparent way?

We have a set of web services implemented in JAX-WS and a SOAPHandler that adds control attributes in the SOAP headers. Today, we need to add the @HandlerChain annotation in every new service we ...
7
votes
1answer
683 views

Error enabling SpringBeanAutowiringSupport within a JAX-WS web service

I am trying to enable Spring autowiring support in my webservice, following the lines of public class MyService extends SpringBeanAutowiringSupport implements SomeInterface { private Dao dao; ...
7
votes
1answer
341 views

Combined JAX-RS and JAX-WS

Is there a framework, library or technique that combines JAX-RS and JAX-WS (or equivalent functionality) into one combined service in a similar way to using two endpoints (one SOAP and one REST) for ...
7
votes
1answer
1k views

Are JAX-WS clients thread safe?

Because the initialization of the WS client side port is so costly we would like to reuse the same instance. We would also like to set different values in the BindingProvider/RequestContext before ...
7
votes
2answers
5k views

JAX-WS vs. JAX-RPC

I wrote 2 webservices, one with Jax-WS and one with Jax-RPC. They just return a String. I stress-tested both with jMeter and, strangely, thereby Jax-RPC was a bit faster. When do I really profit of ...
7
votes
3answers
6k views

How can I make a WebMethod parameter required

We use the "start from Java" approach to creating JAX-WS 2.0 web services using the Metro 1.5 stack. When we point a standard tool like SoapUI at one of our web services it indicates that parameters ...
7
votes
2answers
2k views

Any way to generate WSDL documentation from Javadoc with JAX-WS?

I'm hoping that an extension of some kind is available that does this (although I suppose that my hope is foolishly optimistic). /** * <p> * Gets the {@link ResultObject} given the ...
6
votes
4answers
720 views

Java: Is there a way of changing the received HTTP Response headers?

I'm using a JAX-WS generated client (using wsimport, the one bundled with Glassfish 2.1.1) to connect to a ASP.NET generated WebService running in a IIS 6. When I request compression in the response ...
6
votes
2answers
1k views

JAX-WS and Joda-Time?

How do I write a JAX-WS service so the @WebParam of my @WebMethod is a Joda-Time class like DateTime? Will @XmlTypeAdapter on a parameter work? I'm deploying to GlassFish 2.1. Let me clarify the ...
6
votes
2answers
6k views

jax-ws client : what's the correct path to access the local wsdl?

i suppose this is a trivial question but after spending a lot of time on trying all the paths i've given up . The problem is i need to build a web service client from a file i'm been provided. I've ...
6
votes
3answers
2k views

How to get the source of request from Web Service?

I want to get <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prin="http://localhost/example"> <soapenv:Header/> ...
6
votes
6answers
6k views

Tracing XML request/responses with JAX-WS

Is there an easy way (aka: not using a proxy) to get access to the raw request/response XML for a webservice published with JAX-WS reference implementation (the one included in JDK 1.5 and better) ? ...
6
votes
1answer
2k views

Marshalling polymorphic objects in JAX-WS

I'm creating a JAX-WS type webservice, with operations that return an object WebServiceReply. The class WebServiceReply itself contains a field of type Object. The individual operations would populate ...
6
votes
3answers
23k views

How do I add a SOAP Header using Java JAX-WS

A typical SOAP client request using JAX-WS might be FooService service = new FooService(); FooPort port = service.getFooPort(); FooPayload payload = new FooPayload(); payload.setHatSize(3); ...
6
votes
2answers
10k views

How can I access the ServletContext from within a JAX-WS web service?

I want to share an object between my servlets and my webservice (JAX-WS) by storing it as a servlet context attribute. But how can I retrieve the servlet context from a web service?
5
votes
0answers
174 views

Marshalling enum attributes into XML using JAXB and JAXWS Annotations

Let's say we have the following Java 1.5 enumeration: import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; ...
5
votes
2answers
380 views

Two classes have the same XML type name “objectFactory”

We have been using JAXB 2.1 for a long time in our system. We have a platform that is built with Ant and generates a bunch of bundles that are deployed in an OSGi runtime. We use Java SE 6. We use ...
5
votes
3answers
312 views

CXF and Google Guice using JAX-RS + JAX-WS

I would like to integrate CXF with Google Guice. I am already using Guice in my project and I want to avoid adding extra dependencies. CXF was my choice because one of the requirements is to be able ...
5
votes
2answers
1k views

What's wrong with my Apache CXF client?

This is part of my pom.xml: <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> ...
5
votes
1answer
185 views

Unmarshal generates null field on generic with a List<T> field

I have a Web Service created in Java (1.6), with metro (2.0), using maven, under Tomcat 6. In all web methods the return type is a generic class: public class WsResult<T> { protected T ...
5
votes
1answer
656 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
2k views

JAXB generated classes serializable with JAX-WS binding

Having JAXB-RI and CXF. WSDL first. I want a generated class of mine to implement Serializable. I now have the following binding xml, which works (the SEI class name gets changed) <jaxws:bindings ...
5
votes
1answer
636 views

Get attachments from a JAX-WS WebService with a JAX-RPC Client

As we migrate from JAX-RPC to JAX-WS I'm trying to Call a WebService, which uses JAX-W/JAXB. The client itself is still using JAX-RPC. The WSDL File is kept the same. This works fine, as long, as ...
5
votes
1answer
517 views

Publishing multiple ports with one service using JAX-WS 2.0 and @WebService

I want to create a SOAP service with multiple port types exposed, where each port type has a separate interface. I'm trying to do this using JAX-WS 2.0. Example: interface A: ObjectA get(String ...
5
votes
2answers
776 views

How to write web services in java

Though this might appear as a duplicate of Java Web Services , I would like to know Where to start and to continue.In the past, I have invested so much of time to find where to start but I wasn't able ...
5
votes
3answers
2k views

Web service unit testing

I'm using JAX-WS web services (client and exposed services), is there any API to test these web services?
5
votes
1answer
11k views

JAX-WS - Adding SOAP Headers

I am trying to create a standalone client to consume some web services. I must add my username and password to the SOAP Header. I tried adding the credentials as follows: OTSWebSvcsService service = ...
5
votes
2answers
8k views

JAX-WS - Map Exceptions to faults

I am using JAX WS to expose a WebService. Some of the operations of this service can generate exceptions. Not internal server exceptions, but rather exceptions that are dependent on the input ...
5
votes
3answers
2k views

How to pick CXF over Metro on Glassfish

I'm having the following problem (reported there by someone else) when running my enterprise application under Glassfish. Under Jetty it works fine. javax/xml/ws/spi/Provider mentions creating a ...
5
votes
1answer
2k views

How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?

I have a JAXB class like this: public class Game { private Date startTime; @XmlElement public Date getStartTime() { return startTime; } public void setStartTime(Date ...
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 ...
5
votes
3answers
15k views

JAX-WS and BASIC authentication, when user names and passwords are in a database

I'm new to JAX-WS and there's a thing which I don't understand. There's a ton of tutorials available on how to set up JAX-WS security, but in pretty much all cases BindingProvider.USERNAME_PROPERTY ...
5
votes
3answers
3k views

How can you pipe an OutputStream to a StreamingDataHandler?

I've got a Java web service in JAX-WS that returns an OutputStream from another method. I can't seem to figure out how to stream the OutputStream into the returned DataHandler any other way than to ...
5
votes
4answers
5k views

How can I access the ApplicationContext from within a JAX-WS web service?

Similar to How can I access the ServletContext from within a JAX-WS web service?, is there a way to access applicationContext, easier than this? import javax.annotation.Resource; import ...
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
1answer
208 views

Can I create a generic web service/dispatch method that responds to ALL requests with JAX-WS?

I'm trying to create a generic web service that will always respond with "OK", regardless of the request's header or body contents. I can do this in Axis2 with a RawXMLInOutMessageReceiver, but I'd ...
4
votes
2answers
278 views

Getting soap message without invoking web service

Using Glassfish Metro implementation of JAX-WS specification, is it possible to generate SOAP request message for specific operation without actually invoking the operation. Something like SOAPUI ...

1 2 3 4 5 21