How can I specify a JAXB Binding for an imported XSD within a WSDL when using wsimport?
I tried following binding, which causes the error \"XPath evaluation of //xs:
I did something similar ages ago, I think you need to specify the node to select with XPath as follows:
//xs:element[@name='isFoobar']/xs:complexType
Or replace xs:complexType with whatever kind of type you are using here. Hopefully it will fix your probelm.