At 08:53 09/02/2003 -0400, you wrote:
I have successfully used Aparajita's Proxy Rewrite Rules for my A4D pages. I'm having trouble developing rules for the ITK-served pages and wonder if someone might be able to see what I'm missing.

URL matches /oms\.acgi[$](.+)  AND
Full Request begins with GET

You need a \ before the $, even within []

This regex was one of many that I tried. Before this I had tried one that escaped "$"


URL matches /oms\.acgi\$(.+)  AND
Full Request begins with GET


URL matches /oms\.acgi[$](\S+)  AND
Full Request begins with GET

Same as above.


All Proxy to 128.165.208.5:8080/oms.acgi$$1.1

Monitor TCP traffic on port 8080 and see what comes out of WebSTAR.

Someone on the NUG suggested that I try this:

URL matches (.+) AND
URL contains oms.acgi
Proxy to 127.0.0.1:8080$1.0
STOP

That combination worked, but only after I disabled some WebSTAR plugins, namely 4D CGI.

The Rewrite is now proxying to port 8080, but I'm finding other problems. Foremost is that many form submissions that work if sent directly to 4D Client, e.g., twpdevweb2.lanl.gov:8080/oms.acgi$do.form are unreliable if proxied through Rewrite. My next plan of action is to trace the traffic and see what the difference is.

Thanks,

Brad

_______________________________________________
Active4d-dev mailing list
[EMAIL PROTECTED]
http://aparajitaworld.com/mailman/listinfo/active4d-dev



Reply via email to