Mule Server 3.6> Anypoint Studio>请求连接器

时间:2015-06-13 04:28:22

标签: json post mule esb mule-studio

如何设置Request Connector以使用POST方法发送Raw JSON数据?

在我的Set Payload转换器上,我有这个:

#[{ "productId": #[sessionVars.productId] }]

当我运行我的Mule App时,我收到以下错误:

Error sending HTTP request. Message payload is of type: String

我错过了什么?

1 个答案:

答案 0 :(得分:0)

您可以尝试添加

 <set-variable variableName="Content-Type" value="application/json" />

就在您的http请求端点之上。

有关详细信息,请查看here

请告诉我这是否适合您。