ContributionsMost RecentMost LikesSolutionsRe: RAW message is missing for request XML in REST callBTW I could see the header details but not the content Type POST https://abcd.com/account/login?detail=thin HTTP/1.1 Accept-Encoding: gzip,deflate Accept: application/xml Content-Type: application/xml Content-Length: 238 Host: abcd.com Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5) RAW message is missing for request XML in REST callHi All, I cannot see the RAW message under the request for my REST call in soapUI Pro 4.6.4 This happened all of sudden when I started soap. I had been using the same version before without this issue. Any particular reason for this? Appreciate your response CheersRe: [Res] Groovy script conext errorThanks Paul, Appreciated[Res] Groovy script conext errorHi I am trying to execute following script to update headers and running this as a step in one of the test cases import com.eviware.soapui.impl.wsdl.teststeps.* def valueOf = { key -> testSuite.getPropertyValue( key ) } testSuite.testCaseList.each { testCase -> testCase.testStepList.each { testStep -> if( testStep instanceof WsdlTestRequestStep || testStep instanceof RestTestRequestStep ) { def headers = [ (valueOf( "name190" )) : [ valueOf( "ExampleHeaderValue" ) ] ] log.info("Setting HTTP headers ${headers} in test case ${testCase.label}") testStep.testRequest.requestHeaders = headers } } } But I am getting following error Sat Feb 22 20:38:06 EST 2014:ERROR:groovy.lang.MissingPropertyException: No such property: testSuite for class: Script18 groovy.lang.MissingPropertyException: No such property: testSuite for class: Script18 at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(ScriptBytecodeAdapter.java:50) at org.codehaus.groovy.runtime.callsite.PogoGetPropertySite.getProperty(PogoGetPropertySite.java:49) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callGroovyObjectGetProperty(AbstractCallSite.java:231) at Script18.run(Script18.groovy:7) To my knowledge this could be a context issue If so please let me know how it can be fixed and if any links to understand the API design for context change CheersReplace header valuesHi, Is it possible to search and replace header name or header values through groovy. I mean not adding new headers but to edit existing one after search by header name and then edit either name or value. ThanksRe: [Resolved] Copy services across projectsThanks. really appreciated CheersRe: [Resolved] Copy services across projectsThanks for your reply I think copying ONLY a resource to a different project is not possible though as per the design structure Is that correct? CheersRe: How to write a reusable script LibraryHi Martin, Is it possible to have several methods under one class. Added following method into you original code. That is it. def executeBlank() { // do some stuff to prove I've run with right context, etc. log.info testRunner log.info context log.info "return Hello"+ //return "message" } Then I got following error when there are two methods under one class ERROR:org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: Script27.groovy: 33: unexpected token: } @ line 33, column 4. Cheers[Resolved] Copy services across projectsHi All Please let me know is there a way to copy services across project in SoapUI Pro CheersHow to do a searchHi all Is there way to do a search for service name or test case name in soapui within open projects Cheers