1

我正在编写 WCF 服务(json REST),并且在使用 wcftestclient.exe 时它工作正常

当我运行该测试工具时,它会在调试时触发我的断点,并且一切都预期工作。

但是,当使用浏览器导航到服务和方法时,不会触发断点。似乎请求甚至没有到达代码。

使用网络浏览器导航到服务时,我没有收到任何错误,它只是没有获取任何数据,或者触发断点。

抱歉,如果这是重复的,我已经阅读并尝试了在类似问题的答案中找到的许多不同配置,但似乎没有任何效果。

非常感谢您的帮助,我在下面发布了我的代码。

马丁

我有设置:ServiceContract

[OperationContract]
[WebGet(BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json)]
List<Country> GetAllCountries();

服务类:

    public List<Country> GetAllCountries()
    {
        ControlServiceRepository rep = new ControlServiceRepository();
        return rep.GetAllCountries().ToList() ;
    }

和我的网络配置

<system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="OmniData" behaviorConfiguration="ServiceConfig">
        <!-- Service Endpoints -->
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:55641/"/>
          </baseAddresses>
        </host>
        <endpoint address="" binding="webHttpBinding" contract="ControlService.IOmniData" behaviorConfiguration="rest" />
      </service>
    </services>
      <behaviors>
        <endpointBehaviors>
          <behavior name="rest">
            <webHttp helpEnabled="true"/>
          </behavior>
        </endpointBehaviors>
        <serviceBehaviors>
          <behavior name="ServiceConfig">
            <serviceMetadata httpGetEnabled="true"/>
            <serviceDebug includeExceptionDetailInFaults="false"/>
          </behavior>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
    <standardEndpoints>
      <webHttpEndpoint>
        <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="false" defaultOutgoingResponseFormat="Json"/>
      </webHttpEndpoint>
    </standardEndpoints>
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
4

2 回答 2

2

我认为你的合同中缺少一些东西

[OperationContract]
[WebInvoke(Method = "GET", UriTemplate = "/GetAllCountries", RequestFormat = WebMessageFormat.Json,ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedRequest)]
List<Country> GetAllCountries();

试试这个。让我知道它是否有帮助。

于 2012-11-12T21:15:44.093 回答
1

我最终通过删除配置中的所有端点并使用

RouteTable.Routes.Add(new ServiceRoute("", new WebServiceHostFactory(), typeof(OmniData)));

如果其他人有问题,这甚至比设置端点更容易,因为您可以在类本身中指定响应类型和端点。

所以:

如果确实存在,请添加 global.asax 并包括以下内容:

protected void Application_Start(object sender, EventArgs e)
        {
            RouteTable.Routes.Add(new ServiceRoute("", new WebServiceHostFactory(), typeof(OmniData)));
        }

装饰你的服务类

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]

这是我的:

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class OmniData : IOmniData
{
  public Country[] GetAllCountries()
  {
    ControlServiceRepository rep = new ControlServiceRepository();
    return rep.GetAllCountries().ToArray() ;
  }
}

然后是您使用 WebGet 或 WebInvoke 设置端点和类型的界面

public interface IOmniData
    {
        [OperationContract]
        [WebGet(UriTemplate = "OmniData/GetAllCountries", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare)]
        Country[] GetAllCountries();
    }

UriTemplate 是终点,因此要访问您将使用的方法:http: //MyService.com/OmniData/GetAllCountries

最后,网络配置

<system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
    <standardEndpoints>
      <webHttpEndpoint>
        <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="false"/>
      </webHttpEndpoint>
    </standardEndpoints>
    <services>
      <service name="OmniData">
        <!-- Service Endpoints -->
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:55641"/>
          </baseAddresses>
        </host>
        <endpoint address="" binding="webHttpBinding" contract="ControlService.IOmniData" behaviorConfiguration="rest" />
      </service>
    </services>
    <behaviors>
      <endpointBehaviors>
        <behavior name="rest">
          <webHttp />
        </behavior>
      </endpointBehaviors>
      <serviceBehaviors>
        <behavior name="Default">
          <serviceMetadata httpGetEnabled="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

来自这里的很多帮助

但是,重要的是,对于我想要的 json 结果,您需要确保: automaticFormatSelectionEnabled="false" 在那里,因此它将使用界面中指定的响应格式。否则,您最终会使用 XML。

希望这对其他人有帮助

再次感谢提琴手!

马丁

于 2012-11-13T11:43:12.970 回答