Results 1 to 3 of 3

Thread: Spring-WS SSL and certificate

  1. #1
    Join Date
    Jul 2006
    Location
    Plano, TX
    Posts
    3

    Unhappy Spring-WS SSL and certificate

    We are needing to secure our intra-company Spring-WS web service.
    The desire here is to create a certificate and use SSL Then, the client application, with this certificate, make SOAP calls that is use/pass this certificate.

    Then, somehow, configure our Spring-WS web service to vaildate this certificate.

    I looked at Chapter 4. "Securing your Web services with Spring-WS"
    but it is clear as mud for me(security-ignorant).

    Do I need to wire a security interceptor such as....
    <beans>
    <bean id="wsSecurityInterceptor"
    class="org.springframework.ws.soap.security.?????? ???">

  2. #2
    Join Date
    Jul 2005
    Location
    Rotterdam, the Netherlands
    Posts
    1,562

    Default

    You don't need to use the WsSecurityInterceptor if you want to do SSL. The WsSecurityInterceptor is for doing WS-Security (i.e. message-level security, while SSL is transport-level security).

    Instead, configure SSL in your app server, and also on the client-side (using the Commons HTTP client, for instance).
    Arjen Poutsma

    Spring Web Services Dev Lead
    Please read the FAQ

  3. #3
    Join Date
    Jan 2013
    Posts
    2

    Default

    Hello Arjen
    Can there be both kinds of security implemented for one application (message level and transport level).
    I am implementing a server side application ,can i implement both like configuring the application server for transport level and interceptor for digital signature.
    Thanks
    Ameya

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •