IIRF not working with AsP.NET PostBacks?

Posted by MNT on Stack Overflow See other posts from Stack Overflow or by MNT
Published on 2010-04-08T10:49:05Z Indexed on 2010/04/08 10:53 UTC
Read the original article Hit count: 554

Filed under:
|
|
|

Hi,

I have the following scenario

Web server A: public on the internet, IIRF (current version) installed
Web server B: on the intranet, visible to A, my APS.NET web app is installed on, name is pgdbtest3

I configure IIRF so that any request targetting directory /MMS/ on server A is redirected to the corresponding one http://pgdbtest3/MMS/. The ini file look like:

StatusUrl /iirfStatus  RemoteOk
RedirectRule ^/MMS$         /MMS/          [I]
ProxyPass   ^/MMS/(.*)$    http://pgdbtest3/MMS/$1  [I]

It is working fine except that any post back causes an error (404 is returned). I have tried many solutions including the removal of the action attribute from the form but with no luck.

Please help!

© Stack Overflow or respective owner

Related posts about iirf

  • IIRF Setup on IIS 5.1

    as seen on Server Fault - Search for 'Server Fault'
    I'm trying to configure IIRF 2 on IIS 5.1 running on XP Pro, so that I can run the Zend Framework. I've managed to get the filter running on a second website that I setup using one the IIS admin scripts. When I goto iirfStatus I get this: The problem is the .ini path for the site is pointing… >>> More

  • IIRF not working with AsP.NET PostBacks?

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Hi, I have the following scenario Web server A: public on the internet, IIRF (current version) installed Web server B: on the intranet, visible to A, my APS.NET web app is installed on, name is pgdbtest3 I configure IIRF so that any request targetting directory /MMS/ on server A is redirected to… >>> More

  • IIRF redirect combine rules?

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I have 3 "rules". One to make sure URLs are lowercase another to include a slash at the end of directories, and a 3rd to force access to index.html pages to be thru the directory instead. The problem w/ how I have it is, sometimes this is causing multiple 301 redirects. I'd really like each rule… >>> More

  • Using IIRF to redirect to a PDF

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I'm using IIRF to redirect certain URLs to specific PDF files. For instance, for the URL /newsletter/2010/02 I'd like it to redirect to /pdf/newsletters/Feb2010.pdf. I'm not too hot at regular expressions, but I created the following rule: RedirectRule ^/newsletter/2010/01 /pdf/newsletters/Newsletter012010… >>> More

  • IIRF reverse proxy problem

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Hi everyone, We have a java application ( Atlassian Bamboo) running on port 8085 on Windows 2003. It is accessile as http: //bamboo:8085. I am trying to setup reverse proxy for IIS6 using IIRF so content is accessible via http: //bamboo. It seems that I set it ip correctly, and I can retrieve… >>> More

Related posts about ASP.NET