using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.SessionState; using TransIpApiLibrary; namespace TestApplication { public class Global : System.Web.HttpApplication { protected void Application_Start(object sender, EventArgs e) { // Init of the API, using this call the static objects will be prepared // for some API action. If you do not have/want this Global.asax file, you can // copy+paste this line to the location you're using the API, // however: speed+memory usage will be better if you only call this function once // per application lifetime. TransIpApi.initTransIpApi("lemmid", "conjoapieskijken", "83.83.245.105", TransIpApiMode.READONLY); } } }