In following WSDL(XML)
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://ttdev.com/ss"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy"
xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wsswssecurity-utility-1.0.xsd"
name="SecureService" targetNamespace="http://ttdev.com/ss">
<wsp:Policy wsu:Id="p1">
<sp:SignedParts>
<sp:Body />
</sp:SignedParts>
</wsp:Policy>
<wsp:Policy wsu:Id="p2">
<sp:SignedParts>
<sp:Body />
</sp:SignedParts>
</wsp:Policy>
<wsp:Policy wsu:Id="p3">
<sp:SignedParts>
<sp:Body />
</sp:SignedParts>
</wsp:Policy>
<wsdl:binding name="SecureServiceSOAP" type="tns:SecureService">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="concat">
<wsp:PolicyReference URI="#p1" wsdl:required="true" />
<soap:operation soapAction="http://ttdev.com/ss/concat" />
<wsdl:input>
<soap:body parts="concatRequest" use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body parts="concatResponse" use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="SecureService">
<wsdl:port binding="tns:SecureServiceSOAP" name="SecureServiceSOAP">
<soap:address location="http://localhost:8080/axis2/services/SecureService" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
I want to fetch following XML part from the XML
<wsp:Policy wsu:Id="p1">
<sp:SignedParts>
<sp:Body />
</sp:SignedParts>
</wsp:Policy>
I m writing followign LINQ Query
XDocument wsdlDocument = XDocument.Load(_wsdlPath);
XName operationElementName = XName.Get("operation", "http://schemas.xmlsoap.org/wsdl/");
XName policyReferenceElementName = XName.Get("PolicyReference", "http://schemas.xmlsoap.org/ws/2004/09/policy");
XName policyElementName = XName.Get("Policy", "http://schemas.xmlsoap.org/ws/2004/09/policy");
XName idAttributeName = XName.Get("id", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wsswssecurity-utility-1.0.xsd");
var operationPolicy = from policy in wsdlDocument.Descendants(policyElementName)
where policy.Attribute(idAttributeName).Value == uritemp //uritemp = "p1"
select policy.ToString();
string resultingXML = operationPolicy.FirstOrDefault();
but it is not working , please tell me where I am making mistake.