2

我的项目中有一个 Web 服务文件,它有一个用于 AutoCompleteExtender 的 Web 方法,当我从 VS 调试它时它工作正常。

但是当我在 IIS 上发布和托管它时,它无法正常工作。

但是,我通过键入 URL 直接测试了 webservice 方法,它给出了所需的输出。

是否需要在 IIS 中对其进行特殊设置才能使其正常工作,或者是否需要设置 AutoCompleteExtender 的任何属性?

4

6 回答 6

1

当我将站点从 cassini 移动到 IIS7.5 时,我遇到了这个问题。经过大量挖掘后,必须将以下内容添加到 system.webServer 部分的 web.config 中。希望能帮助到你。

<modules runAllManagedModulesForAllRequests="true">
      <remove name="ScriptModule" />
      <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    </modules>

<handlers>
  <remove name="ScriptHandlerFactory"/>
  <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</handlers>
于 2011-04-26T00:29:52.413 回答
0

从 ASP.NET 3.5 升级到 4.0 后,我遇到了同样的问题,无法让扩展器工作。从 firefox 和 firebug 我收到500 Internal Server Error的消息

System.InvalidOperationException:请求格式无效:application/json;字符集=utf-8。在 System.Web.Services.Protocols.HttpServerProtocol.ReadParameters() 在 System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()

我已经使用http://msdn.microsoft.com/en-us/library/bb763183.aspx建议的 web.config 设置进行了测试,但收到了配置错误。

于 2010-12-10T12:45:30.193 回答
0

它不是IIS或ath的问题。它实际上是一个错误(我认为)。在您的 webservice 函数中返回字符串数组,请检查函数的参数名称或参数。string参数的名称必须是prefixText,int字段的名称应该是count。

并且必须有这两个参数用于 web 服务中的函数。

像这样

[WebMethod]
  public string[] getCountry(string prefixText, int count)
    {
        ......
....
return ...
    }
于 2011-02-24T07:02:02.740 回答
0

尝试更改处理程序的顺序(删除然后添加)。在此示例中,我删除了除 AJAX/脚本处理程序之外的所有内容。

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true" />
  <handlers>
    <remove name="WebServiceHandlerFactory-Integrated"/>
    <remove name="WebServiceHandlerFactory-ISAPI-2.0"/>
    <remove name="WebServiceHandlerFactory-ISAPI-2.0-64"/>
    <remove name="WebServiceHandlerFactory-ISAPI-4.0_32bit"/>
    <remove name="WebServiceHandlerFactory-ISAPI-4.0_64bit"/>
    <!--<add name="WebServiceHandlerFactory-Integrated-4.0" ...</handlers> 
于 2010-12-13T14:26:38.723 回答
0

我面临着同样的问题。AutoCompleteExtender 在 IIS 7 Windows Server 2008 R2 中托管后无法正常工作。

通过将应用程序池的“托管管道模式”从“集成”更改为“经典”对我有用。可以通过选择应用程序池 -> 选择基本设置来进行此设置。

谢谢你。

于 2019-01-01T11:31:08.573 回答
-1

尝试这个

去开始>运行>inetmgr>

在连接侧窗格中..选择应用程序池

选择您在将该项目部署到 iis 时分配的应用程序池(检查是否转到站点>在连接窗格中...并右键单击您已部署的网站并选择管理网站>高级设置然后在顶部您将能够看到应用程序池)

然后回来并在连接窗格的应用程序池中选择该特定应用程序池右键单击该特定应用程序池并选择高级设置..找出其中的进程模型并选择身份并浏览它并转到内置帐户并选择本地系统。 ......然后点击确定......然后离开它......

我认为它会工作......它对我有用......

于 2013-03-05T08:08:29.453 回答