0

有一个 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>

谢谢,瓦吉德

4

1 回答 1

1

此问题已修复,将从 WSO2 ESB 4.7.0 开始提供

谢谢,最好的问候,vanji

于 2013-06-24T12:07:50.877 回答