+

Search Tips   |   Advanced Search

 

Security model mixture

 

There can be multiple protocols and channels in the WebSphere Application Server V6 and later programming environments. Each of these applications serve different business needs. For example, you might access:

More importantly, Web services are often implemented as servlets with a EJB file. Therefore, you can mix and match the Web services security model with the J2EE security model for Web and EJB components. It is intended that Web service security compliment the J2EE role-based security and the security run time for WAS V6 and later. Web services security also can take advantage of the security features in J2EE and the security run time for WAS Version 6 and later. For example, Web services security can use the following security features to provide an end-to-end security deployment:

The following figure shows that different security protocols are used to send authentication information to the appserver. For a Web service, you might use either HTTP basic authentication with SSL or a Web services security username token with encryption. In the following figure, when identity bob from Web services security is authenticated and set as the caller identity of the SOAP message request, the J2EE Enterprise JavaBeans container performs authorization using bob before the call is dispatched to the service implementation, which, in this case, is the enterprise bean.

Security protocol that are used to send authentication information to the Application Server

You can secure a Web service using the transport layer security. For example, when you are using SOAP over HTTP, HTTPS can be used to secure the Web service. However, transport layer security provides point-to-point security only. This layer of security might be adequate for certain scenarios. However, when the SOAP message must travel through intermediary servers (multi-hop) before it is consumed by the target endpoint, you might use SOAP over the Java Message Service (JMS). The usage scenarios and security requirements dictate how to secure Web services. The requirements depend upon the operating environment and the business needs. However, one key advantage of using Web services security is that it is transport layer independent; the same Web services security constraints can be used for SOAP over HTTP, SOAP over JMS, or SOAP over RMI/IIOP.


 

Related tasks


High-level architecture for Web services security