I have a WSDL which contains 3 schemas inside it's "types" element. The schemas are not defined in external XSDs but inside the types element.
I want to customize an element inside schema number 2 and change it's name to avoid a conflict.
So in the schemaLocation how can I do that? Despite making the question I have the way to do this:
schemaLocation="../wsdl-files/mywsdl.wsdl#types?schema2">
...
<jxb:bindings node="some xpath
but I am not the one who found it but a colleague of mine who is not working with me anymore. Is there a resource where I can find the explanation for it even if I understand it? A link or a book? Somewhere where I can find also other examples.
My problem is the schemaLocation value(../wsdl-files/mywsdl.wsdl#types?schema2) not the xpath. I want to know all the possibilities to reference a schema inside a WSDL. I need a documentation for this or something.
Thank you very much
#types6, where the schema in question was the 6th in the file. SCD as suggested by skaffman indeed works much better, but you've helped me solve this particular problem, so many thanks! – Carl Smotricz Jun 7 '12 at 13:30