Hello World

The VastPark.VastService.HelloWorld name space contains a simple hello world program.

What starts it off is the global.asax file.

routeTable.Add(new ServiceRoute("", new WebServiceHostFactory(), typeof(IService1)));

In this case the Service Route contains three arguments in it's constructor which initialises the web service,

"" is the route prefix, in this case, an empty string

new WebServiceHostFactory() the service host factory(Not so sure what this does yet)

typeof(IService1) the Service that is to be hosted.