How to Import XSD Into WSDL

Techwalla may earn compensation through affiliate links in this story. Learn more about our affiliate and product review process here.

Web service description language (WSDL) is a model and format for describing web services using XML. A consumer can locate a service and execute its operations. This process can be automated using most common development tools, enabling application integration with little developer produced code. WSDLs are a contract between the service provider and consumer; it makes a service self-describing. WSDLs provide descriptions of all public operations, data types for all service messages, binding details for the transport protocol and service address information. An "import" element can be used in a WSDL to import external WSDLs or XML schemas. Importing external items is useful for allowing the WSDL to be more modular, reuse of XML data types among multiple service definitions and support multiple versions of a schema.

Advertisement

Step 1

Create new file in your text or XML editor. If the editor supports WSDLs, select WSDL as the file type. If it does not support WSDLs, but supports XML, select XML as the file type. If neither WSDLs or XML are supported, select a plain text file type.

Video of the Day

Step 2

Name the file with any name you desire, and give the file a ".wsdl" extension. For example, the file can be named "HelloWorld.wsdl."

Advertisement

Step 3

Create a second new file in your text or XML editor. If the editor supports XML schemas, select XML schema or XSD as the file type. If it does not support XML schemas, but supports XML file, select XML as the file type. If neither XML schemas or XML are supported, select a plain text file type.

Advertisement

Step 4

Name the file with any name you desire, and give the file a ".xsd" extension. For example, the file can be named "HelloWorld.xsd."

Step 5

Enter the following markup in the XML schema file you created:

Advertisement

<xsd:schema targetNamespace="http://schemas.myorg.com/person/phone" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:import namespace="http://www.w3.org/2001/XMLSchema"/> <xsd:complexType name="Phone"> xsd:sequence <xsd:element name="areaCode" type="xsd:int"/> <xsd:element name="exchange" type="xsd:int"/> <xsd:element name="number" type="xsd:int"/>

Advertisement

Advertisement

This defines a schema with the namespace "http://schemas.myorg.com/person/phone," which defines a single data type "Phone."

Step 6

Enter the following markup in the WSDL file you created:

Advertisement

<wsdl:description xmlns:wsdl="http://www.w3.org/ns/wsdl" xmlns:wsoap= "http://www.w3.org/ns/wsdl/soap" xmlns:external="http://schemas.myorg.com/person/phone" xmlns:helloWorld="http://schemas.myorg.com/wsdl/helloworld" targetNamespace="http://schemas.myorg.com/wsdl/helloworld">

Advertisement

wsdl:documentation WSDL with an import example

wsdl:types <xs:import namespace="http://schemas.myorg.com/person/phone" schemaLocation= "http://www.myorg.com/supporting/schemas/helloworld.xsd"/>

Advertisement

<wsdl:interface name="helloInterface" > <wsdl:operation name="CallMe" pattern="http://www.w3.org/ns/wsdl/in-out" style="http://www.w3.org/ns/wsdl/style/iri"> <wsdl:input messageLabel="In" element="helloWorld:CallNumber" /> <wsdl:output messageLabel="Out" element="helloWorld:HelloResponse" />

Advertisement

Advertisement

<wsdl:binding name="helloBinding" interface="hy:helloInterface" type="http://www.w3.org/ns/wsdl/soap" wsoap:protocol="http://www.w3.org/2003/05/soap/bindings/HTTP/"> <wsdl:operation ref="hy:Hello" wsoap:mep="http://www.w3.org/2003/05/soap/mep/soap-response"/>

Advertisement

<wsdl:service name="helloService" interface="hy:helloInterface"> <wsdl:endpoint name="helloEndpoint" binding="hy:helloBinding" address="http://www.myorg.com/Service/Hello"/>

This markup defines a WSDL that imports an external XML schema named "helloworld.xsd" which contains the namespace "http://schemas.myorg.com/person/phone."

The import statement in the WSDL imports an XML namespace from a file. The primary purpose of the import element is to import the namespace, not to indicate where the declarations in the namespace can be found. The element includes the optional "schemaLocation" attribute. The attribute is optional because a namespace can be imported from the same file or be registered in another way. According the WSDL specification, "schemaLoction" is only a hint; an XML parser is free to ignore the location. If the parser already knows about the schema types in that namespace, or has another mechanism of finding them, it does not have to use the location. However, in many cases a namespace is imported that the XML parser knows nothing about, so the "schemaLocation" attribute becomes necessary, but technically it's still just a hint.

Video of the Day

Advertisement

Advertisement

references

Report an Issue

screenshot of the current page

Screenshot loading...