2009-10-22 150 views
0

我正在使用ConvincingMail.AdvancedAutoSuggest.dll,它在本地主机上正常工作。在Web服务器上上传网站后,我发现autosuggest无法正常工作。但网站正在运行。ConvincingMail.AdvancedAutoSuggest.dll不能在服务器上工作

请告诉我会是什么原因和解决办法。

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

在此先感谢。

问候

Debashis

回答

0

这是因为GET和POST从本地acessing WebService时,不默认情况下禁用。为了解决这个问题,你需要在你的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。 more info in the forum

相关问题