Getting error while integrating c# with Aras IOM in Visual studio. Can any one help me thanks in advance

When i'm to connect c# with Aras through Visual Studio . Below is my code even i have added Aras.Net.dll , IOM.dll , Aras.Diagnostics.dll  in to my project reference, below is my sample code and error

string user = "admin";
String pass = "innovator";
String db = "TrainingDB";
String url = "">localhost/.../default.aspx";
HttpServerConnection con = IomFactory.CreateHttpServerConnection(url, db, user, Innovator.ScalcMD5(pass));

Item login_Result = con.Login();
if (login_Result.isError())
Console.WriteLine("Login Failed");

Innovator inn = IomFactory.CreateInnovator(con);
Console.WriteLine(login_Result);

return login_Result;

Error ::

{<SOAP-ENV:Envelope xmlns:SOAP-ENV="">schemas.xmlsoap.org/.../" xmlns:i18n="">www.aras.com/I18N"><SOAP-ENV:Body><SOAP-ENV:Fault> <faultcode>1</faultcode> <faultactor></faultactor> <faultstring>      999      HTTP Error      HttpServerConnection      System.Xml.XmlException: An error occurred while parsing EntityName. Line 61, position 60.      </faultstring></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>}

Parents Reply Children
No Data