0
votes
0answers
27 views
jquery post to webrick via sinatra only works in IE
When I run my little test app in IE, the log output from webrick shows a return code of 200, and indicates it received a post request:
192.168.0.18 - - [03/Nov/2009 16:17:37] "POS …
2
votes
3answers
324 views
Why does Ruby on Rails use http://0.0.0.0:3000 instead of http://localhost:3000 ?
I am very new to Ruby on Rails so when I tried to follow the official "Getting Started" ruby on rails tutorial, I was a bit disappointed because it went wrong very quickly. Basical …
0
votes
1answer
47 views
Ruby code on NFS mount, using another file on same mount causes problems.
I'm working on an embedded system whoose details are explained at the end of this post. Tools are ruby on linux.
I put my ruby code on a remote NAS device on network and mount it …
0
votes
1answer
96 views
Ruby Webrick HTTP Authentication
How can I do the same authentication stuff in this page using a subclass like this:
class Configuration < HTTPServlet::AbstractServlet
def do_GET (request, resp …
0
votes
1answer
105 views
Webrick Very Slow When Accessing Applications From Remote Desktop
I have a rails application that I'm running on my server. When I go to a remote desktop and attempt to load the application, the server takes a good 3-4 minutes to respond with a s …
1
vote
1answer
95 views
Reject Non-localhost Attempts to Access Webrick
I'm trying to block all non-localhost attempts to access a Webrick process. This is my current code
def do_GET(req, res)
host_name = "localhost:3344".split(":")[0]
if ho …
0
votes
2answers
287 views
Is there a realtime apache/php console similar to webrick or mongrel with ruby on rails?
Is there a realtime apache/php console similar to webrick or mongrel with ruby on rails?
I want to be able to monitor what the heck my server is doing.
edit:
but I don't want to …
0
votes
2answers
114 views
webrick server / ie6 truncating javascript files in development mode
I'm using webrick to run my rails app in development mode. The page includes 4-5 javascript files, which are also being served by the same webrick instance.
When I load the page …
3
votes
2answers
76 views
Is it correct that there are particular times when you may need to restart Webrick to see your changes?
I heard Kevin Skoglund (lynda.com) say that it is good practice to get in the habit of restarting Webrick frequently during development. Although generally you do not need to resta …
0
votes
2answers
149 views
streaming html from webrick?
Has anyone tried streaming html/text/content from webrick? I've tried assigning an IO to the response body, but webrick is waiting for the stream to be closed first.
0
votes
3answers
125 views
How to find webrick bugs in NetBeans for Ror?
Hello
I'm starting my adventure with Ruby on Rails and as IDE I choose Netbeans. It has bundled server Webrick and it had worked good. But after some changes in my first applicatio …
