Provides method to create Innovator instances.

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

Syntax

C#
public class IomFactory
Visual Basic (Declaration)
Public Class IomFactory
J#
public class IomFactory
JScript
public class IomFactory

Remarks

There is no public constructor defined for this class. All its public methods are static. To get a refernce to IomFactory instance in JavaScript code one may: a) use aras.IomFactoryproperty; b) access IomFactory defined on custom HTML page. For example, customer wrote a page with the following HTML code:
CopyJavaScript
...
<OBJECT id="IomFactory" classId="../cbin/IOM.dll#Aras.IOM.IomFactory"></OBJECT>
...
Then the IomFactory may be accessed from JavaScript as
CopyJavaScript
...
<script>
  var iomFactory = document.getElementById("IomFactory").object;
  var connection = iomFactory.CreateHttpServerConnection("http://", "db", "userName", "password");
</script>
...

Inheritance Hierarchy

System..::.Object
  Aras.IOM..::.IomFactory

See Also