
To Get a SOAP Header
In this procedure, you retrieve a SOAP header from the request. In the SoapUI, the request window shows the soap Envelope header.

-
In the SoapUI, modify the OrderTshirt request by entering a value for the API key. For example, enter
987654321
between the<apiKey>
tags. -
In Studio, in the OrderTshirt:\soapkit-config flow, click Transform Message.
-
Edit the DataWeave code to get the API key, which is an header property:
%dw 2.0 output application/java ns ns0 http://mulesoft.org/tshirt-service --- { body : { ns0#OrderTshirtResponse: { orderId: "I got a request from " ++ payload.body.ns0#OrderTshirt.name ++ " using the following auth header " ++ (payload.headers["AuthenticationHeader"].ns0#AuthenticationHeader.apiKey default "") } } write "application/xml" }
-
Save and rerun the project.
-
In SoapUI, send a request to the OrderTshirt endpoint, and check that the response appears as follows:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns0:OrderTshirtResponse xmlns:ns0="http://mulesoft.org/tshirt-service"> <orderId>I got a request from John, using the following auth header 987654321</orderId> </ns0:OrderTshirtResponse> </soap:Body> </soap:Envelope>