Click or drag to resize

IomFactory Class

Provides method to create Innovator instances.
Inheritance Hierarchy
SystemObject
  Aras.IOMIomFactory

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public class IomFactory

The IomFactory type exposes the following members.

Methods
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:
JavaScript
...
<OBJECT id="IomFactory" classId="../cbin/IOM.dll#Aras.IOM.IomFactory"></OBJECT>
...
Then the IomFactory may be accessed from JavaScript as
JavaScript
...
<script>
  var iomFactory = document.getElementById("IomFactory").object;
  var connection = iomFactory.CreateHttpServerConnection("http://", "db", "userName", "password");
</script>
...
See Also