5

我正在尝试将 wcf restful 服务添加到我现有的 asp.net 4.0 网站(不是 mvc)。我很难找到一个很好的教程来逐步将一个添加到现有的应用程序/网站。我看到的任何地方都有关于创建新项目的注释(使用 wcf restful 模板)。基本步骤是什么?因为我在 .net 4.0 上,所以我可以在没有 .svc 文件的情况下执行此操作吗?有什么教程可以指点我吗?

到目前为止,我已经尝试添加定义服务合同并使用 webinvoke/webget 属性的 IService.cs 和 Service.cs 类,在 global.asax 中添加路由并在 web.cong 中添加服务定义,如本教程http://www .codeproject.com/Articles/255684/Create-and-Consume-RESTFul-Service-in-NET-Framewor但是当我指向 localhost/restservice 时,找不到 404。

更新:这是我的配置文件中的内容。请注意,这是一个现有的基于 wcf soap 的服务。

<system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="migrationServiceBehavior">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <bindings>
      <basicHttpBinding>
        <binding name="migrationHttpBinding" maxBufferSize ="104857600" maxReceivedMessageSize="104857600"/>
      </basicHttpBinding>
    </bindings>
    <services>
      <service name ="Site.Web.WebService.MigrationService" behaviorConfiguration="migrationServiceBehavior">
        <endpoint binding="basicHttpBinding"
                  bindingConfiguration="migrationHttpBinding"
                  contract="Site.Web.WebService.IMigrationService"/>
      </service>
    </services>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="true" />
  </system.serviceModel>
4

2 回答 2

9

您不需要*.svcWCF REST 服务的任何文件 - 您可以使用 a 激活它ServiceRoute- 请参阅RESTful WCF Services with No svc file and No config以获得很好的解释。

基本上它归结为ServiceRoute在您的路由表中添加一个global.asax

protected void Application_Start(object sender, EventArgs e)
{
    RouteTable.Routes.Add(new ServiceRoute("", new WebServiceHostFactory(), 
                                           typeof(YourService)));
}
于 2012-04-10T14:30:31.743 回答
2

不确定是否可以不使用 svc 文件。添加 svc 文件没什么大不了的。只需单击添加新项目和 YourServiceName.svc 。在 sc 文件中输入以下代码:-

<%@ServiceHost Service="YourNamsespace.YourWCFservice"%>

.net 4 可能带有直接添加 svc 文件的简单方法

public class Global : System.Web.HttpApplication
 {
     protected void Application_Start(object sender, EventArgs e)
  {
         RouteTable.Routes.Add(new ServiceRoute("", new WebServiceHostFactory(), typeof(YourService)));
   }
 }
于 2012-04-10T14:24:54.380 回答