我正在尝试使用canoo webtest在Jboss 7.1上测试我的休息服务。以下是请求。 我无法将json内容传递给服务器。但是同样适用于curl脚本。当我打印请求对象时,它在我的服务中显示为空白。 尝试使用soapAction true / false但是没有任何效果。 请提出任何建议。“
<config host="localhost"
port="8080"
protocol="http">
<header name="USEIR_ID" value="myusername"/>
<header name="USER_PASSWORD" value="mypassword"/>
<header name="Content-type" value="application/json"/>
</config>
<invoke method="post" url="/service/createPackage/getPackage" description="get package status"
content='{signature:{applicationId:100,subInvId:2664}}' soapAction="true">
</invoke>
答案 0 :(得分:0)
我能够解决这个问题。解决方案是在invoke标签中。 method =“post”应设置为“POST”(全部大写)。