Displaying 16 results from an estimated 16 matches for "http_request".
2006 Apr 15
1
Begin with Autocompleter
...ith scriptaculous "Autocompleter". I work with PRADO framework (http://www.xisc.com) and PHP as a script language. Now this is a little function in JavaScript for make a AJAX call and show the results without reload the entire page. See below:
1 function makeRequest(url,element) {
2 var http_request = false;
3 if (window.XMLHttpRequest) { // Mozilla, Safari,...
4 http_request = new XMLHttpRequest();
5 if (http_request.overrideMimeType) {
6 http_request.overrideMimeType(''text/xml'');
7 }
8 } else if (window.ActiveXObject) { // IE
9 try {
10 http_request = new Ac...
2009 Jul 01
0
unicorn 0.9.0 (experimental release)
...se also gives applications the ability to respond
positively to "Expect: 100-continue" headers before being rerun
without closing the socket connection. See Unicorn::App::Inetd
for an example of how this is used.
This release is NOT recommended for production use.
Eric Wong (43):
http_request: no need to reset the request
http_request: StringIO is binary for empty bodies (1.9)
http_request: fix typo for 1.9
Transfer-Encoding: chunked streaming input support
Unicorn::App::Inetd: reinventing Unix, poorly :)
README: update with mailing list info
local.mk...
2009 Jul 01
0
unicorn 0.9.0 (experimental release)
...se also gives applications the ability to respond
positively to "Expect: 100-continue" headers before being rerun
without closing the socket connection. See Unicorn::App::Inetd
for an example of how this is used.
This release is NOT recommended for production use.
Eric Wong (43):
http_request: no need to reset the request
http_request: StringIO is binary for empty bodies (1.9)
http_request: fix typo for 1.9
Transfer-Encoding: chunked streaming input support
Unicorn::App::Inetd: reinventing Unix, poorly :)
README: update with mailing list info
local.mk...
2008 Feb 15
1
Socket read returned insufficient data
...tion/config/../app/models/
publication.rb:72: [BUG] Segmentation fault
ruby 1.8.4 (2005-12-24) [i486-linux]
INSTANCE #2:
Thu Feb 14 16:40:13 UTC 2008: Error reading HTTP body: #<Errno::EPIPE:
Broken pipe - /tmp/mongrel13937-1>
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/../lib/mongrel/
http_request.rb:87:in `read_body''
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/../lib/mongrel/
http_request.rb:55:in `initialize''
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/../lib/mongrel.rb:149:in
`process_client''
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/../lib/mongrel.rb...
2010 Jun 02
8
Read error: #<TypeError: can't modify frozen string> raised from HttpParser
...en running smoothly, but looking at the logs found 44
exceptions like this:
E, [2010-06-02T16:17:15.117071 #22680] ERROR -- : Read error:
#<TypeError: can''t modify frozen string>
E, [2010-06-02T16:17:15.117270 #22680] ERROR -- :
/usr/lib/ruby/gems/1.8/gems/unicorn-0.99.0/lib/unicorn/http_request.rb:59:in
`headers''
/usr/lib/ruby/gems/1.8/gems/unicorn-0.99.0/lib/unicorn/http_request.rb:59:in
`read''
/usr/lib/ruby/gems/1.8/gems/unicorn-0.99.0/lib/unicorn.rb:643:in
`process_client''
/usr/lib/ruby/gems/1.8/gems/unicorn-0.99.0/lib/unicorn.rb:716:in `worker_loop''...
2008 Jun 03
9
clients hang on large PUTs to Mongrel::HttpHandler-based web service
Hi folks,
I have a problem with a storage web service our group wrote using
Mongrel::HttpHandler We have a consistent problem when using
http PUT to this service when the data is larger than about 4 GB.
The web service actually retrieves and processes the data, but the
clients hang - the TCP connection is still in the ESTABLISHED
state on the client side, but the TCP session no longer exists on
2006 Apr 29
3
Feedtools question
...n("http://localhost:3000/feeds/userrss/#{params[:id]}")
I will get the timeout error if i want to read my feeds:
FeedTools::FeedAccessError (Timeout while attempting to retrieve feed):
d:/ruby/lib/ruby/gems/1.8/gems/feedtools-0.2.24/lib/feed_tools/helpers/retrieval_helper.rb:195:in
`http_request''
d:/ruby/lib/ruby/gems/1.8/gems/feedtools-0.2.24/lib/feed_tools/helpers/retrieval_helper.rb:220:in
`http_get''
d:/ruby/lib/ruby/gems/1.8/gems/feedtools-0.2.24/lib/feed_tools/feed.rb:204:in
`load_remote_feed!''
d:/ruby/lib/ruby/gems/1.8/gems/feedtools-0.2.24/li...
2006 Jul 09
6
ajax effects
Hi,
i was wondering if there was some kind of general line of code i could
add to my application, anywhere i suppose, that would generate some kind
of effect to notify the user that an effect is happening...it could be a
box on the top of the screen or something, that would be like the small
bar at the end of the browser that shows the user the status of a
loading page ... i was hoping
2012 Sep 14
2
assistance needed - err: Could not retrieve catalog from remote server: execution expired
.../usr/lib/ruby/1.8/net/http.rb:543:in `start''
/usr/lib/ruby/1.8/net/http.rb:1035:in `request''
/usr/lib/ruby/1.8/net/http.rb:857:in `put''
/usr/lib/ruby/site_ruby/1.8/puppet/indirector/rest.rb:98:in `send''
/usr/lib/ruby/site_ruby/1.8/puppet/indirector/rest.rb:98:in `http_request''
/usr/lib/ruby/site_ruby/1.8/puppet/indirector/rest.rb:76:in `http_put''
/usr/lib/ruby/site_ruby/1.8/puppet/indirector/rest.rb:158:in `save''
/usr/lib/ruby/site_ruby/1.8/puppet/indirector/indirection.rb:271:in `save''
/usr/lib/ruby/site_ruby/1.8/puppet/node/facts.rb...
2009 Jun 12
5
Limit Request Body Size (Disallow very large File-uploads)
Hello all,
For the last couple of days I was trying to get my
Apache/mod_proxy/mongrel setup to limit the size of the request body.
The setup is as follows:
1.) Apache acts as a reverse proxy by facilitating mod_rewrite and mod_proxy
2.) Requests for non-static files are passed on to a mongrel_cluster
3.) We use mongrel for our Ruby on Rails application
Note that due to some restrictions we are
2009 Feb 11
8
how to get DTrace to use the same structure field alignment as C?
Is there a pragma to turn off padding or some other mechanism besides
dummying up fields to make them char[] to disable padding?
Thanks!
2011 Nov 18
4
BigIP and Puppet
Has anyone successfully puppetized BigIP (F5)?
I''m specifically trying to figure out a path in making our BigIP
instances be under puppet so all the VIPs, pools, profiles, etc. are
all under puppet control. My requirements are probably going to be
fulfilled even with just uploading a rules file if a delta''s detected.
The main issue I have now is figuring out when to reload the
2012 May 23
16
could not retrieve information from environment
Greetings. I am trying to set up a test puppet server in my
environment to evaluate windows clients. On the server side, I am
using puppet 2.7.14 (from the repos). I''m using the 2.7.14 windows 64
bit on the client (windows 2008 R2). I have another puppetmaster
already using "puppet" hostname in DNS (running a very old version of
puppet - can''t upgrade yet for various
2012 Jul 07
12
how to scale puppet with F5 load balancer?
How can I configure F5 load balancer to be infront of multiple puppet masters?
The SSL will break as the server name if different, hostname of the
VIP on the LB vs hostnames of each masters, right?
Can you shed some light?
Thanks.
--
Hai Tao
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to
2010 Dec 01
14
Unicorn and HAProxy, 500 Internal errors after checks
Hi,
This morning, while checking for a correct deployment, we found out
that the Unicorns we are using were sending 500 Internal errors very
frequently to the HAProxy that sits in front of them. After some
investigation, It turned out that HAProxy checks the backend by
opening and closing a connection to the unicorn. Unfortunately the
Unicorns we use ( v 0.990.0 ) will try to reply to this probe
2012 Jul 30
7
puppet enterprise
No problem installing open puppet and using it. patterns run aok.
when trying to use the installer for pe, on the puppetmaster, installs ok.
when trying to use the installer for pe, on the puppet agent, installs ok
but no cert sent as shown by puppet cert list on puppetmaster.
also
puppet agent --test
on puppet agent shows
err: could not retrieve catalog from remote server:
error 400 on