This product version has reached end of life and is no longer supported. Click here for the latest documentation.

After defining your extension in Integration Studio, you have to code the extension and develop it using the suitable IDE , depending on the application server you are using. You can specify the IDE to be used in the Options Window . Learn more on how to Configure Integration Studio .

All the extension elements you have defined in Integration Studio are mapped as follows:

The extension elements are mapped, as explained above, for .NET and J2EE classes, methods, and structures. All extension elements, as defined in Integration Studio, are always synchronized for both platforms.

How to code an extension:

  1. Open, in the IDE , the .NET or Java solution and code the third-party methods according to your needs. You can simply use the Edit Source Code operation .

  1. Compile / build the .NET and/or Java project in order to generate the main dll (.NET assembly) and/or jar that implements the extension behavior.

When the extension is created, Integration Studio automatically generates the template files needed for the development boot-strap. For more information, see About Extension Source Files .

Typically, these are all the files you need in the development of the extension. However, if more files are necessary, for example a Help file or another dll, simply add them as dependencies of your third-party project. Afterwards, you should add them as resources of your extension in order to have all the files packed in the extension.

Source change management

Integration Studio has the necessary mechanisms to synchronize what you do in the tool itself and in the IDE, in order that no information is lost between these two environment tools.

On one hand, some of the changes you have made in the IDE are automatically synchronized in your extension; you don't have to explicit refresh the dll/jar or add, as resources, the dependencies of your third-party solution, located in the Binaries folder. Simply verify the extension or use the 1-Click Publish operation , and these changes made in the source code are updated in the extension.

Changes in the signature of your actions should not be done in the IDE; you should change the action directly in Integration Studio, as explained in the next paragraph.

On the other hand, any element (action, entity, or structure) created or changed in Integration Studio is automatically available or refreshed in the IDE, after invoking the Update Source Code operation. This operation merges the definition of the actions with the code you implemented in the IDE, without losing your source code. The elements of your extension are identified by its name, which means that if you want to change the name of an action, Integration Studio has no way of relating the old action to the new one. In this situation, you have to manually change the name of the respective method in the source code. To help you with this merging operation, you have the Compare With Template operation.

See Also

About the Extension Life Cycle | 1-Click Publish