|
|
Browse by Tags
All Tags » IOM (RSS)
-
Hello Russel.
Here is a C# sample for Innovator 8.2:
string innovatorServerUrl = ''http://myinnovator/Server/InnovatorServer.aspx'';
string database = ''mydatabase'';
string userName = ''admin'';
string password = Innovator.ScalcMD5(''innovator'');
HttpServerConnection httpConnection = ...
-
Please pay attention that there is no tag Item inside tag source_id. Thus getPropertyItem is not applicable.
If you try
IOM.Item itemProp = result.getPropertyItem(''related_id'');
textBox1.Text = itemProp.dom.InnerXml;
this should work.
Since you know ItemType id you may request the ItemType. For example:
string id = ...
-
Files are vaulted, Documents are created & ECN is created But the affected items list is to long to add one at a time through the ECN itself.
Can someone help me add affected items?
iomDoc.setProperty(''owned_by_id'', ''30B991F927274FA3829655F50C99472E'')
Dim str As String = iomDoc.getID ' this is nothing
Dim ...
-
Insufficient relationship count (0) of Located relationships. At least 1 required.
I can't vault a file - can some one explain what I'm doing wrong?
Dim conn As IOM.HTTPServerConnection = New IOM.HTTPServerConnection
conn.innovator_server_url = ...
-
Hello Toms,Innovator Server and Innovator Vault URLs must be full specified. For example ''http://MyMachine:8880/InnovatorServer/Server/InnovatorServer.aspx'' and ''http://MyMachine:8880/vaultserver/VaultServer.aspx''. 405 HTTP error means ''Directory listing is denied''.Also as far as I remember password must be MD5 encoded. Not just plain ...
-
How do I create a new Item Type through the IOM? Is this possible? I can see ways to create instances of existing types, but don’t see how to create the type itself
|
|
|