Unable to debug multiple ASP.NET projects simultaneously

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Unable to debug multiple ASP.NET projects simultaneously

    Hi,

    I was trying to debug two different ASP.NET projects at the same time. But I
    was only able to debug one of them and I got the following error for the
    other one:
    "Unable to start debugging on the web server. A debugger is already
    attached."

    When I further checked the Output window, I noticed another error message:
    'Auto-attach to process '[2248] aspnet_wp.exe' on machine 'CSSVR' failed.
    Error Code 0x80040001 (Invalid advise flags).

    Does it mean that I cannot debug 2 different ASP.NET application
    simultaneously or there is some configuration that I need to do? Any help is
    greatly appreciated.

    Jimmy


    Jimmy Guest

  2. Similar Questions and Discussions

    1. Add Multiple Values Simultaneously
      When you add a new Pull Down Form field entry, you can only add 1 value at a time. I used to have an extention that allowed me to Copy a List and it...
    2. Publish Multiple Files Simultaneously..??
      I have an application that takes a xml feed and transforms it via xsl to html and publishes it to a single folder on a daily basis. Does anyone...
    3. Edit multiple text layers simultaneously (PS6)
      Is anyone aware of ways to apply text styles to different (linked) layers? Eg Adjust the kerning, font etc. I am sure I have read that it can...
    4. Dragging multiple movie clips simultaneously
      Here's a problem that's probably been asked many times but in all of my searching I haven't found a good workaround for it. Maybe someone can think...
    5. One solution containing multiple projects and multiple hosts
      Can anyone help? jsausten@hotmail.com (Stephen Miller) wrote in message news:<cdb404de.0306160645.428f9f46@posting.google.com>...
  3. #2

    Default Re: Unable to debug multiple ASP.NET projects simultaneously

    asp.net only supports one debugging session at a time, unless you switch to
    iis 6.0 and mulitple application pools are used. (each pool can have one
    debugger session).

    you can debug two projects at once, but you can only use 1 debugging sesion.
    to debug in your case, start one project with the debugger, then (using that
    debugging session) open the file of the other project you want to debug and
    set the breakpoint in it.

    you can also just start the debugger (with a blank solution, attach to
    asp_net.exe), then open files and set breakpoints at will.

    -- bruce (sqlwork.com)



    "Jimmy" <sharkdip@hotmail.com> wrote in message
    news:eSRowtNRDHA.304@tk2msftngp13.phx.gbl...
    > Hi,
    >
    > I was trying to debug two different ASP.NET projects at the same time. But
    I
    > was only able to debug one of them and I got the following error for the
    > other one:
    > "Unable to start debugging on the web server. A debugger is already
    > attached."
    >
    > When I further checked the Output window, I noticed another error message:
    > 'Auto-attach to process '[2248] aspnet_wp.exe' on machine 'CSSVR' failed.
    > Error Code 0x80040001 (Invalid advise flags).
    >
    > Does it mean that I cannot debug 2 different ASP.NET application
    > simultaneously or there is some configuration that I need to do? Any help
    is
    > greatly appreciated.
    >
    > Jimmy
    >
    >

    bruce barker Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139