java - Differnece between these tags in a wsdl file <wsdl:types> and <types> -


i trying understand flow of application. have 2 wsdl files,

in 1 of wsdl has following representation

<wsdl:types>     <xsd:schema>          <xsd:import>     </xsd:schema> </wsdl:types>  <wsdl:message>          <wsdl:part>   </wsdl:message> 

in wsdl file following specification.

<types>         <xsd:schema >             <xsd:import>                      <xsd:element >             </xsd:element>         </xsd:schema> </types>  <message name="">         <part /> </message> 

i know difference between these two.

thanks

venkat.

most probably, in second wsdl default namespace same alias wsdl in first. confirm, post namespace references in both files.


Comments

Popular posts from this blog

Using 'OR' and 'AND' in SQL Server -

python - Finding intersection between ellipse and a line -

c++ - NetBeans Remote Development with additional configuration -