| Author |
WSDL: How to put common messages in one file?
|
Loganathan Karunakaran
Ranch Hand
Joined: Nov 04, 2008
Posts: 73
|
|
Hi,
I am creating few WSDLs and I want to share the error messages across these WSDL. Currently I am repeating the error messages in all the WSDL files. Is there a way to put all the common messages and re-use it in different WSDL. Please assist.
Thanks
Loganathan
|
OCPJP 1.6
|
 |
Surender Suri
Ranch Hand
Joined: May 28, 2010
Posts: 41
|
|
Move all the common elements to .xsd file (for example common.xsd) and import that common.xsd file into each individual wsdl files.
Example: In wsdl as below
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="your name space">
<include schemaLocation="common.xsd"/> // put common.xsd in the same folder as wsdl.
</schema>
</types>
You can also extend the common element (in this case your error message element) to add more info, like
<element name="CustomErrorMessage">
<complexType>
<complexContent>
<extension base="tns:ErrorMessage"> // this is your common error message element
<sequence>
<element name="AdditionalInfo" type="tns:AdditionalInfo" minOccurs="0" nillable="true"/>
.. you can add more elements here ..
</sequence>
</extension>
</complexContent>
</complexType>
</element>
|
Thanks,
Suri
|
 |
 |
|
|
subject: WSDL: How to put common messages in one file?
|
|
|