我一直在寻找如何在SoapUI上使用groovy调用带有body参数的OPTIONS方法。我读到这是可能的,但是,不可思议与否,我还没有找到一个例子。 我试过这个:
import groovyx.net.http.HTTPBuilder;
public class HttpclassgetrRoles {
static void main(String[] args){
def message = '{"message":"this is a message"}'
def baseUrl = new URL('https://MY-URL')
baseUrl.getOutputStream().write(message);
HttpURLConnection connection = (HttpURLConnection) baseUrl.openConnection();
connection.addRequestProperty("Accept", "application/json")
connection.with {
doOutput = true
requestMethod = 'OPTIONS'
println content.text
}
}
}
但它没有用。
其他方式是:
def options = new URL("https://MY-URL"}'
def message = '{"message":"this is a message"}'
options.setRequestMethod("OPTIONS")
options.setDoOutput(true)
options.setRequestProperty("Content-Type", "application/json")
options.getOutputStream().write(message.getBytes("UTF-8"));
def optionsRC = options.getResponseCode();
println(optionsRC);
if(optionsRC.equals(200)) {
println(options.getInputStream().getText());
}
但两者都没有。
这一个:
import org.codehaus.groovy.runtime.StackTraceUtils
import groovyx.net.http.HTTPBuilder
import groovyx.net.http.ParserRegistry
import static groovyx.net.http.Method.GET
import static groovyx.net.http.ContentType.TEXT
def http = new HTTPBuilder('https://MY-URL')
http.option( path : '/complement',
contentType : TEXT,
query : [body:'{"parameter1":"value1"}'] ) { resp, reader ->
println "response status: ${resp.statusLine}"
println 'Headers: -----------'
resp.headers.each { h ->
println " ${h.name} : ${h.value}"
}
println 'Response data: -----'
System.out << reader
println '\n--------------------'
}
但没有...
我一直在寻找解决方案,但同时我决定在这里提出问题,以便有人可以帮助我。
Thx 4晋级人员!
答案 0 :(得分:3)
您应该能够使用groovy-wslite库来实现相同的目标。
如果您注意到README,则OPTIONS方法未在此处列出。但是,如果您检查存储库的日志,则很明显该库已得到增强,以支持该库。
你走了:
使用提供的示例代码here。
希望这有帮助。