我使用ESB和许多不同的代理。
其中一个是将消息发送到其他代理端点。所有代理都在ESB中。
目前,这些端点代理没有安全保障。我喜欢使用scenario1作为它们的安全性。 但是如何将消息发送到这些端点。这意味着:如何在我的代理配置中添加带有用户名和密码的安全标头,以便我可以使用用户“admin”和密码“admin”进行身份验证?
答案 0 :(得分:4)
据我了解,您需要保护代理并将其转发到不安全的后端服务。
为此,您可以尝试按照WSO2 ESB管理控制台中的步骤操作。我是从WSO2 ESB 4.7.0
尝试过的现在将为您的服务启用安全性。
代理服务现在需要身份验证,您现在可以使用“admin”用户。 (或者您添加的任何用户)。
如果您使用的是Java客户端,则可能更容易使用带有Rampart模块的Axis2。有很多例子。
请参阅以下链接。
http://blog.facilelogin.com/2008/11/security-policy-with-rampart.html(这有一个简单的客户端)
http://blog.thilinamb.com/2009/08/securing-web-service-with-username.html
我使用SoapUI测试了这个。您可以从请求属性中传递用户名和密码。
您的请求将类似于以下内容。
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "POST /services/SimpleStockQuoteService.SimpleStockQuoteServiceHttpsSoap12Endpoint HTTP/1.1[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "Accept-Encoding: gzip,deflate[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "Content-Type: application/soap+xml;charset=UTF-8;action="urn:getQuote"[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "Content-Length: 1195[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "Host: isurup-ThinkPad-T530:8243[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "Connection: Keep-Alive[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "User-Agent: Apache-HttpClient/4.1.1 (java 1.5)[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "[\r][\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "<soap:Envelope xmlns:ser="http://services.samples" xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsd="http://services.samples/xsd">[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " <soap:Header><wsse:Security soap:mustUnderstand="true" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"><wsu:Timestamp wsu:Id="TS-63"><wsu:Created>2013-08-20T19:45:32Z</wsu:Created><wsu:Expires>2013-08-20T21:08:52Z</wsu:Expires></wsu:Timestamp><wsse:UsernameToken wsu:Id="UsernameToken-62"><wsse:Username>admin</wsse:Username><wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">admin</wsse:Password><wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">WG8iV7vik8QqZkzlaIabWg==</wsse:Nonce><wsu:Created>2013-08-20T19:45:32.861Z</wsu:Created></wsse:UsernameToken></wsse:Security></soap:Header>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " <soap:Body>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " <ser:getQuote>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " <ser:request>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " <xsd:symbol>WSO2</xsd:symbol>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " </ser:request>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " </ser:getQuote>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> " </soap:Body>[\n]"
Wed Aug 21 01:15:32 IST 2013:DEBUG:>> "</soap:Envelope>"
<强>更新强> 如果后端服务也是安全的,您可以参考以下博客文章。
http://soasecurity.org/2012/11/05/how-to-invoke-secured-backend-service-using-wso2-esb/
答案 1 :(得分:2)
在呼叫代理服务中,您可以按如下方式配置属性,
<property name="Authorization"
expression="fn:concat('Basic ', base64Encode('admin:admin'))"
scope="transport"
type="STRING"/>
这样,将在对被叫代理服务的请求中设置basicAuth头。 希望这会有所帮助。
答案 2 :(得分:0)
在您的方案中,您需要使用代理服务调用安全后端(另一个代理服务)。为此,您需要编写安全策略。参考[1]博客文章。
[1] http://soasecurity.org/2012/11/05/how-to-invoke-secured-backend-service-using-wso2-esb/
答案 3 :(得分:0)
您可以使用curl来调用安全代理服务,如下所示。
curl -k --basic -u admin:admin https://localhost:8243/services/PoxSecurityProxy.POXSecurityProxyHttpsSoap11Endpoint/echoString?in=Chanaka