For information on converting to InterSystems IRIS, see the
InterSystems IRIS Adoption Guide
and the InterSystems IRIS In-Place Conversion Guide,
both available on the WRC Distributions page (login required).
This contains the password to be used for this connection. It is only used if the AuthenticationMode property
contains UddiAuthentication and ignored for all other values of the AuthenticationMode property. This property
is only used for publishing operations and is not used for inquiry operations.
This contains the user name to be used for this connection. It is only used if the AuthenticationMode property
contains UddiAuthentication and ignored for all other values of the AuthenticationMode property. This property
is only used for publishing operations and is not used for inquiry operations.
This callback method is invoked by the %New() method to
provide notification that a new instance of an object is being created.
If this method returns an error then the object will not be created.
It is passed the arguments provided in the %New call.
When customizing this method, override the arguments with whatever variables and types you expect to receive from %New().
For example, if you're going to call %New, passing 2 arguments, %OnNew's signature could be:
Method %OnNew(dob as %Date = "", name as %Name = "") as %Status