我有this这样的要求,我需要将相同的表单数据提交给第三方系统。我试着按照以下方式调用发送保存操作。
then send(
uri = "http://localhost:8080/restcall/form",
replace = "none",
method = "post",
content = "xml",
annotate = "id"
)
但问题是数据格式应该是表单参数(Normal表单提交)。但是使用send
我认为数据将采用xml格式。