The Application instance contains the information and authentication credentials needed to register and connect to the Unwired Server.
// Initialize Application settings
Application app = Application.GetInstance();
// The identifier has to match the application ID deployed to the SUP server
app.ApplicationIdentifier = "SUP101";
// ConnectionProperties has the information needed to register
// and connect to SUP server
ConnectionProperties connProps = app.ConnectionProperties;
connProps.ServerName = "supserver.mycompany.com";
// if you are using relay server, then use the correct port number for the relay server
// if connecting using http without a relay server, use the messaging administration port, by default 5001.
// if connecting using https without a relay server, then use a new port for https, for example 9001.
connProps.PortNumber = 5001;
// if connecting using https, set the network protocol
connProps.NetworkProtocol = "https";
// Set FarmId and UrlSuffix when connecting through the Relay Server.
// Provide user credentials
LoginCredentials loginCred = new LoginCredentials("supAdmin", "supPwd");
connProps.LoginCredentials = loginCred;
// Initialize generated package database class with this Application instance
SUP101DB.SetApplication(app);