SOAP « Security « Spring Q&A





1. Spring-WS: how to use WebserviceTemplate with pre-generated SOAP-envelope    stackoverflow.com

Can you use a Spring-WS WebserviceTemplate for calling a webservice and avoid that it generates a SOAP-envelope? That is, the message already contains an SOAP-Envelope and I don't want that the ...

2. Spring Security integration into active directory    stackoverflow.com

I want to authenticate my web service in Spring with an Active Directory lookup at both the producer and the consumer - under the Principal that that each are executing under ...

3. How to access a MTOM payload when using document oriented SOAP?    stackoverflow.com

I need to integrate an external SOAP Service into my system. I have only the wsdl and no test server so far. I figured out how to generate stubs for the ...

4. Help with Spring authentication from a Flex app    stackoverflow.com

Some background: I have a Flex app embedded in an HTML page and am using Flex to send a soap request to my Java backend that does some authentication depending on ...

5. Accessing Web service under SSL CXF SOAP client    stackoverflow.com

This is a question in connection with my question here. When I tried to add SSL with a self-signed certificate, I get the following error.

org.springframework.web.util.NestedServletException: Request processing failed; nested 
exception ...

6. Securing apache CXF REST and SOAP services and retrieving authorities in code    stackoverflow.com

I have followed the article here http://chrisdail.com/2008/08/13/http-basic-authentication-with-apache-cxf-revisited/ I now have a working interceptor for my soap service that wont let the services be used without the username and password. I have ...

7. Spring security and SOAP    forum.springsource.org

Spring security and SOAP I have an appfuse based project which has spring security as the security framework. i have some service classes which can be used via SOAP. now i ...

8. jmanage and soap connection with global security enable    forum.springsource.org

I installed Jmanage. I added twho application. The first one is application executed on websphere without security. This soap connection was OK. The second is an application executed on websphere whith ...

9. Getting started with Acegi and SOAP    forum.springsource.org

Getting started with Acegi and SOAP Hi, So, I'm new to Acegi, and am looking into using it as a security framework for an application I am helping to develop. I ...





10. SOAP Header access in response - WebService Client?    forum.springsource.org

11. Access Soap Header in Response    forum.springsource.org

I know this has been asked before, but I still don't understand how to access the soap header in the response. The web service I am invoking puts custom information in ...

12. authentication in soap header    forum.springsource.org

authentication in soap header Hi Im using soapUI to test my webservice and in the soap header i have added the following snippet : mmt ...

13. SOAP Security Headers    forum.springsource.org

SOAP Security Headers Hello, I need to add the following parent and child security headers to the soap headers: foo pass123 How ...

14. Spring Web Service Client | send authentication in soap header    forum.springsource.org

Hello I am trying to invoke a web service using Spring and JaxRpcPortProxyFactoryBean. I have to invoke a authenticated web service for which I need to pass the username and password ...

15. getting access to SOAP MESSAGE    forum.springsource.org

Hi Vishal, you can impliment MessageEndpoint interface. The invoke method will give you access to message contex. public void invoke(MessageContext messageContext) throws Exception { } Thanks Jaise

16. Access SOAP header in endpoint    forum.springsource.org

Access SOAP header in endpoint Hi all, Let me explain the situation: I'm serving a webservice with Spring-WS via an implementation of an AbstractMarshallingPayloadEndpoint (with XML-beans). All goes well but there ...





17. WS-Security: xwss and timestamp position in SOAP header    forum.springsource.org

WS-Security: xwss and timestamp position in SOAP header Hi, The WS-Security secured Web Service I'm invoking requires that the element is positioned at the beginning of the SOAP header. The ...

18. SOAP envelope, ws-security    forum.springsource.org

SOAP envelope, ws-security Hi, What's the best way to get the SOAP envelope for a response message. I thought about sub-classing the SoapEnvelopeLoggingInterceptor and then override the handleResponse(...) method then store ...

19. SOAP request body getting nuked by Spring Security    forum.springsource.org

SOAP request body getting nuked by Spring Security We have a JAX-WS web service implemented using Apache CXF. However, for logging purposes we need to get the raw SOAP request that ...