How to Translate Inbound Native Data to XML Stored as an Attachment

This section describes how to translate an inbound message in native data format to an attachment. Attachments are useful for scenarios in which incoming data is very large.

To translate inbound native XSD format to an attachment:

  1. Create a BPEL process (for this example, a one-way BPEL process is created).
  2. Right-click the BPEL process in the SOA Composite Editor, and select Edit.

    Oracle BPEL Designer is displayed.

  3. Expand the Oracle Extensions section of the Components window and drag a Translate activity into the BPEL process.
  4. Right-click the translate activity, and select Edit.

    The Translate dialog is displayed for editing.

  5. Select Native to XML to translate inbound native data into an attachment.
  6. To the right of the Input field, click the Browse (first) icon.
  7. Select the input variable (for this example, a very large string). Figure 6-22 provides details.

    Figure 6-22 Input Variable Selection

    Description of Figure 6-22 follows
    Description of "Figure 6-22 Input Variable Selection"
  8. To the right of the NXSD Schema field, select the Search (first) icon to invoke the Type Chooser dialog.
  9. Select the schema file, and click OK. This example uses the same schema file as How to Translate Native Data to XML Data. Figure 6-23 provides details.

    Figure 6-23 Schema File Selection

    Description of Figure 6-23 follows
    Description of "Figure 6-23 Schema File Selection"
  10. From the Output Type list, select ATTACHMENT.

    The dialog is refreshed to display the Location field.

  11. In the Location field, enter the directory path to the attachment. If this field is left blank, the attachment is stored in the database.
  12. To the right of the Output field, click the Add (second) icon to invoke the Create Variable dialog.
  13. Click OK to create the output variable. The output variable is of type attachment.

    The Translate dialog looks as shown in Figure 6-24.

    Figure 6-24 Translate Dialog for an Attachment

    Description of Figure 6-24 follows
    Description of "Figure 6-24 Translate Dialog for an Attachment"
  14. Click OK.
  15. In the Applications window, select the BPEL process file.
  16. Click Source.
  17. Note that the location you specified for the attachment is copied to an href attribute. The href attribute is part of the variable of type attachment that was created in Step 12.
    . . .
    <copy>
      <from> '/scratch/sbandyop/tmp/out/dhqa_addr_att.xml'</from>
      <to> $Translate1_OutputVar_1/@href</to>
    </copy>
    . . .
    
  18. In the Applications window, select the BPEL process WSDL file.
  19. Click Source.
  20. Note the attachment code added to the WSDL definitions section of the file and the href attribute that is pointed to by the variable created in Step 12.
    . . .
    xmlns:attach="http://xmlns.oracle.com/DHQATranslateApp/DHQATranslateToAttach/BPELProcess1/attachment"
    . . .
    . . .
    . . .
       <element name="attachmentElement">
          <complexType>
             <attribute name="href" type="string"/>
          </complexType>
       </element>
    . . .
    . . .
    

    Design is now complete.