Sends request to Innovator server and returns server response as an item.

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

Syntax

C#
public Item applyAML(
	string AML
)
Visual Basic (Declaration)
Public Function applyAML ( _
	AML As String _
) As Item
J#
public Item applyAML(
	String AML
)
JScript
public function applyAML(
	AML : String
) : Item

Parameters

AML
Type: System..::.String
AML script to be sent to Innovator server.

Return Value

Server response.

Remarks

It's assumed that passed AML script has a root tag <AML> that contains one or more <Item> children elements. The method send the AML script to the server and returns an Item object where the dom property is the xml response returned from the server.

Exceptions

ExceptionCondition
System.Xml..::.XmlExceptionThere is a load or parse error in the AML.

See Also