有一个 WSO2-ESB 休息服务,它调用另一个休息服务。
在尝试添加基于 OAuth 的身份验证以保护调用的 Rest 服务资源时,我无法从 WSO2-Studio 或 ESB 控制台添加以下代码段
<handlers>
<handler class="org.wso2.handler.SimpleOauthHandler"/>
</handlers>
截屏
源代码[wso2esb-4.6.0]:
<?xml version="1.0" encoding="UTF-8"?>
<api xmlns="http://ws.apache.org/ns/synapse" name="sampleAPI" context="/sample" hostname="10.203.101.76">
<resource methods="GET" uri-template="/{str1}/{str2}">
<inSequence>
<property name="REST_URL_POSTFIX" expression="fn:concat('/customers/',get-property('uri.var.str2'))" scope="axis2" type="STRING"/>
<log level="full"/>
<send>
<endpoint>
<address uri="http://echo.jsontest.com:80/key/value/"/>
</endpoint>
</send>
</inSequence>
<outSequence>
<log level="full"/>
<log separator=",">
<property name="response" value="Starting response json message"/>
</log>
<property name="messageType" value="application/json" scope="axis2" type="STRING"/>
<send/>
</outSequence>
<faultSequence/>
</resource>
<handlers>
<handler class="org.wso2.handler.SimpleOauthHandler"/>
</handlers>
</api>
谢谢,瓦吉德