web.config文件出错

时间:2017-01-18 04:15:08

标签: c# asp.net web-config

我使用asp.net开发一个Web应用程序,该应用程序完全在localhost中工作,也可以直播。但是当我们的Web应用程序遇到重大请求时会收到此错误。 错误显示在web.config中的browserCaps标记

错误描述是 -

  

在处理为此请求提供服务所需的配置文件期间发生错误。请查看下面的具体错误详细信息并适当修改配置文件。

我在网络方法上设置了CacheDuration

[WebMethod(CacheDuration = 1000)]

这是网络方法,

[WebMethod(CacheDuration = 1000)]
[SoapHeader("Credentials")]
public string GetData(string input_01)
{
    string output_01;
    //doing some stuff 
    return output_01;
}

是否出现错误,因为缓存 ???

This is the error report

如果您想了解更多详情,请发表评论。

感谢。

0 个答案:

没有答案