Since the TFS is too big for our project, we want to use subversion and Trac. The hosting environment is Windows 2003 and IIS.
There are some options:
Run tracd
Run Apache with mod_python
Run tracd with AJP Protocol and the isapi-redirector
We tend to integrate Trac with IIS and the isapi-redirector. What would you suggest?
...
We've successfully configured IIS to front 2 Tomcat instances using isapi_redirect.dll. It's doing everything smartly, and we've been very happy. Now, however, we're using one of the Tomcat instances to serve up web services through AXIS. This requires BASIC Auth, and .NET clients are failing.
+ .NET clients can bypass IIS by surfing to ...
I've been trying for days to get Tomcat up and running through IIS via the Jakarta Connector.
I've followed all of Microsoft's instructions -- put the connector .dll in %tomcatdir%\bin\win32\i386\, added the registry entry, added a filter (pointing to the .dll) to the default web site... and yet, any time I try to access a Tomcat web ap...
I have a following setup:
App - Magnolia site running under Tomcat 6.0.16
ISAPI - Tomcat connector isapi_redirect-1.2.28
web server - IIS 7
host OS - Windows 2008
Everything works fine until i try to access Magnolia admin part which is protected. Tomcat returns HTTP 401 status code with the authentication form as response body and t...
I'm building an isapi filter that will grab any url requests with the prefix "http://localhost/" and redirect that url request to my message page "http://localhost/default.html."
Here's the solution:
if(urlString.Find("/") != -1)
{
urlString.Replace(urlString, "/default.html");
...
I'm trying to get a current web application running on my local machine, for dev purposes... the previous developer left abruptly and didn't document ANYTHING.
Basically, it uses an ISAPI filter, installed into IIS for some url redirection...
this is fine, but, i want to set it up on my local dev machine...
How can i go about doing that...
Hi,
we have made an extension to OWA page, connecting to a web application running in Tomcst. The content served by this application is shown in an iframe inside OWA page using isapi. This is working everywhere but in a customer where the session cookies set by OWA (sessionid and cadata ) get deleted as soon as a succesful login is done...
Hello,
we have an IIS (Owa) server that redirects to another server using isapi_redirect. Everything works fine for users in the LAN but for users connecting from Internet a windows authentication popup appears when trying to access the redirected server, that ends up in a 401 error even when giving a valid user/password.
Using Fiddle...
Windows XP SP3: try to set ISAPI filter isapi_redirect.dll in following way:
1. Create folder jakarta to point to the folder with the file isapi_redirect.dll. Set right permission on this folder.
2. Create virtual directo to point above folder
3. Set filter at localhost Level.
When it's done, restart IIS. And check the filter. it said ...
I'm attempting to use Bamboo behind IIS 7. I have exhausted all of my resources so Im hoping someone here can help. After starting bamboo and trying to connect my browser eventually times out with a 503. Please note that only bamboo currently has a problem. JIRA,Confluence and Crowd all work without issue
The logs from bamboo state
j...
Hi all! I need help with some rules in ISAPI_Rewrite in my installation. (If you only know mod_rewrite could be a good help to, so I would adapt the configuration).
I'm going to be very honest about my needs. I need to do this configuration in the next few hours, and don't have time right now understand everything about rewrites, regula...
I have a question about processing within the ISAPI Redirector, in the AJP13 processing in particular is where my situation is occurring. At least that is what I think based upon what I am getting from the logs.
First let me describe my setup/config/platform. I am running Tomcat 6.0 (file version 2.0.4.0 per the 'tomcat6.exe' properties...
Following is our environment setup:
IIS 7 receives Http (.jsp) request from client (browser).
It blindly redirects it to JBoss using ISAPI_Redirect.dll.
Now we are trying to modify this setup in such a way that before IIS7/ISAPI_redirect sends it to JBoss, we need to modify posted form data using Http module. This http module is normal...
When a request object is accessed from isapi_redirector.dll ( attempting to redirect to jboss) , the request is converted to a bad request ( as displayed on the browser)
NameValueCollection oForm= context.request.Form;
...
I'm using an isapi filter to redirect request for http://testportal.com/sites/testsp/_layouts/AccessDenied.aspx to a message page i've placed at the root of the site called "/test_msg.aspx."
The filter works, if I set the filter to capture request going to "sites/testsp/_layouts/"
but when i set it to "sites/testsp/_layouts/AccessDenied...
We recently installed a web application under Tomcat 6 which is connected over the isapi redirector interface (see http://tomcat.apache.org/connectors-doc/webserver_howto/iis.html) to an IIS 7 server. The connector works properly in every case, except for some pages in the web application that return a status 302, with a new location to ...