Ok so I am trying to make a simple connection but for some reason I can't connect. What am I missing here...
Console.WriteLine("Code Started...");
Server _Server = new Server();
Client _Client = new Client();
_Client.LogToFile = false;
Connection _Connection = new Connection();
_Connection.ConnectionType = Connection.ConnectionT.Remote;
_Connection.Address = "server_ip";
_Connection.UserName = "username";
_Connection.PassWord = "password";
_Connection.Port = 16444;
_Server = _Client.Connect(_Connection, true);
Console.WriteLine(_Server.Connected.ToString());
I get one line of "New Client Connected" in the logs when I attempt the connection but not the ususal "User xxx logged in...". If I use the same exact username/password on the same development machine in the test client that comes with the VisualCron API directory, I can connect fine! But in my above case, I always get a "false" for my last Console.WriteLine statement. What am I missing here?
Thanks
Edited by user
2012-02-08T16:56:22Z
|
Reason: Not specified