Hi Narayan,

> <soapenv:Body>
>      <ns1:Request xmlns:ns1="urn:com.xxx">
>              <requestId>testSubmission6</requestId>
>      </ns1:Request>
> </soapenv:Body>

If you have not defined, "urn:com.xxx" as the default namespace
somewhere in the SOAP message ( somewhere not shown in the given
element ), requestId element doesn't have a namespace. So

//soapenv:Envelope/soapenv:Body/ns1:Request/ns1:requestId
is not valid.
                         //soapenv:Envelope/soapenv:Body/ns1:Request/requestId
will work.

thanks,
/nandana

http://nandana83.blogspot.com/
http://nandanasm.wordpress.com/

Reply via email to