Top "Spring-ws" questions

Spring Web Services is a product of the Spring community focused on creating document-driven Web services.

Publishing Static WSDL and related XSD schemas using Spring WS

I have one module where I have my XSD schemas, where one schema can reference an other using relative path …

java spring xsd wsdl spring-ws
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 …

java spring spring-ws contextpath
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 …

java web-services jaxb spring-ws
Correctly testing a Spring service

The following test fails with a NullPointerException on the line usersRepo.save(user);. I believe it's because when the test …

java spring hibernate junit spring-ws
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 …

java spring http-headers spring-ws
Is it possible to create a WS-client from WSDL file using Spring-WS? (It seems not)

I'd like to know if it's possible to create Web Services client from a WSDL file using Spring Web Services. …

java spring wsdl spring-ws
Spring Web-Service unmarshalling not working

I have configured my WebService like this: applicationContext: <sws:annotation-driven /> <bean class="org.springframework.ws.server.endpoint.…

web-services spring spring-ws
How can a Spring Soap interceptor modify the contents of a message?

I'm trying to write an interceptor for a web service that will modify the contents of the Soap message before …

java web-services soap spring-ws
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 …

spring-mvc spring-ws
Spring Boot web service client authentication

My goal is to call web service, which is require authentification (when I opne it's wsdl in my browser, browser …

spring web-services spring-boot spring-ws