WSO2 ESB 5.0.0 - 如何检查 API 响应是否为 JSON 格式

发布于 2025-01-20 02:10:20 字数 92 浏览 1 评论 0原文

如何使用 wso2 ESB 5.0.0 中的 outsequence 验证 API 响应是 JSON 还是 HTML 格式 如果响应是 HTML 格式,我想更改响应代码。

How to validate the API response is in JSON or in HTML format using outsequence in wso2 ESB 5.0.0
I want to alter the response code if response is in HTML format.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耀眼的星火 2025-01-27 02:10:20

您可以尝试将 switchMediator 与下面类似的内容一起使用。
但请注意,不要尝试在 HTML 上使用 ,除非您有适合该内容类型的 messageBuilder 和 messageFormater。默认情况下,WSO2 ESB 尝试使用 xml 构建器进行转换,但将以错误结束。我在 wso2ei 6.5.0 上尝试过这个,但我相信它应该在 esb 5.0.0 上工作。

<switch source="$trp:Content-Type">
     <case regex="^(application\/(json|x-javascript))(;.*)?$">
        <log>
           <property name="Looks like Json format" expression="$trp:Content-type"/>
        </log>
     </case>
     <case regex="^(text\/html)(;.*)?$">
        <!--Don't log full, unless you have proper axis2.xml configuration for that contentType-->
        <log level="custom">
           <property name="Looks like HTML format" expression="$trp:Content-type"/>
        </log>
     </case>
     <default>
        <log level="custom">
           <property name="Unknown format" expression="$trp:Content-type"/>
        </log>
     </default>
 </switch>

You can try use switchMediator with something like that below.
But be aware and dont try to use <log level =" full "> on HTML, unless you have proper messageBuilder and messageFormater for that content type. In default WSO2 ESB tryes to convert using xml builder, and it will ended with error. I tried this on wso2ei 6.5.0 but i believe it should work on esb 5.0.0.

<switch source="$trp:Content-Type">
     <case regex="^(application\/(json|x-javascript))(;.*)?
quot;>
        <log>
           <property name="Looks like Json format" expression="$trp:Content-type"/>
        </log>
     </case>
     <case regex="^(text\/html)(;.*)?
quot;>
        <!--Don't log full, unless you have proper axis2.xml configuration for that contentType-->
        <log level="custom">
           <property name="Looks like HTML format" expression="$trp:Content-type"/>
        </log>
     </case>
     <default>
        <log level="custom">
           <property name="Unknown format" expression="$trp:Content-type"/>
        </log>
     </default>
 </switch>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文