© 2024 InterSystems Corporation, Cambridge, MA. All rights reserved.Privacy & TermsGuaranteeSection 508Contest Terms
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
Class myService extends (Ens.BusinessService, alwo.EnsHelper.HostRequestResponseInfo)
{
...
}
Class myBusinessProcess extends (Ens.BusinessProcess, alwo.EnsHelper.HostRequestResponseInfo)
{
...
}
Class myOperation extends (Ens.BusinessOperation, alwo.EnsHelper.HostRequestResponseInfo)
{
...
}