5

我正在尝试在Visual Studio中调试HTTP 处理程序并且断点没有被命中。有没有人知道如何在 Visual Studio 中调试 HTTP 处理程序?

我在Windows 7机器上使用VS 2010 Premium.NET 4.0 。在我的 Web 应用程序中,我在/HTTPHandler/TrackingHandler.cs中有一个 HTTP 处理程序

以下是在我的网络配置文件中:

<system.webServer>
        <handlers>
            <add name="TrackingHandler" path="/tx/*" verb="*" type="ProjectNamespace.TrackingHandler" resourceType="Unspecified" preCondition="integratedMode" />
        </handlers>
  </system.webServer>

我的HTTP 处理程序如下所示

namespace ProjectNamespace
{
    public class TrackingHandler : IHttpHandler
    {
        public bool IsReusable
        {
            get { return true; }
        }

        public void ProcessRequest(HttpContext context)
        {
             //Breakpoint on the very first line below
             string tracker = Path.GetFileName(context.Request.PhysicalPath);
              .......
         }
     }
}

我使用内置的 Web Server使用Visual Studio Debug中的任何随机页面启动我的 Web 应用程序。然后我手动编辑 URL 以指向/tx/ 目录和它之后的一些随机字符串。例如,我当前的 URL 看起来像http://localhost:53699/tx/sdfs我认为这应该在ProcessRequest()的第一行拉断点, 但事实并非如此。

我会很感激任何想法。

面向对象

编辑:附加信息

Project PropertiesWeb Tab中,我选择了 Don't open a page。等待来自外部应用程序的请求。我也得到了一个System.Web.HttpException,所以我去了Debug -> Exceptions -> Common Language Runtime并选中了System.Web旁边的框。

以下是我的堆栈跟踪。它似乎没有到达我的处理程序。我是否在我的Web 配置中错误地定义了它?

>   System.Web.dll!System.Web.StaticFileHandler.GetFileInfo(string virtualPathWithPathInfo, string physicalPath, System.Web.HttpResponse response) + 0x1f7 bytes    
    System.Web.dll!System.Web.StaticFileHandler.ProcessRequestInternal(System.Web.HttpContext context = {System.Web.HttpContext}, string overrideVirtualPath) + 0xc7 bytes  
    System.Web.dll!System.Web.DefaultHttpHandler.BeginProcessRequest(System.Web.HttpContext context, System.AsyncCallback callback = {Method = {System.Reflection.RuntimeMethodInfo}}, object state = null) + 0x15c bytes   
    System.Web.dll!System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 0x2d7 bytes    
    System.Web.dll!System.Web.HttpApplication.ExecuteStep(System.Web.HttpApplication.IExecutionStep step = {System.Web.HttpApplication.CallHandlerExecutionStep}, ref bool completedSynchronously = true) + 0xb9 bytes  
    System.Web.dll!System.Web.HttpApplication.ApplicationStepManager.ResumeSteps(System.Exception error) + 0x13e bytes  
    System.Web.dll!System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext context, System.AsyncCallback cb, object extraData) + 0xf8 bytes  
    System.Web.dll!System.Web.HttpRuntime.ProcessRequestInternal(System.Web.HttpWorkerRequest wr = {Microsoft.VisualStudio.WebHost.Request}) + 0x1a2 bytes  
    System.Web.dll!System.Web.HttpRuntime.ProcessRequestNoDemand(System.Web.HttpWorkerRequest wr) + 0x7d bytes  
    System.Web.dll!System.Web.HttpRuntime.ProcessRequest(System.Web.HttpWorkerRequest wr) + 0x47 bytes  
    WebDev.WebHost40.dll!Microsoft.VisualStudio.WebHost.Request.Process() + 0x17b bytes 
    WebDev.WebHost40.dll!Microsoft.VisualStudio.WebHost.Host.ProcessRequest(Microsoft.VisualStudio.WebHost.Connection conn = {System.Runtime.Remoting.Proxies.__TransparentProxy}) + 0x6c bytes 
    [Appdomain Transition]  
    WebDev.WebHost40.dll!Microsoft.VisualStudio.WebHost.Server.OnSocketAccept(object acceptedSocket) + 0x83 bytes   
    mscorlib.dll!System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(object state) + 0x2d bytes 
    mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool ignoreSyncCtx) + 0xb0 bytes    
    mscorlib.dll!System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem() + 0x5a bytes 
    mscorlib.dll!System.Threading.ThreadPoolWorkQueue.Dispatch() + 0x147 bytes  
    mscorlib.dll!System.Threading._ThreadPoolWaitCallback.PerformWaitCallback() + 0x2d bytes    
    [Native to Managed Transition]
4

3 回答 3

3

将处理程序发布到它自己的 IIS 应用程序,然后Visual Studio 附加到 IIS,您就可以进行调试了。

如果您不想或无法部署到 IIS(在调试 HTTP 处理程序时,我配置 Post Build 脚本以将项目发布到 IIS),您可以通过将项目的启动选项设置为“不要”来调试 Cassini打开页面'并将 Visual Studio 附加到aspnet_wp.exe.

并且不要忘记以管理员身份运行 Visual Studio,否则附加将不起作用。

于 2012-06-18T15:12:41.487 回答
2

当所有其他方法都失败时,您可以使用 DebugBreak()、__debugBreak() 或 _asm int 3 在应用程序中生成调试中断。执行此操作并安装 MSDev 后,您应该会看到一个对话框,询问您是否要终止或调试。这使您可以立即运行并稍后附加,并且无需知道要附加到什么即可工作。

于 2012-06-18T16:44:18.523 回答
1

如果您从选项工具->附加到进程并选择所需的进程将进程附加到断点(例如 w3wp.exe),断点将受到影响。

于 2014-02-11T10:04:31.177 回答