您好我正在尝试使用以下代码通过 curl 将消息接收到端口 9090(在axis2.xml 中设置)上的 wso2 esb
`<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 命令返回的响应是“来自服务器的空回复”有什么想法吗?