The solution I found was to create an instance of the HttpRuntime and then call 
the
function from the new instance.

ie:

instead of HttpRuntime.UnloadServer();

HttpRuntime htrt = new HttpRuntime();
htrt.UnloadServer();

James Purser

Reply via email to