Using the FTP Binding Component in a Project

Creating the XML Schema

In this section the user adds a new XML schema file and XML schema components to the BPEL Module project.

The XML schema allows you to visualize and edit XML schemas. Using the XML schema, you can reference external schemas and use advanced queries to analyze the schemas.

GlassFish ESB comes bundled with a rich set of tools to work with various XML documents such as XML Schema, WSDL, BPEL, and XML instance documents. The tools provide several options to edit and visualize XML documents. In addition it also provides refactoring support, search, queries and find usage, seamless navigation between views, design pattern and schema aware code completion support.

Using the XML schema functionality, you can:

ProcedureTo Create XML Schema

  1. Expand the project node. Right-click either the BPEL Module node or Process Files. Choose New —> Other in the Projects Window.

    The New File wizard opens.

  2. In the New File wizard, perform the following:

    1. Select the XML node in the Choose File Type page — Categories list. Select the XML Schema node in the File Types list and click Next.

    2. Type the File Name in the File Name field.

      For example, bookInventory

    3. Click Finish.

    In the Projects window, the Process Files node now contains a subnode labeled bookInventory.xsd. The Source Editor contains a tab for the XML schema file named bookInventory.xsd. The Schema view for this file is also displayed.

  3. Click the Design button to open the Design view of the XML schema editor.

ProcedureTo Add a Complex and a Global Complex Type to the XML Schema

  1. Select the Complex Types node in the first column of the Schema view.

  2. Right-click and choose Add Complex Type...

    Add Complex type

    This opens the Add Complex Type dialog box.

    Add Complex Type Dialog
  3. Type the name in the Name field.

    For example, author

    1. Select Type Definition: Inline Definition

    2. Select Compositor: Sequence

      A preview of the XML code is also displayed at the bottom of the box.

  4. Click OK.

ProcedureTo Add Element to the XML Schema

  1. Select the Complex Types —> author in the Schema view. Right-click on either author or sequence and choose Add —> Element...

    Add Element

    This opens Add Element dialog box.

  2. Type the Name of the Element.

    For example, firstname

  3. Type from the list of radio button options. In the current example, choose the Use Existing Type radio button. In the listing area beneath the Type radio button, expand the Built-in Types node. Select string.

    Add Element Use Existing Type
  4. Click OK.

    The Schema view now contains a node for the firstname element, whose parent is the sequence under the author Complex Types.

  5. Click Save All.

    Similarly, create another Element — lastname. Repeat steps 1 through 5.

    Add Complex Types
See Also

Click Complex Types — Add Complex Type...

ProcedureTo Add Elements to the XML Schema

  1. Select Elements in the first column of the Schema view.

  2. Right-click and choose Add Element...

    Add Element

    This opens Add Element dialog box

  3. Type the Name of the Element.

    For example, bookstore

  4. Select the Use Existing Type radio button. In the listing area beneath the Type radio buttons, expand the Complex Types node. Select book.

    For example, book

    Element Complex Types

    In the current example, book is a Global Complex Type because it comprises of five Element Types (genre, titles, author (Global Complex Type), price, and quantity).

  5. Click OK.

    Element Complex Type
  6. Click Save All.