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

0
votes
1answer
18 views

Wss4jSecurityInterceptor not decrypting reply

I have a web service client implemented in Spring-ws, using a Wss4jSecurityInterceptor for ws-security. Calling the endpoint works, data is encrypted, signed and sent, but when the reply is received ...
0
votes
0answers
37 views

Removing namespace prefix in the output of Spring WS web service

I have created web service using Spring-WS. When I send a request to the web service, this is the response I get in soap-ui: enter code here <SOAP-ENV:Envelope ...
0
votes
0answers
22 views

Running Spring WS Samples on github results in maven errors

I'm trying to run the mtom example on spring-ws: https://github.com/poutsma/spring-ws/tree/master/samples/mtom under the server directory when I run mvm:jetty run I get the following error: [ERROR] ...
0
votes
1answer
33 views

How to send files in a SOAP web service with Spring WS

I am creating my first SOAP Web Service with Spring WS by following this article http://static.springsource.org/spring-ws/sites/2.0/reference/html/tutorial.html. So far it seems to make sense and is ...
2
votes
1answer
19 views

spring web-services transform namespace before endpoint-selection

is it possible to transform a request-body in a spring-ws interceptor before the endpoint-selection takes place. The client who calls us uses a different xml-namespace (but the same schema, don't ask ...
0
votes
0answers
19 views

How to change HTTP return code for Spring WS when there is XML or schema validation error

We are using Spring WS and we would like to change the HTTP return code from 500 to 200 when the request contains malformed XML or valid XML with schema validation error. We're fine with the default ...
0
votes
1answer
37 views

Spring-WS: LazyInitializationException: could not initialize proxy - no Session

I have an application that use spring-mvc and hibernate. To avoid Hibernate lazy initialization exception in mvc controllers I use succesfully the solution exposed here. Now i have to do the same (if ...
0
votes
2answers
34 views

Expose and access static XSD schema in Spring WS 2

I can't reach XSD schema. Here is my configuration: web.xml <servlet> <servlet-name>spring-ws</servlet-name> ...
0
votes
1answer
77 views

spring java web service, asynchronous

can an asynchronous web service be achieved with java spring-ws framework like how it's explained in here basically when a client sends a request to the server for the first time, the web service on ...
1
vote
1answer
44 views

@Endpoint and @Transactional on the same class using Spring-ws library

I am trying to implement a web-service endpoint which would be transactional because I don't want to create a special "worker" class with transactional methods. I'm using Spring-ws library together ...
0
votes
1answer
79 views

Error creating bean with name .. Injection of autowired dependencies failed

im implementing a java spring client to access the webservice, but im having problem with bean creation and autowire. im not sure what are those because im very new to these. im not using maven, just ...
0
votes
0answers
36 views

Calling WSO2 proxy service from Spring

We are using WSO2 ESB 4.6.0 to proxy a remote SOAP web service. When we do a test call from SoapUI it all works fine. However, we have a client that uses Spring-WS to invoke the service. When this is ...
0
votes
0answers
29 views

How to define endpoint mapping for DefaultMethodEndpointAdapter

I am trying to use the Spring Web Services 2.0 DefaultMethodEndpointAdapter to map a Spring Integration Inbound Web Services Adaptor as an Endpoint. But I can not find any documentation to assist me. ...
2
votes
3answers
153 views

Mockito pattern for a Spring web service call

My class under test has this method public SomeWebServiceResponse callDownstream(SomeWebServiceRequest request) { return (SomeWebServiceResponse ) super.callService(request); } the super ...
1
vote
2answers
100 views

How to get Soap Header at server side with Spring WS Client

I am new to Web Service development. I am developing a web service using Spring WS. I need to add soap header in request so below is my code to add header in request at client side. ...
0
votes
0answers
63 views

MTOM not working on Spring Webservice

I am developing MTOM enabled a Spring Webservice with JAXB2 as marshallar. The target is to 1.Develop a service which recieves a request and send a response with document as MTOM attachment. ...
1
vote
1answer
66 views

Yaws SOAP client Content-Type

I've got a sample Spring-WS WebService deployed on Tomcat. I can successfully call it with a Java client, but when I'm trying to use a Yaws client: Wsdl = ...
0
votes
2answers
84 views

Get ServletContext from MessageContext in interceptor

How can I get an object of ServletContext from the MessageContext supplied in an interceptor? The TODO below is suppose to be a ServletContext. @Override public boolean handleRequest(MessageContext ...
0
votes
1answer
62 views

Spring bean as Web Service

Am new to web services. I have a spring bean in which i have used Transactional annotation for DB operations. Now I need to expose one of the method in the bean as a service. The method parameters are ...
0
votes
1answer
151 views

Spring 3.1 Web services working example

Please suggest me with some useful links that have step by step spring web services sample examples implementation. Do I need to install some plugin in Spring Tool Suite.
0
votes
0answers
43 views

Manual override for spring scheduler (using annotations)

I have a spring ws client where i have scheduled my services to run the client using annotations @Scheduled . How can i provide a manual override so that i can start and stop the service in between ...
0
votes
1answer
44 views

Grab namespace prefix from request and find element with it in Spring Java

I want to get rid of the static "ims:" and use the prefix found in the SOAP request with the namespace xmlns:ims="http://www.imsglobal.org/services/lis/bdems1p0/wsdl11/sync/imsbdems_v1p0. How can I ...
0
votes
1answer
54 views

Namespace for wsse:security

My problem is i am trying to call a web service which has Wss4jSecurityInterceptor for username password authentication. the request which is generated is like this : <wsse:Security ...
0
votes
1answer
238 views

How to customize spring webservice's PayloadValidatingInterceptor response message?

I have a java web service application built with jaxb and spring webservice. I have a complex type in a xsd like this: ... <complexType name="GetRecordsRequest"> <sequence> ...
0
votes
1answer
56 views

Spring resolver not being hit when I set the mappedEndpoints

The resolvers customizeFault method isnt being hit when I set the mapped endpoints below. If I remove it, it gets hit. Any help? The exception is thrown in my resolver class. ...
0
votes
1answer
135 views

Spring-WS SOAP Service Design - One vs Multiple operations

I am publishing a SOAP webservice using Spring-WS and would like to know the approach for designing a WSDL. If my service has to account for four operations (like start, update, suspend and restart ...
0
votes
0answers
209 views

consuming soap web service, soap fault exception

I am trying to write a client to consume web services done in .Net using SOAP. I am using Spring-ws webServiceTemplate with Jaxb2Marshaller. I am getting following error, ...
0
votes
2answers
83 views

How to make integer element value in xsd not become zero when no value entered in SOAP XML?

I have a java web service application built with jaxb and spring webservice. I have a complex type in a xsd like this: ... <complexType name="GetRecordsRequest"> <sequence> ...
0
votes
2answers
189 views

Catch Exception In Spring Web Service Interceptor and return Soap response

What is the best approach to catch an exception in a Spring Web Service, extract the details of it, and format it into a soap response? My error message details must go in the header of the Soap ...
0
votes
1answer
116 views

How to remove body element in Soap message from Spring web service

I have the following interceptor that modifies the header of the soap response. I would also like to clear the body of the soap response, but I cant find any documentaiton on doing this or a way ...
0
votes
2answers
59 views

Move Fault From Soap Body into Soap Head with Spring WS

What is the best way to move the soap fault found in the soap body to the soap head of a response found in Spring web services? Any examples out there? I can intercept the fault but I dont think I ...
1
vote
2answers
140 views

SoapFaultMappingExceptionResolver never gets hit with regular java exception

Can anyone tell me why I cant catch a regular Java exception with my resolver so I can transform it before the response is sent back? It never gets hit with a breakpoint. If its not possible, how ...
1
vote
3answers
162 views

Spring Web Services Class Not Found Exception

I'm going through this Spring tutorial online form springsource.org. http://static.springsource.org/docs/Spring-MVC-step-by-step/part2.html In Chapter 2, at the end, it has you add a bean to prefix ...
0
votes
1answer
75 views

Creating a Spring Web Service using Plain Old XML (POX)

So, I'm writing a Spring Web Service for an already-existing application to talk to. I have the service working to where it will receive a request and respond to it but the thing is, the application ...
1
vote
1answer
84 views

Spring Web Service with Header and Body In Envelope

We are creating a webservice that came from a WSDL which the soap messagehas both a header and body in the request and response. How can you set this up to work with a Spring WS? I can not find any ...
1
vote
1answer
268 views

Cannot locate BeanDefinitionParser for element for Spring web services

I am brand new to Spring web services and I keep getting this error: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Cannot locate ...
0
votes
0answers
35 views

Decryption of Message on the Server Side Using Wss4jSecurityInterceptor

I had used WSS4JInterceptor for encryption at the client side.. Message was successfully encrypted. But when i am trying to decrypt at the server side. Instead of Description, the server web server ...
0
votes
1answer
76 views

Generate Spring Source Endpoints with WSDL

Can you generate a full contract and request/response objects into Spring Source Web Service format with @EndPoint annotations from a WSDL?
0
votes
1answer
239 views

No adapter for endpoint in Spring Web Service Response

I just cant figure out this error using Spring Web Services. I believe I did everything correctly. Soap Error Response <SOAP-ENV:Envelope ...
0
votes
1answer
116 views

How can I send a multiple part message in soap spring-ws?

I would like to use the spring framework and spring-ws to send / receive SOAP messages. However, I don't see how to send messages with multiple parts. <message name="getInput"> <part ...
0
votes
1answer
106 views

Spring Web Services and Soap

What is the best class/bean to use for a Java Soap Web Service? I am a .NET guy and can't really tell from any articles on the web.
1
vote
1answer
166 views

Advantages of WebServiceGatewaySupport vs WebServiceTemplate

I have to implement a webservice client using Spring WS. I've read the documentation at http://static.springsource.org/spring-ws/site/reference/html/client.html but it's not clear to me what are ...
0
votes
1answer
125 views

how do i get a soap attachment from web service using spring-ws

I am using Spring-ws. I am trying WebServiceTemplate.sendSourceAndReceive(src, mySourceExtractor); In the extractData callback method of the SourceExtractor, I get a DOMSource. Now what? I know ...
0
votes
1answer
74 views

Integration Testing of secure Spring Web Service

I am trying to write server side integration tests of my Spring Web Service Endpoint secured using - Spring WS Security 2.1.2.RELEASE and - WSS4j 1.6.9. I am trying to follow Spring documentation ...
2
votes
1answer
112 views

Does Spring webservice support Java7?

We are in the process of upgrading Java version from 1.6 to 1.7 for our Java EE system. We extensively use spring webservice (1.5.8 in the server side and 2.0.4 in client side). Initial testing (with ...
0
votes
0answers
57 views

Spring WS - - Saving request and response xml's to database [closed]

I have written a server side program using spring ws which is working fine . now i want to store the incoming request in a xml file to the database . how can i achieve this?
2
votes
1answer
154 views

JAXB exception while deploying spring-ws web service

I have an xsd which is used withing a soap web service implemented using spring-ws. one of the types is defined as follows: <xsd:complexType name="DateTimeWithTimeZone"> ...
0
votes
0answers
69 views

How to change NameSpaceUri at runtime of a WebService in order to point it to a different endPoint?

I am using org.springframework.remoting.jaxws.JaxWsPortProxyFactoryBean to configure my client WebService but I cannot change the interface targetNameSpaceUri to make it point to a different URL. ...
0
votes
0answers
139 views

Spring WS: Problems decrypting message with WSS4J security interceptor and PayloadRootAnnotation

I'm using Spring WS with WSS4J Security Interceptor. On the server side when I receive the message if I use the PayloadRootAnnotationMethodEndpointMapping I have an error, because it's trying to ...
0
votes
0answers
67 views

The element name {schema reference} phoneNumber has more than one mapping.JAXBElement ObjectFactory

i am using spring Jaxb2Marshaller for spring jax-ws(JaxWsPortProxyFactoryBean) web service clients The issue is i have two WSDL's using same schema and almost same input/output elements, when ...

1 2 3 4 5 9