当前位置:  开发笔记 > 编程语言 > 正文

Asp.Net Ajax WebService和内部错误500

如何解决《Asp.NetAjaxWebService和内部错误500》经验,为你挑选了1个好方法。

我可以使用以下URL直接将webservie调用到浏览器,它将返回我想要的所有内容:

http://localhost:64438/MySearchAutoComplete.asmx/GetCompletionList

当我将它添加到autocompleteexetender到Default.aspx页面时,如下所示:


页面加载,我有一个文本框但每次在文本框中添加击键时我都有一个错误500.我在FireFox FireBug中看到了错误.

http://localhost:62702/   --->This is the webpage that load fine 

alt text http://clip2net.com/clip/m12122/1269451120-clip-2kb.png - >这是错误

任何的想法?我注意到我需要附加调试webservice的过程,我也可能做错了吗?

编辑(事件查看器)

如果我去我的机器的事件查看器.我可以看到 :

Exception information: 
    Exception type: InvalidOperationException 
    Exception message: Request format is unrecognized for URL unexpectedly ending in '/GetCompletionList'. 


    Thread information: 
    Thread ID: 8 
    Thread account name: MTL\daok 
    Is impersonating: False 
    Stack trace:    at     System.Web.Services.Protocols.WebServiceHandlerFactory.CoreGetHandler(Type type, HttpContext context, HttpRequest request, HttpResponse response)
   at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
   at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig)
   at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

我还必须首先启动webservice项目,而不是停止它并启动webproject以便能够同时启动它们.web服务仍然可以工作(我可以直接启动http:// localhost:64438/MySearchAutoComplete.asmx?op = GetCompletionList)但是在网页上我仍然有错误500.

编辑2(Web.config)

添加到webservice项目web.config:

  
    
      
      
    
  

没有解决问题.

编辑3(直接通话)

在Page_Load()中调用WebService中的相同方法非常有效:

     string[] stuffs;
     stuffs = proxy.GetCompletionList("1", 10);
     MyList.DataSource = stuffs;
     MyList.DataBind();

但它不适用于AutoCompleteExtender ......



1> Martin Smith..:

在Web服务器(即本地计算机)上的事件日志中,它应该提供更详细的错误消息.

把它添加到你的web.config我想


    
        
        
    

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有