Hi Sravan
Thanks for reaching out to the community.
The XPath expression /:Request/:body/:bodyAsString/text() is using namespace prefixes (:Request, :body, :bodyAsString) but these prefixes are not defined or mapped to namespaces.
In XML, when you use a colon (:) in an XPath expression, it indicates a namespace prefix. The system expects these prefixes to be properly declared and mapped to actual namespace URIs.
Solution:
Replace the namespace-prefixed XPath with local names:
For Eg: //Request//body//bodyAsString/text()
or
/Request/body/bodyAsString/text()
Please try and let me know if this solves the reported issue.
regards
Sankar