Lets how we can secure a WSO2ESB proxy service using HTTP Basic Authentication. Step 1. Creates a simple proxy service in WSO2ESB. Here i am using the same “echo” service in same WSO2ESB as the BE service. If not, you can start new WSO2ESB instance and use “echo” service as your BE service. Simple flow […]
Tag: WSO2ESB
In my previous posts, we talked about securing BE service with WSO2ESB. But, there are some issues with way that we have configured when it comes to production developments. In this blog post, we are trying to overcome from them. OK, let see what has happened with previous blog posts. 1. This post; we discussed how […]
In my previous post, we discussed how we can invoke a user name token secured BE service. Let see, how we could invoke a Basic auth secured service using ESB. This is more easier as we just want to configure ESB property mediator to add Basic authentication header in to out going messages. However […]
Lets say, we have a backend web service that has been secured with Username Token security policy and user name token must be sent to access it. But your client application (which is not in this domain), would send user name and password in different manner (not in Username token). Therefore client would not be able to talk […]
WSO2 ESB is a popular proxy service engine that you can use to proxy the backend services and expose them as SOAP based web services. It provides QoS for proxy services that you can apply WS-Security policies in an easier manner. There are several pre-defined WS-Security policies in the ESB, that you can apply for […]
If you are familiar with WSO2 Carbon platform, You may already know that WSO2 Carbon platform provides ability to plug your enterprise user store in an easier way…. Your user store can be a LDAP, AD or any JDBC based user store and you only need to do some configuration changes in the user-mgt.xml file […]
WSO2 ESB gives an extension points, where users can create their own processing logic in to the message path. One way is implementing a custom mediator (class mediator) where it can be plugged with ESB sequences. We can found lot of docs and blogs on writing a custom mediators. But I just like to summarize all […]
WSO2 ESB can be used for implementing various security patterns in your SOA. It supports message level security with WS-Security specification. In this blog post, we are going to use WSO2 ESB to invoke a secured BE service. Lets assume BE service is secured with WS-Security Policy. Policy contains both signature and encryption and […]
Lets see how we can enable mutual SSL (two-way SSL) for all the proxy services that are deployed in WSO2 ESB Configuring Mutual SSL in ESB Step 1 : Enable mutual SSL for transport receiver of the WSO2 ESB WSO2 ESB uses Pass through transport (or NIO ) for sending and receiving messages. You can […]