WSO2 ESB教程错误

时间:2017-06-01 23:30:48

标签: wso2 wso2esb esb

我在这里发现了完全相同的问题,但是没有答案,如果没有答案,我无法继续这样做。

WSO2 Start - up (Sending Simple Message)

我尝试使用的示例在http://wso2training-restsamples.wso2apps.com的WSO2 App Cloud中托管,教程就是这样:https://docs.wso2.com/display/ESB500/Sending+a+Simple+Message

据我所知,我遵循了教程中的字母,但是当我发送GET请求时,虽然它在我的控制台上登录Eclipse控制台,但是在执行此命令之后:

curl -v http://localhost:8280/healthcare/querydoctor/surgery

我明白了

Exception occurred :Illegal character in path at index 12: /healthcare/{uri.var.category}* Connection #0 to host localhost left intact

HealthCareAPI.xml:

<?xml version="1.0" encoding="UTF-8"?>
<api context="/healthcare" name="HealthcareAPI" xmlns="http://ws.apache.org/ns/synapse">
    <resource methods="GET" uri-template="/querydoctor/{category}">
        <inSequence>
            <log description="Request Log" level="custom">
                <property name="message" value="&quot;Welcome to HealthcareService&quot;"/>
            </log>
            <send>
                <endpoint key="QueryDoctorEP"/>
            </send>
        </inSequence>
        <outSequence>
            <send/>
        </outSequence>
        <faultSequence/>
    </resource>
</api>

QueryDoctorEP.xml:

<?xml version="1.0" encoding="UTF-8"?>
<endpoint name="QueryDoctorEP" xmlns="http://ws.apache.org/ns/synapse">
    <http method="get" uri-template="http://wso2training-restsamples.wso2apps.com/healthcare/{uri.var.category} "/>
</endpoint>

1 个答案:

答案 0 :(得分:3)

您的端点url-template中有一个拼写错误(末尾有一个额外的空格)。注意不要在模板的开头或结尾包含空格。

uri-template="http://wso2training-restsamples.wso2apps.com/healthcare/{uri.var.category}"

删除它,你应该得到预期的输出。