Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何使用 java 类调解器在 wso2 esb 中更改 HTTP 方法,目前我正在使用 mc.setDoingGET(false); mc.setDoingPOX(true); 我想向 ESB 发送一个 post 请求,然后通过 GET 发送到 web 服务,反之亦然,但上面的代码根本不起作用
使用具有属性名称的属性中介:HTTP_METHOD 和 http 方法名称作为值(GET、POST 等)和范围作为“axis2”。
如果要在 java 类级别更改此属性,可以执行以下操作:
msgCtx.setProperty(Constants.Configuration.HTTP_METHOD, "GET");