search for: isapirewrit

Displaying 8 results from an estimated 8 matches for "isapirewrit".

Did you mean: isapirewrite
2006 Aug 19
3
IIS and response timeout
I apologize if this has been covered before, I checked the archives and didn''t see anything over the last few months. I am running IIS6 with IsapiRewriter and a single mongrel service for each Rails application. One of my apps does a long query to the database to produce a CSV file. After the request has gone beyond 30 seconds, the user get a 500 Internal Server Error. I''ve looked around for ways to adjust the response timeout, either in...
2006 May 17
13
Using NTLM for S.S.O. in Rails
Greetings all, To all the good souls that happen to know NTLM and Rails.... Short version: -------------- - I''m looking for server code to extract credentials through NTLM dialog with the client (IE) - I found nothing usable/useful (as they both implement the client side code) in - rubyntlm on rubyforge - lib ntlm-ruby by Jonathan Bastien-Filiatrau LONG version:
2006 Feb 13
8
Anyone have Ruby for IIS installer?
...39;'re in for a world of hurt. We''ve given up on the idea after several months of trying (and some great feedback from this list). There are some on this list who claim to have gotten it to work, but that might just be luck. We''re now using Apache on a higher port, and using ISAPIRewrite to proxy requests to it. It works great. I will be writing an article on how to do this and will announce it here. -----Original Message----- From: rails-bounces@lists.rubyonrails.org [mailto:rails-bounces@lists.rubyonrails.org] On Behalf Of Erwin Quita Sent: Friday, February 10, 2006 3:03 AM T...
2006 Feb 24
8
RoR meets .net *cringe*
...y slows down. > 2. Are there any practical suggestions for laying out an application > (one web site) that is both asp.net and RoR for the regex isapi filters? > (sub-domain them, different paths etc) Your best bet is to install Apache on Windows, set it to run on a higher port and use ISAPIRewrite to proxy to that higher port. Even then, it''s dog slow. I''m in a Windows shop, so believe me, I know what you''re going through. The reaility is that Ruby itself does not run well under Windows. It''s noticeable in the task manager when you run Console or even...
2006 Apr 28
1
rails + iis + virtual directory = desperation
Hello, I''m getting crazy trying to configure a rails application under IIS in a virtual directory. I have climbed highest mountains, I have run through the fields, I have visited rails forums all over the world and I still haven''t found what I''m looking for :( I know this question has already had been posted here before, but I''m desperate. Does anybody
2005 Dec 16
25
I Would Really Like to Try RoR but...
it''s been a nightmare trying to set it up. I keep getting a an Application Error message when I try to navigate to a url which should be taken care of by my newly created controllers. For instance, I wanted to test RoR out so I created a MyTest controller which should allow me to navigate something like: http://localhost/rubytest/MyTest but it does not. I have no problem getting
2006 Feb 24
5
Controller Methods gets called twice on single invocation
I have no idea why this is happening but it seems like every method on my controller gets called twice. Here is what it looks like when I call a list using the scaffold code ========================== Processing DepartmentsController#index (for 127.0.0.1 at 2006-02-24 01:05:00) [GET] Parameters: {"action"=>"index", "controller"=>"departments"}
2006 May 03
12
Mongrel + RubyOnRails + FileUploads = Problems?
I really like the idea of using Mongrel. But reading the FAQ, I noticed something that might be an issue. It stated: "Ruby on Rails is not thread safe so there is a synchronized block around the calls to Dispatcher.dispatch. This means that everything is threaded right before and right after Rails runs. While Rails is running there is only one controller in operation at a time." So