0

我遇到了 SharePoint 2010 自定义 Web 服务的问题。该服务是在系统上安装和部署的 SVC:无需特定配置即可工作,但我需要自定义 web.config 以实现一些安全角色。

问题是当我尝试从浏览器调用方法时,响应为空。

这是我的 web.config

<?xml version="1.0"?>
<configuration>
<system.serviceModel>
<services>
<service name="SharePointWCFService.GetListData" 
behaviorConfiguration="WCFBasicHttpBinding.Service1Behavior">
<endpoint address="http://address" binding="basicHttpBinding" contract="SharePointWCFService.IGetListData">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> 
<endpoint address="http://address" binding="WebHttpBinding" contract="SharePointWCFService.IGetListData" >
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
</service>
 </services>
 <behaviors>
 <serviceBehaviors>
 <behavior name="WCFBasicHttpBinding.Service1Behavior">
<serviceMetadata httpGetEnabled="true"/>

<serviceDebug includeExceptionDetailInFaults="true"/>
 </behavior>
 </serviceBehaviors>
 </behaviors>
 </system.serviceModel> 
 </configuration>

这是我正在实现的接口:

[ServiceContract]
 public interface IGetListData
 {
   [OperationContract]
   [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
   JSonResult GetJsonResponse(string data);

}

而这堂课

[BasicHttpBindingServiceMetadataExchangeEndpointAttribute]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
class GetListData : IGetListData
{
    private const string Admin_Svc_GetListData = "Admin_Svc_GetListData";

    public JSonResult GetJsonResponse(string data)
    {
        return new JSonResult()
        {
            Firstname = "MyFirstname",
            Lastname = "MyLastname"
        };
    } //  public JSonResult GetJsonResponse(string data)

我必须在 web.config 端声明一些不同的东西吗?

4

0 回答 0