hello :)
cheers for your feedback, i have just tried what you said and i'm
getting this ...
<%pageTitle="Page Title" %>
which just says the .asp files arn't being parsed by IIS
oh and i think i got something working with mod_rewrite but i had a big
problem of ...
if i had a default document setup of say ..
index.php index.asp index.htm
if there was a default document of index.htm it will say file not found
because apache was asking IIS for the .asp file for the default document
and IIS was giving back html code that was sent on the to browser. :(
and having the .asp file at the end of the Default document line ment
that if there wasn't a default document an index listing wasn't shown,
but i want an apache index listing if there isn't a default document.
I wish it would just work like that, would be so much easier
also the dir layout that is being hosted it set out something like the
following ...
http://srvaddr/userid/*
* = users file, could be anything
so its not just a single application if it was i would just sit it on a
single dir and reverse proxy that single dir, i have done that before.
I have started writing a perl app that will submit requests the same as
what the client requested, lol should be good for learning :).
Cheers,
Matty.
Axel-Stéphane SMORGRAV wrote:
Maybe I have completely misunderstood your problem, but I'll give it a try
anyway.
From my understanding you have an ASP application running on some IIS behind an
Apache server, and you want to proxy all requests to the ASP application to the
IIS, and have the Apache server respond directly to any other request. I will
assume that the ASP has a .asp extension.
mod_rewrite is your friend:
RewriteEngine On
RewriteRule ^(.*\.asp)$ http://172.19.13.16/$1 [NC,P]
ProxyPassReverse / http://172.19.13.16/
-ascs
-----Original Message-----
From: Matt Richards [mailto:[EMAIL PROTECTED]
Sent: Friday, April 14, 2006 4:35 PM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] proxy only asp files
hello :)
been playing around LOTS with different setups and everything and i had
a sudden brainwave the other day and it worked :D ... kinda !
what i have currently got setup is this ...
[EMAIL PROTECTED] root]# cat /usr/local/httpd/cgi-bin/asp-proxy
#!/bin/sh
# disable filename globbing
set -f
echo "Content-type: text/html; charset=iso-8859-1"
echo
/usr/local/bin/lynx --source http://172.19.13.16$PATH_INFO?$QUERY_STRING
and in the apache config file i have this ..
Action application/x-httpd-asp /cgi-bin/asp-proxy
Addhandler application/x-httpd-asp .asp
This all works fine with GET post requests but dosn't work with POST
requests.
another thing that dosn't work is cookies but i'm not tooo worried about
them for now
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]