Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Getting this exception : This operation requires IIS integrated pipeline mode

Getting this exception : This operation requires IIS integrated pipeline mode

Scheduled Pinned Locked Moved ASP.NET
helpcsharpasp-netsysadminwindows-admin
16 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jitu gupta
    wrote on last edited by
    #1

    Hi all, I am using iis 5.1 and my application is in two part one is in asp.net net and another one is asp.net + ASP. My first application is woking fine but when i am calling the asp page then getting the server application error 404 . I try to debug the code then getting this exception . system.platformnotsupported exception and "This operation requires IIS integrated pipeline mode". Please help me out. its very urgent i am working with this error since one week. Thanks with regards, Jitendra

    J Y 2 Replies Last reply
    0
    • J jitu gupta

      Hi all, I am using iis 5.1 and my application is in two part one is in asp.net net and another one is asp.net + ASP. My first application is woking fine but when i am calling the asp page then getting the server application error 404 . I try to debug the code then getting this exception . system.platformnotsupported exception and "This operation requires IIS integrated pipeline mode". Please help me out. its very urgent i am working with this error since one week. Thanks with regards, Jitendra

      J Offline
      J Offline
      JMummery
      wrote on last edited by
      #2

      Hi Jitendra, If you are using Server.TransferRequest this cannot be used on any versions of IIS below version 7. If you are then this is the error you will get. Please post the code that you are using when you receive the error.

      Regards Julian Mummery
      Please Visit my FREE Bug / Fault Logging Website at FaultLogger.com**


      **

      J 1 Reply Last reply
      0
      • J JMummery

        Hi Jitendra, If you are using Server.TransferRequest this cannot be used on any versions of IIS below version 7. If you are then this is the error you will get. Please post the code that you are using when you receive the error.

        Regards Julian Mummery
        Please Visit my FREE Bug / Fault Logging Website at FaultLogger.com**


        **

        J Offline
        J Offline
        jitu gupta
        wrote on last edited by
        #3

        i am using the same code for calling the .aspx page but when i am trying to call those aspx page which having the asp file call those are not working. please let me know.

        J 1 Reply Last reply
        0
        • J jitu gupta

          i am using the same code for calling the .aspx page but when i am trying to call those aspx page which having the asp file call those are not working. please let me know.

          J Offline
          J Offline
          JMummery
          wrote on last edited by
          #4

          Hi, Please confirm, are you using Server.Transfer? yes or no.

          Regards Julian Mummery
          Please Visit my FREE Bug / Fault Logging Website at FaultLogger.com**


          **

          J 1 Reply Last reply
          0
          • J JMummery

            Hi, Please confirm, are you using Server.Transfer? yes or no.

            Regards Julian Mummery
            Please Visit my FREE Bug / Fault Logging Website at FaultLogger.com**


            **

            J Offline
            J Offline
            jitu gupta
            wrote on last edited by
            #5

            no i am not using server.transfer this is my code Response.Cache.SetCacheability(HttpCacheability.NoCache); if (HttpContext.Current.Items[Constant.Authorization] == null || !(bool)HttpContext.Current.Items[Constant.Authorization]) Response.Redirect(Constant.AccessRequestPage);

            1 Reply Last reply
            0
            • J jitu gupta

              Hi all, I am using iis 5.1 and my application is in two part one is in asp.net net and another one is asp.net + ASP. My first application is woking fine but when i am calling the asp page then getting the server application error 404 . I try to debug the code then getting this exception . system.platformnotsupported exception and "This operation requires IIS integrated pipeline mode". Please help me out. its very urgent i am working with this error since one week. Thanks with regards, Jitendra

              Y Offline
              Y Offline
              Yusuf
              wrote on last edited by
              #6

              How are you calling your asp pages? Asp and asp.net run on different engines. you can not directly interact between them. You can redirect calls from one to another. If you show us how you doing it, it will give us some clue as to what you trying to do. I have asp + asp.net running side by side. I interact between them, when I move from one to the other, I save my session state to db then call Request.Redirect("somepage.aspx?someparameter) (I call both somepage.asp and somepage.aspx the same way) then on the other side I load my session state read what I need to get and continue doing what I need to do.

              Yusuf

              J 1 Reply Last reply
              0
              • Y Yusuf

                How are you calling your asp pages? Asp and asp.net run on different engines. you can not directly interact between them. You can redirect calls from one to another. If you show us how you doing it, it will give us some clue as to what you trying to do. I have asp + asp.net running side by side. I interact between them, when I move from one to the other, I save my session state to db then call Request.Redirect("somepage.aspx?someparameter) (I call both somepage.asp and somepage.aspx the same way) then on the other side I load my session state read what I need to get and continue doing what I need to do.

                Yusuf

                J Offline
                J Offline
                jitu gupta
                wrote on last edited by
                #7

                my applicaion is running and working fine on microsoft server 2003 that is the dev,qa server . but my desktop having xp and IIS 5.1 so is it require any setting in iis for executing the ASP pages because only asp pages are not runing in my application. Thanks...

                J Y 2 Replies Last reply
                0
                • J jitu gupta

                  my applicaion is running and working fine on microsoft server 2003 that is the dev,qa server . but my desktop having xp and IIS 5.1 so is it require any setting in iis for executing the ASP pages because only asp pages are not runing in my application. Thanks...

                  J Offline
                  J Offline
                  JMummery
                  wrote on last edited by
                  #8

                  Its because Only IIS7 supports the integrated pipeline. you cannot run this on IIS 5.1

                  Regards Julian Mummery
                  Please Visit my FREE Bug / Fault Logging Website at FaultLogger.com**


                  **

                  J 1 Reply Last reply
                  0
                  • J jitu gupta

                    my applicaion is running and working fine on microsoft server 2003 that is the dev,qa server . but my desktop having xp and IIS 5.1 so is it require any setting in iis for executing the ASP pages because only asp pages are not runing in my application. Thanks...

                    Y Offline
                    Y Offline
                    Yusuf
                    wrote on last edited by
                    #9

                    on your xp desktop, try the following: 1. Disable IE show friendly error messages from the advanced page 2. Open IE and type the following http:\\localhost\ this should redirect you to http://localhost/localstart.asp. If you see the page ok, then asp is running on your xp, if not what error message do you see. that should give you some clue. If you see http:\\localhost ok, then make sure your asp program is installed properly in your xp machine. make sure any COM objects it uses are configured and registered properly.

                    Yusuf

                    J 1 Reply Last reply
                    0
                    • J JMummery

                      Its because Only IIS7 supports the integrated pipeline. you cannot run this on IIS 5.1

                      Regards Julian Mummery
                      Please Visit my FREE Bug / Fault Logging Website at FaultLogger.com**


                      **

                      J Offline
                      J Offline
                      jitu gupta
                      wrote on last edited by
                      #10

                      my applicaion is running and working fine on microsoft server 2003 that is the dev,qa server . but my desktop having xp and IIS 5.1 so is it require any setting in iis for executing the ASP pages because only asp pages are not runing in my application. Please suggest me what i need to do. thanks.....

                      1 Reply Last reply
                      0
                      • Y Yusuf

                        on your xp desktop, try the following: 1. Disable IE show friendly error messages from the advanced page 2. Open IE and type the following http:\\localhost\ this should redirect you to http://localhost/localstart.asp. If you see the page ok, then asp is running on your xp, if not what error message do you see. that should give you some clue. If you see http:\\localhost ok, then make sure your asp program is installed properly in your xp machine. make sure any COM objects it uses are configured and registered properly.

                        Yusuf

                        J Offline
                        J Offline
                        jitu gupta
                        wrote on last edited by
                        #11

                        HI, i am created one test solution for checking purpose whether asp is working or not . I am getting this error in test application Server Error in '/WebSite1' Application. -------------------------------------------------------------------------------- This type of page is not served. Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly. Requested URL: /WebSite1/Default2.asp

                        J Y 2 Replies Last reply
                        0
                        • J jitu gupta

                          HI, i am created one test solution for checking purpose whether asp is working or not . I am getting this error in test application Server Error in '/WebSite1' Application. -------------------------------------------------------------------------------- This type of page is not served. Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly. Requested URL: /WebSite1/Default2.asp

                          J Offline
                          J Offline
                          JMummery
                          wrote on last edited by
                          #12

                          This may help: http://support.microsoft.com/kb/815152[^]

                          Regards Julian Mummery
                          Please Visit my FREE Bug / Fault Logging Website at FaultLogger.com**


                          **

                          1 Reply Last reply
                          0
                          • J jitu gupta

                            HI, i am created one test solution for checking purpose whether asp is working or not . I am getting this error in test application Server Error in '/WebSite1' Application. -------------------------------------------------------------------------------- This type of page is not served. Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly. Requested URL: /WebSite1/Default2.asp

                            Y Offline
                            Y Offline
                            Yusuf
                            wrote on last edited by
                            #13

                            then you need to configure IIS to serve asp pages see here for details[^] Make sure 'Active Server Pages' are allowed, see the picture.

                            Yusuf

                            J 1 Reply Last reply
                            0
                            • Y Yusuf

                              then you need to configure IIS to serve asp pages see here for details[^] Make sure 'Active Server Pages' are allowed, see the picture.

                              Yusuf

                              J Offline
                              J Offline
                              jitu gupta
                              wrote on last edited by
                              #14

                              Yusuf, Actually my IIS dont have these option "Application pools" and "Service web extentions" . please see your link which you sent me. what i need to do ...

                              Y 1 Reply Last reply
                              0
                              • J jitu gupta

                                Yusuf, Actually my IIS dont have these option "Application pools" and "Service web extentions" . please see your link which you sent me. what i need to do ...

                                Y Offline
                                Y Offline
                                Yusuf
                                wrote on last edited by
                                #15

                                read the whole article. There is more than the picture in it. There are plenty of other resources on that page.

                                Yusuf

                                E 1 Reply Last reply
                                0
                                • Y Yusuf

                                  read the whole article. There is more than the picture in it. There are plenty of other resources on that page.

                                  Yusuf

                                  E Offline
                                  E Offline
                                  Expert Coming
                                  wrote on last edited by
                                  #16

                                  Yusuf wrote:

                                  There is more than the picture in it.

                                  Lol, beautiful!

                                  The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups