Send a request with the specified action and AML to Innovator server and write the obtained response into the outDOM.

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 11.0.0.6296

Syntax

C#
public override void CallAction(
	string actionName,
	XmlDocument inDom,
	XmlDocument outDom
)
Visual Basic (Declaration)
Public Overrides Sub CallAction ( _
	actionName As String, _
	inDom As XmlDocument, _
	outDom As XmlDocument _
)
J#
public void CallAction(
	String actionName,
	XmlDocument inDom,
	XmlDocument outDom
)
JScript
public override function CallAction(
	actionName : String, 
	inDom : XmlDocument, 
	outDom : XmlDocument
)

Parameters

actionName
Type: System..::.String
Action name (e.g. "ApplyAML", etc.)
inDom
Type: System.Xml..::.XmlDocument
AML that has to be sent to the server
outDom
Type: System.Xml..::.XmlDocument
Output parameter: empty XmlDocument that is filled with the server response.

Implements

IServerConnection..::.CallAction(String, XmlDocument, XmlDocument)

See Also