Provides method to create
Innovator instances.
Inheritance HierarchySystemObject
Aras.IOMIomFactory
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 14.0.20.39432
SyntaxThe IomFactory type exposes the following members.
Methods
| Name | Description |
---|
 | CreateCheckinManager(Item) | |
  | CreateCheckinManager(Item, CheckinManagerFlags) | |
 | CreateCheckoutManager(Item) | |
 | CreateCheckoutManager(Item, CheckoutManagerFlags) | |
  | CreateHttpServerConnection(String) | |
  | CreateHttpServerConnection(String, ITokenProvider, ProtocolType) | |
  | CreateHttpServerConnection(String, String, ITokenProvider) | Obsolete. |
  | CreateHttpServerConnection(String, String, ITokenProvider, ProtocolType) | Obsolete. |
  | CreateHttpServerConnection(String, String, String, String) | |
  | CreateInnovator | |
 | CreateMultiParentConfigurationBuilder | |
  | CreateWinAuthHttpServerConnection | |
Top
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:
...
<OBJECT id="IomFactory" classId="../cbin/IOM.dll#Aras.IOM.IomFactory"></OBJECT>
...
Then the
IomFactory may be accessed from JavaScript as
...
<script>
var iomFactory = document.getElementById("IomFactory").object;
var connection = iomFactory.CreateHttpServerConnection("http://", "db", "userName", "password");
</script>
...
See Also