>
> I am trying to use ASP on an Apache server and when using the post
> method on a form tag i get 'The requested method POST is not allowed
> for the URL ...'
>
>
> and when using the get method i am not seeing any values coming through
> to the page being posted to.
>
you mean ASP using VBscript/JScript ?
provide more details please
- are you using IIS to execute the *.asp or do you want to that with
Apache ?
- is the *.asp file is on the same server running Apache ?
- is the call to *.asp from the same domain ?
etc..
perharps try a proxy between the ISS server and Apache
something like
<VirtualHost *:80>
ServerName asp.domain.com
ProxyPreserveHost On
ProxyPass /
http://asp.domain.com:8080/
ProxyPassReverse /
http://asp.domain.com:8080/
</VirtualHost>
then from
www.domain.com on 80
you should be able to call something as
http://asp.domain.com/processForm.asp
but not even sure if it's what you're trying to do.
zwetan