Question
Best approaches to embed Security on a exposed soap service
Hi PDN Users,
We have this below requirement for one of our project and we want to implement a security for all our exposed soap service. Our preferred option is to implement the same using two way SSL but we are ready to accept other possible options as well. Please suggest.
Requirement Details: We want to create a two way SSL authentication for all our existing/new PEGA exposed services.
Available Information: Certificates are available for both server and client sides
Bottlenecks: Below are the lack of information those actually lingering us to implement this architecture:
- Where we have to keep our key store and trust store for PEGA server end and also for client/consumers
- What configuration change (inside PEGA) , we need to do in service package and service soap rule to achieve this
- In service package , we have an option to select TLS/SSL (For Rest Only). Is there any way we can use this for soap services as well?
Thanks for your post. As I understand it, you currently have this two-way SSL (mutual) authentication configured properly when Pega is a client.
Also, you currently have a gateway in front of the Pega server that current handles this two-way SSL (mutual) authentication. This gateway interacts securely with the client using two-way SSL and forwards the message along to Pega.
While this configuration works, the concern seems to be when someone references the Pega node name (URL) in a way that routes the two-way SSL request around the Gateway. Thus the questions about how to secure Pega with 2-way SSL.
Right now, Pega expects this configuration to be done at the application server. So webSphere should be configured to reject any SOAP request that isn't configured properly for two-way SSL, doesn't have the right URL format (SOAP request vs. launch portal request), or for which it doesn't have the certificates in its keystore. This is an article on how this configuration can be done at https://developer.ibm.com/answers/questions/232166/2-way-ssl-between-websphere-app-server-and-another/.
Finally, the setting you see that mentions SSL/TLS just means "reject requests for REST services if it didn't come in through a secure channel." Pega currently does not have anything like that for SOAP.
Please let me know if this helps answer your question.