Inherit from this class if you want to host your web services inside a Console Application, Windows Service, etc. Usage of HttpListener allows you to host webservices on the same port (:80) as IIS however it requires admin user privillages.
Inheritance: ServiceStack.WebHost.Endpoints.Support.HttpListenerBase
		public WinService(AppHostHttpListenerBase appHost, string listeningOn)
		{
			this.appHost = appHost;
			this.listeningOn = listeningOn;

			this.appHost.Init();

			InitializeComponent();
		}
 public void TestFixtureSetup()
 {
     appHost = CreateAppHost();
     appHost.Init();
     appHost.Start(BaseUrl);
 }