Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SoapUI getting request parameters in mock service script

Tags:

This is probably a very easy one for all SoapUI regulars.

In a SoapUI mock service response script, how do I extract the value inside the request I'm replying to?

Let's say the incoming request has

<ns1:foo>   <ns3:data>     <ns3:CustomerNumber>1234</ns3:CustomerNumber>   </ns3:data> </ns1:foo> 

How do I get the "1234" into a Groovy variable? I tried with an xmlHolder but I seem to have the wrong XPath.

(I know how to set a property and integrate its value into the response already.)

like image 310
Thorsten79 Avatar asked Jun 03 '09 15:06

Thorsten79


People also ask

How do I see SoapUI requests?

To view the HTTP request, click RAW at SoapUI Request window (left side). The Request is posted to the web-server. Hence, the POST method of Http is used. The SOAP Request is transported in the body of the http message, which is shown as follows.

How do I add a parameter in SoapUI?

When you have an URL that contains parameters, SoapUI can extract them as you create the TestStep. Enter the URL into the URL field. Click Extract Parameters.


1 Answers

If you want to access SOAP request and do some XPath processing, there's an easier way to do it in soapUI thanks to the power of GPath and XmlSlurper.

Here's how you would access the customer number:

def req = new XmlSlurper().parseText(mockRequest.requestContent) log.info "Customer #${req.foo.data.CustomerNumber}" 

As of Groovy 1.6.3 (which is used in soapUI 2.5 and beyond), XmlSlurper runs in namespace-aware and non-validating mode by default so there's nothing else you need to do.

Cheers!
Shonzilla

like image 164
Shonzilla Avatar answered Sep 17 '22 15:09

Shonzilla