Monday, August 7, 2023

webMethods Package folder structure

Under packages folder, IS will be looking for all the packages that are available for execution or activation. 

Code:

This folder has subfolders as code, source and jars. Code is where the compiled class for Java services in that particular package will be stored. jars is place where you can include external jars

Config:

Any package related config files

doc:

Documentation for the package

lib:

External/internal libraries for the package

manifest.v3:

Package manifest, loaded into memory when the package is loaded.

ns:

This folder has all the code for the package. Except for the java services

pub:

Where the presentation is stored. Usually all the .dsp files are stored in this folder. .access file determines which file can be accessed from the web front end. Define file/folder and ACL in the file to provide specific accesses.

resources:

Still searching what can good use of this folder.

templates

Any output templates for the services will be stored in this folder.

web:

The wMTomcat package uses this folder. Provide the JSP application in this folder that you want to use as the web application under wMTomcat. If there is an application under this folder, the web cache for Tomcat will be in \IntegrationServer\instances\default\packages\xyz


Thanks for reading...

No comments:

Post a Comment

How to debug a Java Service.?

Please read my previous blog on Java Service Implementation to understand basics. After you have implemented Java Service successfully and e...