IOM TypeInitializationException error with Login

I have been trying to use IOM on 11SP9 but I'm unable to get this code working...  
// url = "">myserver/InnovatorServer";
url = "">myserver/.../InnovatorServer.aspx";

var myConnection = IomFactory.CreateHttpServerConnection(url, db, user, password);
 var objItemRes = myConnection.Login();

if (objItemRes.isError())
 {
 MessageBox.Show("Login error " + objItemRes.dom.InnerText);
 }
It gives this error: 999 HTTP Error HttpServerConnection System.TypeInitializationException: The type initializer for 'Aras.Net.WindowsAuthenticationHelper' threw an exception.   My project is build on .NET 4.5.2 and I have referenced IOM.dll Version 11.0.0.6549 (1/19/2017)   What can be wrong?      
Parents
  • I am getting same error 999 HTTP Error HttpServerConnection System.TypeInitializationException: The type initializer for ‘Aras.Net.WindowsAuthenticationHelper’ threw an exception. string serverAddress = "">localhost/.../InnovatorServer.aspx"; string database = "InnovatorSolutions"; string userName = "admin"; string password = "607920b64fe136f9ab2389e371852af2"; Innovator innovatorinstance = null; HttpServerConnection innServerConnection = IomFactory.CreateHttpServerConnection(serverAddress, database, userName, password); Item loginResponse = innServerConnection.Login(); if (loginResponse.isError()) { throw new Exception(loginResponse.getErrorString()); } else innovatorinstance = loginResponse.getInnovator();     Please let me know what could be the reason
Reply
  • I am getting same error 999 HTTP Error HttpServerConnection System.TypeInitializationException: The type initializer for ‘Aras.Net.WindowsAuthenticationHelper’ threw an exception. string serverAddress = "">localhost/.../InnovatorServer.aspx"; string database = "InnovatorSolutions"; string userName = "admin"; string password = "607920b64fe136f9ab2389e371852af2"; Innovator innovatorinstance = null; HttpServerConnection innServerConnection = IomFactory.CreateHttpServerConnection(serverAddress, database, userName, password); Item loginResponse = innServerConnection.Login(); if (loginResponse.isError()) { throw new Exception(loginResponse.getErrorString()); } else innovatorinstance = loginResponse.getInnovator();     Please let me know what could be the reason
Children
No Data