Tagged Questions

Spring Web Services is a product of the Spring community focused on creating document-driven Web services. Spring Web Services aims to facilitate contract-first SOAP service development, allowing for the creation of flexible web services using one of the many ways to manipulate XML payloads.

learn more… | top users | synonyms

21
votes
6answers
11k views

Which framework is better CXF or Spring-WS?

I am in the process of researching/comparing CXF and Spring-WS for web services? I need to function both as a provider and a consumer of WS. In a nutshell, I have been told that Spring-WS is more ...
12
votes
3answers
804 views

How to use direct streaming for SOAP with Spring-WS?

We want to enable direct streaming of our payload in webservice endpoints. We have to process a large amount of data and want to stream the data while processing. We use spring-ws-core, in version ...
11
votes
1answer
255 views

Migration to Spring WS 2.0 failed due to lack of bean endpoint mapping?

We used the PayloadRootQNameEndpointMapping to map endpoint scripts (based on a scripting language like groovy or something else) to a given root QName. We recently tried to migrate spring ws to ...
10
votes
2answers
1k views

Decrypting Message with a Spring Web Service Client

350 Bounty and waffles to the person who can help me! I have been struggling with Spring Web Service encryption for days and I can't figure out how to get Spring's encryption on the message body to ...
8
votes
3answers
496 views

JAXB :Need Namespace Prefix to all the elements

