similar to: HTTP 1.1 parser and non-standard request methods

Displaying 20 results from an estimated 1000 matches similar to: "HTTP 1.1 parser and non-standard request methods"

2008 Jun 19
0
struggling with simple webdav
Normally I use authzldap to authenticate LDAP users but in this case, I have a client that wants non-LDAP users to be able to use DAV. The twist is that there are several virtual hosts on this server and perhaps that is confusing things... anyway, my httpd.conf has... <Location /webdav> Dav On AllowOverride None Options Indexes FollowSymLinks AuthType Basic AuthName
2006 Jul 26
10
get/post bug
I''m not sure if its a bug in the blog example or in the framework but each time I hit edit, both get and post get called, no matter of the actual http method. anyone encounter that bug? -- gcc -O0 -DRUBY_EXPORT -rdynamic -Wl,-export-dynamic -L. main.o -lruby-static -ldl -lcrypt -lm -o ruby Everyone is trying their hardest to do their job but management has set it up so that
2006 Jan 09
4
Engine install problems with OS X
I have everything installed via Darwin ports. When I try to do a "script/plugin install engines" in a freshly created rails app I get the following: Macintosh:~/My Web Sites/nckapool bill$ script/plugin install engines svn: PROPFIND request failed on ''/rails/plugins'' svn: PROPFIND of ''/rails/plugins'': 403 Forbidden (http:// svn.protocool.com)
2006 Mar 13
9
Subversion problem - since you guys talked me into it :)
Following the advice here I''ve been trying to get subversion installed and working from my virtual dedicated server this weekend. I believe everything is installed properly, and that all that''s left is to get the apache httpd.conf file set up correctly. to talk to my server with my client I''m using the path: http://svn.mylittlecorneroftheinternet.com/svn/repos/ error
2006 Dec 14
2
public SVN dead?
James Mead wrote: > Trunk has moved on considerably since the last release. I really must > get round to releasing again soon. Righty, right. I''ve tried: svn checkout svn://rubyforge.org/var/svn/mocha as documented here [1], but svn will just hang forever. Accessing any of the following: [svn|http[s]]://rubyforge.org/var/svn/mocha[/[trunk[/]]] either through the svn
2006 Mar 13
1
svn rails problem
svn co http://dev.rubyonrails.org/svn/rails/trunk svn: PROPFIND request failed on ''/svn/rails/trunk'' svn: PROPFIND of ''/svn/rails/trunk'': Could not resolve hostname `dev.rubyonrails .org'': The requested name is valid and was found in the database, but it does no t have the correct associated data being resolved for. (http://dev.rubyonrails .org) --
2006 Mar 07
1
SVN troubles
Dear r-devel, Sorry to trouble the list with this, but I've been beating my head against the wall trying to figure out what's wrong. When I try to connect to the R SVN server, I get the following message: (sly at cornas):~/src/R$ svn co https://svn.r-project.org/R/trunk r-devel svn: PROPFIND request failed on '/R/trunk' svn: PROPFIND of '/R/trunk': SSL negotiation
2008 Jan 14
3
Reading HTTP Request parameters
Hello I''ve a client which send this request to a mongrel HTTPHandler : res=Net::HTTP.post_form(URI.parse(''http://localhost:3000/test''),{"a"=>1,"b"=>2}) But in the handler I can''t read the parameters one by one, I can read the entire String only : class Serveur class MyHandler < Mongrel::HttpHandler def process(req, resp)
2009 Aug 18
1
WebDav on CentOS?
Hello, I'm trying to set up webdav on apache on centos. My web area has dav on set, it's permissions are 775 owner of the apache user and group of the webdev group which i put users in who can write to the area. As a user locally logged on to the machine i can cd to the area and create content though it is owned and has a group of the user who made it i don't think this is what i
2006 May 24
2
WebDav on rails
I am trying to do webdav on rails. I already did it with PHP so it should not be much difference. However I have some problems. 1) When Word sends PROPFIND it sends GET request with XML inside the request body. However I cannot seem to get this information. request.body returns no such method even though request.inspect shows there is instance variable called @body. How can I access that? 2)
2006 Apr 13
4
apache permission problems
Well i finally got CentOS 4.3 booting, apache is installed, and im trying to setup some virutal hosts, i want the main site to be my default virtual host (which i had on my gentoo server) but i keep getting permission denied errors: Forbidden You don't have permission to access / on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to
2007 Jul 24
4
GemPlugin or Mongrel::HttpHandler subclass
Hey all I am working with a technology standard (specific to the commercial print industry) by which each element within the workflow has bi- directional HTTP messaging. As each side needs a http server, I thought I could either: a) use a gem plugin to modify the behavior of mongrel b) subclass Mongrel::HttpHandler In short, its xml messaging between two points; each with a HTTP client
2006 Dec 21
1
dealing with multipart forms in a Mongrel::HttpHandler
Hi everyone, Is there an easy way to parse multipart form requests from within a Mongrel::HttpHandler subclass or do I need to break out RFC 2388 and a bunch of regexps? Thanks, Mark -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20061221/9e756aa8/attachment.html
2006 Dec 23
2
exception logging
Hi all- I''m running mongrel with a tiny HttpHandler that hooks into a larger library I''m working on. I''ve run into a snag with trying to debug with it in that I''m not entirely sure how to get the exception logs of errors that are raised. All I get to stderr is this: Fri Dec 22 17:16:14 -0800 2006: ERROR: Couldn''t find Models::Contact without
2006 Nov 27
5
win32 problems
I''m setting up a Rails app for a client that uses Windows. I''m getting this error: c:/ruby/lib/ruby/gems/1.8/gems/mongrel-0.3.18/lib/mongrel/rails.rb: 32: uninitial ized constant Mongrel::HttpHandler (NameError) from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/ custom_require.rb:21:in `re quire'' from c:/ruby/lib/ruby/gems/1.8/gems/mongrel-0.3.18/bin/
2006 Aug 16
1
Re: 400 Bad Request error from svn
It's nice to see that the OS where CentOS gets its sources from also experiments the same error! I have been very busy lately so I haven't had the time to deal with the problem, probably later this week or early next week. As soon as I find something Ill let you know. Hopefully you'll do the same if you come across the solution first. PS. Forwarding this message to the mailing
2008 Apr 24
4
Pure Ruby HTTP parser
Before anything else, let me state this: Of course it''s going to be PAINFULLY slow on MRI. That''s not the point :) I thought I''d try out writing out a Ruby version of the parser for the purposes of Rubinius. For those of you who aren''t aware, Ragel supports a goto-driven FSM on Rubinius by injecting assembly directly, and Rubinus head honcho guy Evan Phoenix
2013 Aug 20
2
[LLVMdev] svn problems?
Hi, When I try to use LLVM svn (with svn 1.8.0), I'm currently seeing this: svn: E175004: The PROPFIND response did not include the requested properties Does anyone else have this problem? David
2003 Jan 08
2
Maps in R
Is there a way to generate maps in R. Specifically, I have calculated estimates of intra-regional inequality for US states, and would like to project that information onto a map. Thanks, Nirmala
2007 Nov 11
1
Passing from data via POST
Mongrel Users: How does the HttpHandler process() method deal with data passed via POST? The HttpRequest object captures all GET params appended to an URL, but I just tried to retrieve data passed via POST and it came up nil. that is, I assumed the HttpRequest object contained the param named in the html form and its value.But the POST passed params are not found in the request object. Please