TIP Soap Generator
JOSIF Main Page | JOSIF Framework | TIP Soap Generator
Introduction
The TIP Soap Generator is a sub project of the TIP Framework, which is being developed as part of JOSIF.
The purpose of the TIP Soap Generator is to generate the SOAP-based protocol specific artifacts from the following TIP Tigerstripe projects:
- The TIP Generator Internal Model with all its implicit TIP Interface meta-data definitions,
- The TIP Common Modelwith all its TIP common explicit TIP Interface meta-data definitions,
- All the TIP InterfacesModel projects
The generated SOAP-based protocol specific artifacts include:
- WSDL (Web Service Definition Language) v1.1 from W3C (http://www.w3.org/TR/wsdl) and the following two profiles:
- the SOAP/HTTP binding for standard-based Web Services specifications and Internet HTTP transport/communication protocol.
- General Patterns - Future the SOAP/JMS binding for Web Services specifications using a Java Message Service API as transport/communication protocol.
- XSD (XML Schema Definition) v1.0 from W3C (http://www.w3.org/XML/Schema#dev) for all XML-based data structure definitions
TS Model to XML Mapping Rules
Section | Content |
---|---|
general mapping mules and mapping rules for packages and entities | |
mapping rules for associations and association classes | |
mapping rules for datatypes, exceptions, notifications, enumerations, and primitives | |
mapping rules for session facades, parameters, operations, and mapping rules for SOAP bindings | |
mapping rules for enabling WS notification | |
mapping rules related to bulk transfer | |
mapping rules related to Filters | |
mapping rules related to EID | |
mapping rules related with Common Operations |
XSD Documentation Display Rules
Section | Content |
---|---|
the display rules for the XSD documentation |
External XSD support
Section | Content |
---|---|
the support for external XSDs in SOAP generator |
Code Access
- ViewVC link: http://openoss.svn.sourceforge.net/viewvc/openoss/tip/framework/TIP_Soap_Generator/
- SVN link: https://openoss.svn.sourceforge.net/svnroot/openoss/tip/framework/TIP_Soap_Generator/trunk/TIP_Soap_Generator/
Variables
The generator needs some values of variables to be provided by model projects. Here we give description and default value of these variables. Please note that some variables are possibly moved into the generator in next releases, and not need to exposure to the users.
Variable | Description | Default Value |
---|---|---|
ROOT_PKG | the root package of all TIP model. That is, any packages, any artifacts are enclosed by the root package or its children | org.tmforum.tip |
ROOT_XMLNS | The root XML namespace for all TIP specifications | http://www.tmforum.org/xml/tip |
COMMON_MODEL_MODEL_ID | the model id of TIP Common Model | tip_common_model |
COMMON_MODEL_VER | the version of TIP Common Model | 0.1 |
COMMON_MODEL_PKG | the root package of TIP Common Model | org.tmforum.tip.common |
INTERNAL_MODEL_MODEL_ID | the model id of TIP Generator Internal Model | tip_generator_internal_model |
INTERNAL_MODEL_PKG | the package where EntityIdentifier is defined | org.tmforum.tip.internal.entity |
COMMON_ENTITY_ID | the fully qualified name of EntityIdentifier | org.tmforum.tip.internal.entity.EntityIdentifier |
COMMON_ENTITY_BASE | the fully qualified name of EntityBase entity | org.tmforum.tip.internal.entity.EntityBase |
COMMON_EVENT_BASE | the fully qualified name of NotificationBase | org.tmforum.tip.common.notifications.NotificationBase |
COMMON_EXCEPTION_BASE | the fully qualified name of ExceptionBase | org.tmforum.tip.common.exceptions.ExceptionBase |
MODEL_SHORT_NAME | the short name of the TIP model. It will be used as first part of the names of the generated XSD and WSDL files | none |
DEPENDENCY_MODEL_SHORT_NAME | the short name of the dependency model. Every TIP model project will have at most 1 dependency model besides TIP common model. When we run the generator for the TIP model, some XSD files are possibly generated from the dependency model. The short name will be the first part of the names of the XSD files to indicate they are from dependency model | dep |
INJECT_EXCEPTIONS | a boolean to indicate if we inject pre-exceptions to every operation in WSDL | true |
Notes:
- Example of MODEL_SHORT_NAME for TIP SPM model, if we take its short name as 'spm', then the short name will appear at the first part of the file names such as 'spm_service_problem_serviceprobleminterface.wsdl'.
Following picture shows a sample configuration.