WSO2 ESB和IS集成 - 不支持处理程序标记

时间:2013-05-23 07:04:06

标签: wso2 wso2esb

有一个WSO2-ESB休息服务,它可以调用另一个休息服务。

在尝试添加基于OAuth的身份验证以保护被叫Rest服务资源时,我无法从WSO2-Studio或ESB控制台添加以下代码段

<handlers>
   <handler class="org.wso2.handler.SimpleOauthHandler"/>
</handlers>

Here is the link to the example i am trying to follow

截图

enter image description here

源码[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>

谢谢, Wajid

1 个答案:

答案 0 :(得分:1)

此问题已得到修复,可从WSO2 ESB 4.7.0

获取

谢谢你, 最好的祝福, vanji