I am Using Spring WebServiceTemplate to make webservice call which uses JAXB to generate request XML. My requirement needs all the elements (including root) to have a namespace prefix (there is only a ...
7
votes
4answers
1k views

Spring-ws -Problem request webservice from tomcat 6

I have implement a certain spring-ws service and when I sent a soap message I receive in spring webapplication 1 (running on tomcat 6.0.32): Request: <soapenv:Envelope ...
5
votes
2answers
3k views

JAXB + Spring WS : “No adapter for endpoint” while using JAXBElement

I have a web service that I am trying to implement using Spring and Jaxb. I already have a handful of working services using both of these - but this particular service is giving me a hard time due ...
5
votes
2answers
363 views

How to transform exceptions into return codes using Spring-WS?

I'm currently facing a problem with error codes and messages using Spring WS. We are using Spring WS 2.0 with a JAXB2 binding and the @Endpoint and @PayloadRoot annotations for convenience. Our ...
5
votes
1answer
795 views

Can I use Spring MVC and Spring WS in one single application?

Basically there is a back-end application that is exposing both SOAP as well as RESTful services. I have decided to use Spring WS 1.5.8 for SOAP services, and Spring MVC 3.0 for RESTful services as ...
5
votes
4answers
2k views

Using WebServiceTemplate with a keystore

Is it possible to configure a WebServiceTemplate with a java keystore? edit I'm looking for a way to configure the location of the keystore in the spring config
4
votes
2answers
447 views

How to set timeout in Spring WebServiceTemplate

I am using org.springframework.ws.client.core.WebServiceTemplate for making Web Service calls. How can i configure timeout for the call.
4
votes
4answers
2k views

Spring Web Services - Exception Skipping ExceptionResolver

I have a SOAP service, the request and responses work as expected with good input, if I specify bad input for an XML element in request body: ... ...
4
votes
2answers
706 views

Can Spring-WS 1.5 be used with Spring 3?

Spring-ws 1.5.9 depends on Spring 2.5 (based on the pom). Can it be used with Spring 3 without running into any classloading issues. I know that some of the packages match between the two, can I just ...
3
votes
1answer
61 views

JAXB 2 spring-ws 2.0.3.RELEASE SOAP Services Tutorial Link/Advice Request

I am trying to use JAXB 2 and spring-ws 2.0.3 to make a SOAP service on glassfish 3. I am having some problems with the xml file configurations because there is a ton of information (tutorials, ...
3
votes
1answer
467 views

How do I add an attachment to a response payload in Spring-WS?

I'm building a Web Services server that's designed to share content. I'd like to serve the content through a SOAP response containing an attachment. Right now, I'm using Spring WS to handle requests ...
3
votes
1answer
265 views

@PayloadRoot vs @Action vs @SoapAction in Spring-WS

Could someone explain why I would use one of these endpoint annotations over the other in spring-ws? In particular, which one would be considered the most inclusive? Can I use all three? I've read the ...
3
votes
1answer
447 views

Generating Spring WS Client from RPC/encoded WSDL with ease?

Greetings everyone, Prior to my specific question, I'd like to mention that I am not looking for a step by step solution but for a possible YES or NO whether or not I will be able to achieve my goal ...
3
votes
1answer
510 views

JAXB2 Mtom attachment broken by BOM

I'm using JAXB2 to to do OXM in a Spring-WS. The XSD I've specified requires a large XML file to be attached to the soap message so I'm using MTOM to transfer the file and have enabled MTOM on my ...
3
votes
1answer
270 views

Is it required to generate java classes to use spring-ws client

I want to use spring ws to create the webservice client. I have seen some documentation. In all using jaxb marshalling and unmarshalling. But to start of need to create java classes from xsd. I tried ...
3
votes
1answer
148 views

Is it common practice to specify security policy info in the WSDL?

Our team is implementing SOAP-based web services using Spring-WS and XWSS. So far we've been relying on Spring-WS to generate the WSDL from our XSDs. We're now considering whether to document the ...
3
votes
2answers
2k views

Example on Web Service Consumption using Spring if provided a WSDL

Hi Im a newbie to Spring WebServices. I would like to go through a standard example wherein the WSDL is provided as input from Provider. Now how will the client code for this WSDL looks like. Do we ...
3
votes
2answers
1k views

Add SoapHeader to org.springframework.ws.WebServiceMessage

How can I add an object into the soap header of a org.springframework.ws.WebServiceMessage This is the structure I'm looking to end up with: <soap:Header> <credentials ...
3
votes
1answer
3k views

Stream MTOM Web Services in Spring Web Services Framework

I would like to send large files from the server to the client using MTOM and Spring WS. I realize that this isn't the best approach for this type of thing, but it's a requirement. I have MTOM set up ...
2
votes
1answer
35 views

How can I use an alternative XML parser with Weblogic and Spring-ws?

I'm using WebServiceGatewaySupport to implement a SOAP client. As part of those SOAP calls I'm implementing my own org.springframework.ws.client.core.SourceExtractor to map the returned XML to my ...
2
votes
2answers
103 views

Spring-WS and “Error attempting to save SOAPPart”

I have a few web services on a Weblogic 10 server. Each of these is part of a larger system. Running locally and on our qa environment the system works flawless, replies fast, and as expected. ...
2
votes
2answers
161 views

Spring Web-Service unmarshalling not working

I have configured my WebService like this: applicationContext: <sws:annotation-driven /> <bean ...
2
votes
1answer
78 views

Debugging Spring-WS request from MessageDispatcher to Endpoint?

Is there a way to debug step-by-step what happens on a web service request in Spring-WS from the time the request is sent to the MessageDispatcher until it reaches my Endpoint (including ...
2
votes
1answer
173 views

How to set Jaxb2Marshaller list of XmlAdapters in Spring bean through XML?

I'm trying to define a Jaxb2Marshaller bean in Spring-WS to use a custom adapter that extends XmlAdapter. I have the following in an XML file: <bean id="jaxb2Marshaller" ...
2
votes
1answer
47 views

How to ignore base64binary fields when logging SOAP messages?

I am using Spring's SoapEnvelopeLoggingInterceptor to log SOAP requests/responses. Some of the requests/responses contains base64Binary fields which takes up a lot of space in the log files and I ...
2
votes
1answer
91 views

generating code from XSD

I am using JAXB plugin to generated java code from XSD. One element is any: <xs:complexType name="element"> <xs:sequence> <xs:any processContents="lax" ...
2
votes
3answers
259 views

Is there a built-in Spring environment variable for the web context root?

I'm using Spring Web Services to expose a service as a web service. In my spring configuration xml file, I have a bean which is an instance of DefaultWsdl11Definition. One of the properties that ...
2
votes
1answer
98 views

extracting the complete envelope xml from MessageContext

I have an interceptor like this: public class WebServiceInterceptor extends EndpointInterceptorAdapter { @Inject private Jaxb2Marshaller myJaxb2Marshaller; @Inject private WebServiceHistoryDao ...
2
votes
1answer
415 views

spring-ws: getting an EchoEndpoint to work, not return 404

The short version: My Spring-WS SOAP EchoEndpoint responds 404 whenever I try to access it. Please help, I've spent two days trying to get it to work correctly. :-I Longer version: I've got a Spring ...
2
votes
2answers
479 views

Spring WS 2.0.2 : Using StAX with @Endpoint

I'm trying to use StAX with Spring WS 2.0.2 but I'm not having any luck getting it working. I found an example online here but it uses AbstractStaxStreamPayloadEndpoint which is now deprecated in ...
2
votes
2answers
582 views

Spring 3 (SWS2): difference between <context:component-scan> and <sws:annotation-driven>

When trying a simple Web Service Hello World example with just one @Endpoint annotated class, the Endpoint is not registered when using the <sws:annotation-driven/> namespace. However, by ...
2
votes
1answer
579 views

@PayloadRoot value when using Objects and not schema xml

I'm using Objects as messages from client to service server. How should the endpoint be configured so that the service would be found? @PayloadRoot seems unfitting here because i don't use xml schema ...
2
votes
1answer
239 views

PayloadRootAnnotationMethodEndpointMapping not working

I have my POJO annotated with @Endpoint and @Payloadroot and I have PayloadRootAnnotationMethodEndpointMapping in by spring configuration file but I am getting error "no adapter found".
2
votes
3answers
143 views

Xml configuration in spring

How is it that when I add a namespace in spring bean configuration file I am able to reduce xml configuration considerably? For example: <beans xmlns="http://www.springframework.org/schema/beans" ...
2
votes
1answer
376 views

which spring ws jaxb annotation to change xml element name

I am using a sping ws endpoint with jaxb marshalling/unmarshalling to proudce a list of Organisation objects (our local type). The endpoint is SOAP 1.1, no parameters supplied on the request message. ...
2
votes
1answer
765 views

Access web service::schema issue

I have Spring Web Service based on tutorial example. That configured in this way @Endpoint public class HolidayEndpoint { @PayloadRoot(namespace = NAMESPACE_URI, localPart = "HolidayRequest") public ...
2
votes
1answer
147 views

What is Spring Webservice version to use for Spring 2.0.7

Is Spring Webservices (Spring WS) supported by Spring 2.0.7? If so what is the version for Spring WS to use? If not what is spring version i need to upgrate with out much changes of my code. Please ...
2
votes
1answer
215 views

How can I pass through the 'webservice credentials' to my webservice endpoint?

I have a PayloadRootQNameEndpointMapping, with the Wss4jSecurityInterceptor and a custom CallbackHandler which does the authentication for me. The requirement now is to pass through the webservice ...
2
votes
1answer
2k views

How to create custom soap fault message using spring web service

I'm trying to write a web service using spring web service library. I'm able to configure my endpoints successfully and it is working fine, but I'm facing some issues with the exception mappings. I'm ...
2
votes
2answers
459 views

Spring returning custom soap faults

I am using spring webservices to expose my services as web services. I defined my Soap fault element like this <xsd:element name="systemFault"> <xsd:complexType> ...
2
votes
1answer
349 views

Spring ws - AxiomSoapMessage & attachment with MTOM are inline

im trying to understand how the AxiomSoapMessageFactory handles request (the body & attachment) but i dont understand some points (or they are maybe features) i 'm using AxioSoapMessageFactory ...
2
votes
2answers
906 views

How to access HTTP headers in Spring-ws endpoint?

How can I access HTTP headers in Spring-ws endpoint? My code looks like this: public class MyEndpoint extends AbstractMarshallingPayloadEndpoint { protected Object invokeInternal(Object arg) ...
2
votes
1answer
340 views

Spring-WS and Straight-JPA (EclipseLink) Configuration and Deployment

I've implemented an EJB3 / JPA web service without any major problems, and now I've moved on a Spring-WS/JPA web service. Both are being deployed to Glassfish. My understanding of JPA is limited, but ...
2
votes
2answers
426 views

JAX-WS return empty lists

I'm new in web services. I have faced some problem. At the server side i'm using spring-ws. At the client side i'm using jax-ws. With wsimport tool i have generated java classes according to my wsdl. ...
2
votes
2answers
760 views

thread safety when using spring WebServiceTemplate and Jaxb2Marshaller

I am using spring WebServiceTemplate as a web service client programmatically i.e. without instantiating a spring container. I am using Jaxb2Marshaller for marshaling/unmarshaling. In my application, ...
2
votes
1answer
459 views

Spring WS Osgi samples

We are currently researching OSGI at work and I need to provide a proof of concept on its use with spring dm and spring-ws in the appropriate application server(tomcat / jetty).Does anyone have a ...

1 2 3 4 5