| Author |
|
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 08 October 2008 at 3:33am | IP Logged
|
|
|
Hi there. The question is: if I buy an isapi rewrite 3, can I use a serial number (license) as many installations as I want or its limited to only one installation (server)
Thank you.
|
| Back to Top |
|
| |
Vyacheslav Moderator Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 673
|
| Posted: 08 October 2008 at 3:36am | IP Logged
|
|
|
Hi,
ISAPI_Rewrite is licensed per web server (computer). You will need to buy a separate license for every physical machine that will have ISAPI_Rewrite installed.
__________________ Kind regards!
Vyacheslav Shinkarenko, HeliconTech.
|
| Back to Top |
|
| |
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 08 October 2008 at 3:49am | IP Logged
|
|
|
Thanks for fast reply. One more question: I need your application for one purpose. I have a web site based on IIS 6.0, and what I need is to proxy some of site's directories to another domains. For example if i have www.test.com, I want www.test.com/some/ will proxy to 192.168.55.97:8080. And I want to do it only by IIS tools (without any apache installation) - can your application help me?
Thank you
|
| Back to Top |
|
| |
Vyacheslav Moderator Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 673
|
| Posted: 08 October 2008 at 4:16am | IP Logged
|
|
|
Hi,
Please try these rules:
Code:
RewriteCond %{HTTP_HOST} ^www\.test\.com$
RewriteRule (.*) http://192.168.55.97:8080$1 [NC,L,P]
|
|
|
__________________ Kind regards!
Vyacheslav Shinkarenko, HeliconTech.
|
| Back to Top |
|
| |
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 08 October 2008 at 4:20am | IP Logged
|
|
|
And what about 'some' directory? I need that www.test.com/some/ will link to another domain.
Thanks
|
| Back to Top |
|
| |
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 08 October 2008 at 4:43am | IP Logged
|
|
|
And I need to proxy this path not only rewrite... Thanks
|
| Back to Top |
|
| |
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 08 October 2008 at 4:47am | IP Logged
|
|
|
Basically I need something that will replace two Apache directives:
ProxyPass /storage/ http://192.168.66.123:8080/ ProxyPassReverse /storage/ http://192.168.66.123:8080/
because with Apache woks fine.
|
| Back to Top |
|
| |
Vyacheslav Moderator Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 673
|
| Posted: 08 October 2008 at 5:53am | IP Logged
|
|
|
Ok,
Please try this:
Code:
RewriteCond %{HTTP_HOST} ^www\.test\.com$
RewriteRule ^/some(.*)$ http://192.168.55.97:8080$1 [NC,L,P] |
|
|
__________________ Kind regards!
Vyacheslav Shinkarenko, HeliconTech.
|
| Back to Top |
|
| |
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 08 October 2008 at 5:59am | IP Logged
|
|
|
Thanks. I have already solve it. BUT I have another problem and I think that your application's bug or microsoft bug. I use jQuery AJAX method to send requests to another domain (that's ahy I need to proxy some directory of site). The problem that POST requests are works fine in IE, FF, Opera, Chrome. GET requests are not working in IE!!! It returns simple error like there is no any proxy... Could you help me? Thank you
|
| Back to Top |
|
| |
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 08 October 2008 at 7:54am | IP Logged
|
|
|
Help please.. Anybody
|
| Back to Top |
|
| |
Vyacheslav Moderator Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 673
|
| Posted: 08 October 2008 at 9:23am | IP Logged
|
|
|
Hi,
Please give more information about the issue.
__________________ Kind regards!
Vyacheslav Shinkarenko, HeliconTech.
|
| Back to Top |
|
| |
nKognito Newbie

Joined: 08 October 2008
Online Status: Offline Posts: 19
|
| Posted: 09 October 2008 at 12:37am | IP Logged
|
|
|
I did not undertand yet where is the problem, BUT the fact is that the same code works fine in FF, Opera, Chrome and crashes in IE 6, 7. Before your product installation, we used Apache server with ProxyPass directive and all worked fine in all browsers
Edited by nKognito - 09 October 2008 at 12:37am
|
| Back to Top |
|
| |