mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 11:02:07 +03:00
22 lines
583 B
C#
22 lines
583 B
C#
using System;
|
|
using System.ServiceModel.Activation;
|
|
using System.Web;
|
|
using System.Web.Routing;
|
|
|
|
namespace MyFriendsAround.WcfREST
|
|
{
|
|
public class Global : HttpApplication
|
|
{
|
|
void Application_Start(object sender, EventArgs e)
|
|
{
|
|
RegisterRoutes();
|
|
}
|
|
|
|
private void RegisterRoutes()
|
|
{
|
|
// Edit the base address of Service1 by replacing the "Service1" string below
|
|
RouteTable.Routes.Add(new ServiceRoute("Service1", new WebServiceHostFactory(), typeof(Service1)));
|
|
}
|
|
}
|
|
}
|