Advertisement
Guest User

Untitled

a guest
May 6th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public class Global : System.Web.HttpApplication
  2. {
  3.  
  4. protected void Application_Start(object sender, EventArgs e)
  5. {
  6. RouteTable.Routes.Add(new ServiceRoute("ServiceTest", new ServiceHostFactory(), typeof(IServiceTest)));
  7.  
  8. }
  9. }
  10.  
  11. public class Intializer
  12. {
  13. public static void AppInitialize()
  14. {
  15. // This will get called on startup
  16. RouteTable.Routes.Add(new ServiceRoute("ServiceTest", new ServiceHostFactory(), typeof(IServiceTest)));
  17.  
  18.  
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement