Hi,
You'll need to create a groovy-script for this, something in the line of
// create request
def getMethod = new org.apache.commons.httpclient.methods.GetMethod( url )
// get httpclient
def httpClient = com.eviware.soapui.impl.wsdl.support.http.HttpClientSupport.httpClient
// send it
httpClient.executeMethod( getMethod )
// process response
def response = getMethod.responseBodyAsString
...
regards,
/Ole
eviware.com