Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think you may be having a similar problem as I did. But, I'm not totally sure, so this is just a guess at an answer.</p> <p>I found that a binding file that did some class customization fixed my issue with elements and complexTypes that had matching names across multiple schemas that were referenced in a singular wsdl file just like you have in your example above.</p> <p>In XSD=1 you have </p> <pre><code>&lt;xs:complexType="getId"&gt; and &lt;xs:element name="getId" ...&gt; </code></pre> <p>And, in XSD=2 you have </p> <pre><code>&lt;xs:element name="getId" ...&gt; </code></pre> <p>So, to fix this I used something like this in my binding file...</p> <pre><code>&lt;jxb:bindings version="2.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt; &lt;jxb:bindings schemaLocation="http://192.168.178.105:7001/BWebService/AWebService?xsd=1" node="//xs:element[@name='getId']"&gt; &lt;jxb:class name="getIdElement"&gt;&lt;/jxb:class&gt; &lt;/jxb:bindings&gt; &lt;/jxb:bindings&gt; </code></pre> <p>This solved my issue of having the same name for a <strong><em>complexType</em></strong> and an <strong><em>element</em></strong>. Since you have the same name for multiple elements in two xsd files with different namespaces, I'm not even sure if this will help that problem.</p> <p>There's a lot more info about possible collision problems and their solutions here... <a href="http://goo.gl/vlQe3" rel="nofollow">http://goo.gl/vlQe3</a></p> <p>Good Luck, TW</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload