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.
3
votes
0answers
121 views
Large MIME attachment & SOAP
I have simple web service server which receive SOAP with MIME attachment, store it to the HashMap and send back message with this mime attachment:
Java 1.7.0_13-b20
Spring WS 2.1.3
MOXy ...
3
votes
0answers
243 views
Support for X509PKIPathv1 in xws-security for Spring-WS
I'm trying to send a request to an existing webservice. This webservice is not government by me. The security policy of this webservice requires me to send my complete certificate chain in my SOAP ...
3
votes
0answers
761 views
Spring WS and JAXB - Configuring SOAPMessageDispatcher, DefaultMethodEndpointAdapter and MarshallingPayloadMethodProcessor
When working with Spring-WS, the configuration is very minimal because i have always been using annotations. Recently i have been trying to test out how to include attachements in SOAP responses and ...
2
votes
0answers
160 views
Adding Spring Security @Secured annotation with the Spring Web Service disables Web Service endpoint
Problem: When I add @Secured annotation at a web service method, the endpoint is disabled means I get No endpoint mapping found error when invoking the ws endpoint.
Background: My Spring Web Service ...
2
votes
0answers
1k views
Spring WS with Axiom: JAXB is inlining MTOM attachments
I have webservices to receive and send attachments, and I'd like to use JAXB as marshaller, but so far it is not working right, as JAXB inlines any attachment coming in or going out in the message ...
2
votes
0answers
357 views
Spring WS I/O error: Not in GZIP format
Im using Spring WS to call a Web Service. For now, I am running the Web service on SoapUI. Also, due that I have to send and receive complex objects I'm marshalling and unmarshalling the request and ...
1
vote
0answers
97 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.
...
1
vote
0answers
84 views
Handling multiple certificates with Spring Webservices
I have a client that is sending SOAP message to a Spring Web Services endpoint that I created. The message is signed and encrypted and I am successfully decrypting the message, and signing/encrypting ...
1
vote
0answers
259 views
spring ws dynamic wsdl - no operations, cant change request response element names, what to do?
Problem is, spring ws does not generate operations and others cant generate code over that wsdl. I have it configured as follows:
<sws:dynamic-wsdl id="executeFunnyQuery"
...
1
vote
0answers
45 views
Spring WS - generate documentation like .NET webservices
There are any way to generate a documentation page for my spring webservices?
This can be like .NET does in his defaults asmx pages ou another way if exists.
1
vote
0answers
189 views
Spring-WS: Converting SOAP Faults into Specific Exceptions
When using Spring-WS as a SOAP client, I have a hard time converting incoming faults to their specific Java Exceptions.
For example, if the web service operation I am calling can return a ...
1
vote
0answers
490 views
Spring WS + Wss4jSecurityInterceptor + MTOM memory issues
This seems to be somewhat a longstanding question, and no definitive solution so far: situations where your incoming MTOM messages get inlined to the SOAP message, crashing the application due to ...
1
vote
0answers
371 views
jaxws noSuchMethodError in javax/wsdl/Operation.getExtensibilityElements
When I create a ws client in IBM WAS 6.1 as a dynamic project the client works just fine.
But when we do the same thing and try to integrate the client in an existing project which has many other ...
1
vote
0answers
666 views
Unmarshalling MTOM message using Camel Spring-WS and JAXB dataformat
1) Is there a way to unmarshall MTOM message using Camel Spring-WS component?
2) I tried with Camel JAXB dataformat. It didn't work. Datahandler doesn't have any content. Does JAXB dataformat support ...
1
vote
0answers
443 views
How do you configure a truststore (jssecacerts file) in a spring-ws pox client?
I have a jssecacerts file i need to configure for SSL. Does spring-ws allow you to configure/point to a jssecacerts file? Here is my current configuration, note it is a POX service and not SOAP:
...