Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Web Tools Guide
Previous Page Home Next Page

Creating a new WSDL file

You can create a new, empty WSDL file, then edit it using the WSDL editor.

To create a WSDL file, complete the following steps:

  1. Create a project to contain the WSDL document. It does not matter what kind of project you create.
  2. In the workbench, click File > New > Other and select Web Services > WSDL . Click Next.
  3. Select the project or folder that will contain the WSDL file. In the File name field, type the name of the WSDL file. The name of your XML file must end in .wsdl
  4. Click Next and enter the following information on the next page of the wizard:
    1. A Target namespace for the WSDL file or accept the default (https://www.example.org/MyWSDLFile/). The target namespace is used for the names of messages and the port type, binding and service defined in the WSDL file. The value must take the form of a valid URI (for example, https://www.mycompany.com/myservice/)
    2. The Prefix associated with the target namespace.
    3. Select Create WSDL Skeleton if you want the wizard to create the skeleton of the WSDL file. This will generate the WSDL elements required for your service, including bindings, ports and messages. You can then modify these to meet the requirements of your Web service .
    4. If you have chosen to create a WSDL skeleton, select the binding options you want to use in the Protocol drop down. The options are SOAP and HTTP. Use the SOAP protocol when you want to exchange structured and typed information. Use the HTTP protocol when you want your application client to just request or update information.
    5. If you select SOAP you can then select the encoding style you want to use:
      • document literal. Document style messages, literal encoding. Use this style of binding when you want to send SOAP messages that can be validated by an XML validator. All the data types in the SOAP message body are defined in a schema, so the WSDL parts must point to schema elements.
      • rpc literal. RPC style messages, literal encoding. Use this style of binding when you want to specify the operation method names in your SOAP messages so a server can dispatch the specified methods. Data types must be defined, so the WSDL parts must point to XSD types.
      • rpc encoded. RPC style messages and SOAP encoding. Use this style of binding when you want to encode data graphs in your SOAP messages so a server can deserialize the object data. Data types must be defined, so the WSDL parts must point to XSD types.
    6. If you select HTTP you can select whether to create an HTTP getter or setter.
      • HTTP GET. A GET request fetches data from a Web server based on an URL value and a set of HTTP headers. Use this method when you want to retrieve information specified in the request.
      • HTTP POST. A POST request sends additional data to the server, specified after the URL and the headers. Use this method when you want to send data enclosed in the body of the request.
  5. Click Finish. The WSDL file opens in the WSDL editor.

If you created a WSDL file with a skeleton using SOAP bindings, it should look similar to the following:


Image of a WSDL skeleton using SOAP bindings

If you created a WSDL file with a skeleton using HTTP bindings, it should look similar to the following:


Image of a WSDL skeleton using HTTP bindings


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire