Previous Table of Contents   Next  


7.10 Output Data

7.10.1 IDL File

   Format of the generated IDL file is as follows:

module module_name {

   interface interface_name {typedef type type_name;exception exception_structure_name {

   data_type member_name;};

type_name operation_name(in|inout|outdata_type parameter_name,...)[raises( exception_structure_name,.... )];

   };};

7.10.2 SOAP Information File

   This file contains the information that is missing from IDL but necessary for the SOAP-CORBA gateway. Information described in the SOAP information file is as follows.

Parameter Name

Parameter Value

Description

SOAPAction Method name and ACTION information Specify the method name with full scope in the IDL (e.g., ::module1::interface1::op1). Following the method name, specify the value of soapAction property in <soap:body> element. Separate the method name and the value of soapAction by one or more spaces.

7.10.3 Identifier Information File

   This file contains a table of original names and converted names, in case names (identifiers) are converted. The <name> element is generated even if they are not converted.