public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; //context.Response.Write(studioControllerV1.GetAgentQueueXml(context, MyConfig.MyConnectionString)); context.Response.Write(studioControllerV1.GetStudioXml(context, MyConfig.MyConnectionString, true)); }
public void ProcessRequest(HttpContext context) { StudioControllerV1 studioController = new StudioControllerV1(); context.Response.ContentType = "text/plain"; context.Response.Write(studioController.GetStudioXml(context, MyConfig.MyConnectionString)); }