diff --git a/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs b/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs index 91104bc..4481a28 100644 --- a/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs +++ b/DataCenter_Windows/WindowsDataCenter/WindowsDataServiceHost/Program.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -13,6 +14,7 @@ namespace WindowsDataServiceHost { var service = new DataCenterService(); service.Start(); + Process.Start("http://localhost:8800"); Console.WriteLine("Running DataService.."); Console.ReadLine(); service.Stop();