Initial Release
Contains a Helper to display instance Request and Response message types, when the instance settings are viewed in Production
IRIS Integration Extensions and Utilities
zpm install alwo-enshelper
Extend a custom BusinessService, BusinessHost or BusinessOperation.
When Instance Settings of a custom class are viewed in Production on Management Portal, this helper adds two new fields to the "Information" section.
These fields show the Request Message Types and Response Message Types, consumed and returned by the production instance.
To use simply add this class name to the Extends list in class definition of any custom Service, Process or Operation type
objectScript
Class myService extends (Ens.BusinessService, alwo.EnsHelper.HostRequestResponseInfo)
{
...
}
objectScript
Class myBusinessProcess extends (Ens.BusinessProcess, alwo.EnsHelper.HostRequestResponseInfo)
{
...
}
objectScript
Class myOperation extends (Ens.BusinessOperation, alwo.EnsHelper.HostRequestResponseInfo)
{
...
}
Initial Release
Contains a Helper to display instance Request and Response message types, when the instance settings are viewed in Production