如何使用表单数据在SoapUI 5.1.2中为REST服务执行POST Req

如何使用表单数据在SoapUI 5.1.2中为REST服务执行POST Req,rest,post,soapui,multipartform-data,Rest,Post,Soapui,Multipartform Data,你能帮我解决我遇到的问题吗 通过使用Postman(REST客户端-chrome扩展),我向REST服务发布了一篇文章,并从服务中得到了正确的答案。 答案是“201 Created”,一个新行被添加到数据库中 URL= 表单日期=元数据 { "meta" : { "version" : "1.0", "description" : "Organization" }, "id" : null,

你能帮我解决我遇到的问题吗

通过使用Postman(REST客户端-chrome扩展),我向REST服务发布了一篇文章,并从服务中得到了正确的答案。 答案是“201 Created”,一个新行被添加到数据库中

URL=

表单日期=元数据

    {
        "meta" : {
            "version" : "1.0",
            "description" : "Organization"
        },
        "id" : null,
        "name" : "test org",
        "startDate" : "2014-06-05 16:20:31.334",
        "endDate" : null,
        "administrable" : true,
        "published" : true,
        "href" : "\/2\/rest\/1.0\/organizations\/1"
    }
我找不到使SoapUI(5.1.2)能够处理相同请求的方法

URL=

表格日期=
元数据 { “元”:{ “版本”:“1.0”, “说明”:“组织” }, “id”:空, “名称”:“测试组织”, “起始日期”:“2014-06-05 16:20:31.334”, “endDate”:空, “可管理”:正确, “出版”:没错, “href”:“/2/rest/1.0/organizations/1” }

回答是“200-Ok”,但是


有什么想法吗,应该如何配置soapui请求?

这应该可以让您开始了