我正在尝试定义一个序列来进行 HTTP 发布。我无法在请求中发送我的帖子变量。我有
<sequence xmlns="http://ws.apache.org/ns/synapse" name="CDN" trace="enable">
<property name="messageType" value="application/x-www-form-urlencoded" scope="axis2" type="STRING"/>
<property name="HTTP_METHOD" value="POST" scope="axis2" type="STRING"/>
<send>
<endpoint>
<address uri="http://posttestserver.com/post.php"/>
<property name="foo" value="bar" scope="axis2"/>
</endpoint>
</send>
</sequence>