This might be a very simple, but I'll ask anyway.

I have the following code that does a post to a web service. I am using HttpBuilder to build the request and post the payload. The method returns a GPathResult that I need to change into a org.w3c.dom.Node

I am using the Node for xpath evaluation, and need the result to be a org.w3c.dom.Node.

def responseXml
def onResponseHandler = { resp, content ->
            def soapResponse = content instanceof java.io.InputStreamReader ? content.getText() : content
            responseXml = soapResponse.Body
        }

http.post(body: payload, headers: ['Content-Type:': 'text/xml'], onResponseHandler)

return responseXml

I've searched quite extensively for this, but couldn't figure it out. Any ideas?

link|improve this question

Ended up with a horrible, but working solution. Took the string of xml and used the documentbuilderfactory and parsed the string. Got myself a document and can do some xpath queries. – Espen Schulstad May 2 '11 at 10:38
Curious, why did you have to use XPath notation and not GPath notation for this? – Spencer Kormos Jan 5 at 17:30
Well, actually because I had predefined xpath queries loaded from a database, using different queries for different types of documents and tests that also was predefined. All delightfully complicated, but very powerful way to test. – Espen Schulstad Jan 10 at 10:07
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.