【发布时间】:2018-11-22 03:20:28
【问题描述】:
我正在使用 fiddler 来测试我的网络服务。它连接到 SQL 服务器数据库(已连接并正在运行) get 在本地主机上工作,并通过 VS 2017 中的 IIS Express 工作。在 IIS 上,除了通过提琴手的 GET 请求外,服务器工作。如果您需要查看我的Service1.svc 文件,请告诉我(代码过多,文本不足错误)我已尝试所有其他答案
web.config
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.6.1" />
<httpRuntime targetFramework="4.6.1"/>
</system.web>
<system.serviceModel>
<!--<behavior>
To avoid disclosing metadata information, set the values below to false before deployment
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="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> -->
<bindings>
<webHttpBinding>
<binding name="restLargeBinding" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" transferMode="Streamed">
<readerQuotas maxStringContentLength="2147483647"/>
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="myWebEndPointBehaviour">
<webHttp automaticFormatSelectionEnabled="true" defaultBodyStyle="Bare" defaultOutgoingResponseFormat="Json" helpEnabled="true"/>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="myServiceBehaviour">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true"/>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="TestWcfService.Service1" behaviorConfiguration="myServiceBehaviour">
<endpoint address="" contract="TestWcfService.IService1" binding="webHttpBinding" bindingConfiguration="restLargeBinding" behaviorConfiguration="myWebEndPointBehaviour"></endpoint>
<endpoint address="mex" contract="TestWcfService.IService1" binding="mexHttpBinding" />
</service>
</services>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="true"/>
</system.webServer>
IService1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
namespace TestWcfService
{
// NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
[ServiceContract]
public interface IService1
{
// TODO: Add your service opperations here
// Get Method
[OperationContract]
[WebGet(UriTemplate = "GetUserName")]
List<UserName> GetUserName();
// Post Method
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "AddUser", BodyStyle = WebMessageBodyStyle.WrappedRequest, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
int AddUser(string user);
}
[DataContract]
public class UserName
{
string user;
[DataMember]
public string User
{
get { return user; }
set { user = value; }
}
}
}
【问题讨论】:
-
可以调试wcf服务吗?
-
我可以,但我在 Visual Studio 中没有收到错误,仅在提琴手上
-
我建议在您的代码中编写适当的异常处理,并在一些日志文件中写入错误和异常详细信息。这样你就可以知道你得到了什么确切的错误。您共享的 Fiddler 屏幕截图没有说明错误消息。所以不确定可能是什么问题。我假设 Visual Studio、IIS 和提琴手都在同一台机器上。
-
你在浏览器(邮递员)中测试过并正确返回结果吗?您用于连接 SQL 服务器的身份验证是什么?尝试使用 SQL Server 身份验证。
-
我发现了异常,它是
Login failed for user 'IIS APPPOOL\WCFService搜索引导我找到解决问题的已接受答案stackoverflow.com/questions/7698286/… 接受我添加了IIS APPPOOL\WCFService的登录名而不是@ 987654331@回答。