Considerations for Specifying URLs in Resource Bundles
Some lookup keys reference documents, such as help information and release note documents. If you include these document files with your adapter, place them under
AdapterPackageName\pub (where
AdapterPackageName is the file system directory under the
Integration Server's packages directory where your adapter resides). For more information about the
Integration Server file system structure, see
Creating an Adapter Package.
In your lookup key, identify the resource file using the file path relative to the pub subdirectory. For example, to specify the location of the help file for SimpleConnection, a resource bundle would include the data value:
SimpleConnectionFactory.class.getName() +
ADKGLOBAL.RESOURCEBUNDLEKEY_HELPURL,
"\MyAdapter\help\eng\SimpleConnectionHelp.html"
This relative path is equivalent to the following path:
Integration Server_directory \packages\MyAdapter\pub\help\eng\SimpleConnectionHelp.html
This relative path scheme must be used for all URL references used by Designer as well as for the THIRDPARTYCOPYRIGHTURL clause. Other URL references accessed through the Server Administrator or the adapter's administrative interface may use other URL referencing schemes such as absolute paths or valid Internet addresses.