简体   繁体   English

在 WSO2 EI 6.6 中找不到操作的端点参考 (EPR)

[英]The endpoint reference (EPR) for the Operation not found in WSO2 EI 6.6

I Created a DSS and exposed as a REST resource and it's working fine in Management Console try this service option, but while trying from the postman I get the following The endpoint reference (EPR) for the Operation not found error please help me to sort this out.我创建了一个 DSS 并作为 REST 资源公开,它在管理控制台中运行良好尝试此服务选项,但在从邮递员那里尝试时,我得到以下操作未找到错误的端点参考 (EPR)请帮助我对此进行排序出去。

Postman Error邮递员错误

You are not setting a SOAPAction or Action header which is required.您没有设置所需的 SOAPAction 或 Action 标头。 You can determine that header either based on the WSDL of the DSS, or from the example call that you make with Try This Service from the management console.您可以根据 DSS 的 WSDL 或从管理控制台中使用 Try This Service 进行的示例调用来确定该标头。

In default configuration, the DSS REST endpoint is exposed with address like:在默认配置中,DSS REST 端点以如下地址公开:

http://{EI_ADDRESS}/services/{YOUR_DSS_SERVICE_NAME}.HTTPEndpoint/{REST_RESOURCE_PATH}

So your url doesn't point to REST resource.所以你的 url 不指向 REST 资源。 Also sending data in POST to that DSS REST endpoint should be "wraped" in value object like:此外,将 POST 中的数据发送到该 DSS REST 端点应该“包装”在值对象中,例如:

{
  "payload": {
    "id": "10"
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在WSO2 ESB中调用代理服务时未找到操作的端点引用(EPR) - The endpoint reference (EPR) for the Operation not found when invoking proxy service in WSO2 ESB 在WSO2 DSS中使用URL编码时未找到操作的端点引用(EPR) - The endpoint reference (EPR) for the Operation not found when using URL Encoding in WSO2 DSS WSO2 ESB 4.0.3代理服务问题:找不到该操作的端点引用(EPR) - WSO2 ESB 4.0.3 Proxy Service issue : The endpoint reference (EPR) for the Operation not found WSO2 ESB未找到Operation的端点引用(EPR),以及WSA Action = urn:mediate - WSO2 ESB The endpoint reference (EPR) for the Operation not found, and the WSA Action = urn:mediate 错误:找不到操作的端点引用 (EPR) - Error : The endpoint reference (EPR) for the Operation not found 如何在WSO2 DSS上设置端点参考(EPR) - How can I set the endpoint reference (EPR) on WSO2 DSS WSO2 EI 6.6 中的属性中介正在消失 - Property mediator is disappearing in WSO2 EI 6.6 WSO2 APIM 与 WSO2 EI 6.6、7.0 和 DSS - WSO2 APIM vs WSO2 EI 6.6, 7.0 and DSS WSO2 ESB - 当SOAPAction =“”时,WS代理错误“未找到操作的EPR” - WSO2 ESB - WS Proxy error “EPR for Operation not found” when SOAPAction = “” WSO2 EI如何增加端点超时? - WSO2 EI how to increasing Endpoint timeout?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM