0

我已经阅读了大多数 WCF REST 404 帖子,但没有一个对我有帮助...

我已经成功构建了 WCF REST 服务。但是,现在它正在引起问题。我尝试只创建一个示例 WCF REST 服务,但如果不使用 .SVC,我无法让它工作。

这就是我的代码中的内容

 [ServiceContract]
    public interface IService1
    {
        [WebGet(UriTemplate="data")]
        [OperationContract]
        string GetData();
    }

 public class Service1 : IService1
    {
        public string GetData()
        {
            return "1";
        }
    }

这就是我在 web.config 中的内容

<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <services>
      <service behaviorConfiguration="Default" name="RESTService.Service1">
        <endpoint address="http://mydomain:8888/Service1.svc" 
                  binding="webHttpBinding" 
                  contract="RESTService.IService1" 
                  behaviorConfiguration="Web" />
        <endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="Default">
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
      <behavior name="Web">
        <webHttp />
      </behavior>
      </endpointBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>

</configuration>

当我去的时候http://mydomain:8888/data是在 404 响应。任何想法为什么它没有命中 GetData() 函数?如果我删除端点地址,则以下 URL 有效

http://mydomain:8888/Service1.svc/data

但是,我希望地址是http://mydomain:8888/data

4

1 回答 1

1

您可以尝试将您的 Web 配置保留在您正常工作的版本中(在路径中使用 svc),并在应用程序启动期间在全局 asax 文件中添加路由表条目

看看这个了解更多信息

http://msdn.microsoft.com/en-us/library/cc668177.aspx

于 2012-08-13T01:13:11.693 回答