您好我正尝试使用以下代码通过curl接收到端口9090上的wso2 esb(在axis2.xml中设置)的消息
`<proxy xmlns="http://ws.apache.org/ns/synapse" name="att2" transports="https"
statistics="enable" trace="enable" startOnLoad="true">
<target faultSequence="fileWriteSequence" endpoint="conf:/users">
<outSequence>
<send />
</outSequence>
</target>
<parameter name="enableMTOM">false</parameter>
</proxy>'
我正在使用的curl命令是:curl -d this is a test" http://localhost:9090
我没有看到文件在我的统计信息中显示,而curl命令的响应是“来自服务器的空回复” 任何想法?