ConvincingMail.AdvancedAutoSuggest.dll 无法在服务器上运行

发布于 2024-08-08 03:23:52 字数 225 浏览 10 评论 0原文

我正在使用 ConvincingMail.AdvancedAutoSuggest.dll,它在本地主机上工作正常。将网站上传到网络服务器后,我发现自动建议不起作用。但网站正在运行。

请告诉我这是什么原因,以及解决方案。

(如果没有可能,请告诉我替换ConvincingMail.AdvancedAutoSuggest.dll)

提前致谢。

问候

德巴希斯

I'm using ConvincingMail.AdvancedAutoSuggest.dll, It's woking fine at localhost. After uploading the site on Web Server I found that autosuggest not working. But Website is running.

Please tell me what will be the reason, and solution.

(If there is no possibility, tell me the replacement of ConvincingMail.AdvancedAutoSuggest.dll)

Thanks in advance.

Regards

Debashis

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望喜 2024-08-15 03:23:52

发生这种情况是因为当非从本地访问 Web 服务时,默认情况下禁用 GET 和 POST。要解决此问题,您需要将其添加到您的 web.config 文件中:

in web.config file find the <system.web> section and add 
<webServices>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="Documentation"/>
<add name="HttpPostLocalhost"/>
</protocols>
</webServices>

在其下方
例如,检查演示应用程序 web.config。 论坛中的更多信息

It happens because the GET and POST are disabled by default when acessing a webservice not from local. To fix this you need to add this in your web.config file:

in web.config file find the <system.web> section and add 
<webServices>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="Documentation"/>
<add name="HttpPostLocalhost"/>
</protocols>
</webServices>

under it
For example check the demo application web.config. more info in the forum.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文