I have an an xpath
//ServiceDefinition/schema/sequenceType[@name="Data"]/element/@name'))
That works great with xml
<ServiceDefinition>
<schema>
.....
</schema>
</ServiceDefintion>
The issue is the first line of xml file really is
<ServiceDefinition xmlns="http:/schemas/api" name="thename" version="1.0.0.45">
The above xpath returns empty when I include those 3 attributes. Is there a way to modify the xpath so look for this ServiceDefinition element but does not care about the attributes? I know I can specify values for the 3 attributes but at least the version will change. I know I can wildcard the values but could not figure a way to just inspect the attributes at all