search for: juggernaut

Displaying 20 results from an estimated 31 matches for "juggernaut".

2006 Jul 05
2
How do I access the session in a rails plugin?
I''m trying to access the session in a rails plugin, so as to set it as below. 1. module Juggernaut 2. 3. def self.set_channels(chan) 4. session[:juggernaut_channels] = chan 5. end 6. end 7. 8. module ActionController 9. class Base 10. include Juggernaut 11. end 12. end At the moment I get: undefined local variable or method `session'' for Juggernaut:Module...
2006 Jul 20
16
Juggernaut Released - (a.k.a Armageddon)
I''ve just released Juggernaut - a plugin for ruby on rails. Check out the site: http://juggernaut.rubyforge.org I?ve also finished a demo that illustrates some of Juggernuat?s capabilities. You can sign up for an account here: http://alexmaccaw.no-ip.info:3500/login/sign_up . It might be a tad slow as it?s running from my h...
2009 Aug 20
1
Juggernaut question
Hi all, I''ve recently downloaded the juggernaut plugin and I was wondering if I could get some advice from anyone who''s used this on a real site. I have it working just fine on my local version, but on my live server it doesn''t seem to be working. It sends the information to the server just fine, but the text doesn''t g...
2010 Aug 03
3
Juggernaut Rails 3
Are there any plans to update the Juggernaut gem to be compatible with Rails 3? It doesn''t seem to work as of now with Rails 3, unless I set up the whole thing wrong. Also are there any good working alternatives for a push server? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to...
2008 Oct 31
0
Error while installing juggernaut gem
Hi, I have tried to install juggernaut gem using the command gem install juggernaut and got the following error D:\Sreejith\Ruby1\ruby>gem install juggernaut Building native extensions. This could take a while... ERROR: Error installing juggernaut: ERROR: Failed to build gem native extension. D:/Sreejith/Ruby1/ruby/bin/...
1997 Sep 23
1
C''t Article on Juggernaut
There is a recent article in the German magazine C''t that may be of interest to those on this list. It describes a cracker program, Juggernaut, which can hijack telnet sessions. The program is written specifically to run under Linux. An english translation of the article is available at: http://www.ix.de/ct/english/9710142/ It also mentions that they are working on a version of the program that runs from a boot floppy. That is, walk...
2010 May 31
0
TCPSocket.new(host,port).readline hangs on windows :(
Hi Guys I am starting a new thread as it seems my gripe isnt to do with Juggernaut but with TCPSocket - which is used by Juggernaut. Turns out that the thing that actually hangs up in Juggernaut after x (130/1500/16000) iterations of (1..1000).each {|i| Juggernaut.show_clients} Is actually the line res << @socket.readline(CR) if response in juggernaut.rb. Seems @socke...
2007 Feb 12
1
Rails Push Server?
...while ago... does anybody have good experience/good instructions as to how to move your rails app to using a push server? Which ones are best? Most Stable? Easiest to implement and use? Our site is currently doing some regular polling, and it''s getting hairy fast. I looked into using Juggernaut a while ago, but I''m not certain it''s going to be good for production going forward, it''s also flash based. I see a quick article on a true "push" server using http here: http://www.wayne-robinson.com/journal/2006/5/5/efficiency-of-http-push-vs-pull.html But I...
2006 Aug 14
14
ClockingIT Beta - It''s about time...
My wife and I have been working on our own task-listing, time-tracking web application, and we''re really interested in some feedback as we ourselves feel we''ve come a long way. If you have some minutes to kill (or just want to see how the Comet functionality provided by the Juggernaut plugin can work) have a look at http://www.clockingit.com and http://www.clockingit.com/comet.html Feel free to let me know if you have any questions, and I''ll do my best to answer. Regards, Erlend Simonsen
2006 Oct 19
8
Mongrel::HttpHandlerPlugin
Hi, I''m trying to write a file upload monitor for mongrel that uses juggernaut to alert the browser of a change. I''m writing a plugin that uses Mongrel::HttpHandlerPlugin but it looks like the only method that gets called is process and that is only when the upload has finished. I''m setting the following: @request_notify = true But I am still only getting...
2008 Feb 10
1
DRb + Chat interface?
...ch that I know exactly what I want to do with that ability now, it''s more than I''m thinking about future updates and the greatest growth potential. This is however my first attempt at a chat client, and I really don''t know what I''m doing. I''ve been told Juggernaut is the best option... anyone know if DRb and Juggernaut can be used together? Or is it possibly better to design a chat client in flash and integrate it with webORB or something? (if what I''m saying is somewhat nonsensical I apologize, quite new to this whole thing). Thanks, Mike --~--~--...
2011 Oct 11
5
Polymorphic association with Active Admin
I have a belongs_to polymorphic association and I don''t know how to create and edit my models of that relationship with active admin. If anyone can help me, please do. Thank you, Rodrigo -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2010 Feb 10
4
AJAX responses
Does anyone know if it''s possible to do multiple AJAX responses to a single request in Rails? I did some googling but didn''t find anything extremely helpful. Thanks. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2011 Feb 08
1
Rails and WebSockets
I''m thinking of starting on a Ruby website that uses WebSockets, and perhaps working some on a server for it beforehand. Is good support for asynchronous connections something I could work on adding to the Rails core? Is it feasible? Desired? As I understand it, Rails plugins like Juggernaut [1] aren''t going to optimally support async, since they can''t re-architecture the way connections are handled. Should I instead use Cramp [2] and incorporate the various features I like from Rails into it? Thank you for your time! [1] - https://github.com/maccman/juggernaut [2]...
2008 Jul 23
5
Updating the page dynamically
Hi, I''m developing a Rails application that displays data from MySQL database table. I have an external python script that adds new rows to the table. My goal is to dynamically add new rows to the html table which is displayed in my browser (without reloading the page). I''ve read that Ajax can handle this task ("periodically_call_remote"). But I don''t want to
2006 Sep 08
0
Passing blocks to a worker
I''m trying to implement a callback system between my controller, and a worker. The goal being that I could send to the client via Juggernaut when an action takes place in the worker. Something like this. worker.subscribe :action do render :update, :juggernaut => "channel" do |page| .... end end There seems to be a couple problems with doing this. First off, the binding of the block that gets sent from the controll...
2009 Jan 26
1
Mongrel::HttpParserError
...et: HTTP parse error, malformed request (127.0.0.1): #<Mongrel::HttpParserError: Invalid HTTP format, parsing fails.> REQUEST DATA: "<policy-file-request/>\000" This post seems to be the way but I have no idea where to put the code. http://clockingit.wordpress.com/2007/01/25/juggernaut-comet-fixes/#comment-1515 . Question: Using how/where do I intercept that request and return xml? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send emai...
2020 Aug 27
2
Slow Samba AD DC performance compared to Microsoft AD DC
...11. > > Is there any way I can speed up Samba server? > > Here is the smb.conf file > > ########################################################### > # Global parameters > [global] > workgroup = domain > realm = domain.COM > netbios name = JUGGERNAUT > server role = active directory domain controller > dns forwarder = 172.31.238.11 > idmap_ldb:use rfc2307 = yes > log level = 1 > ldap ssl = off > ldap server require strong auth = no > [netlogon] > path = /var/lib/sam...
2006 Aug 16
2
Server Push, with Active MQ?
I''ve read the postings about Juggernaut with interest, it is an interesting approach but in wondering about a solution that wouldn''t require flash I did some searching and came across activemq (http://incubator.apache.org/activemq). Their approach for messaging to an AJAX client (http://incubator.apache.org/activemq/ajax.ht...
2010 Sep 23
1
undefined method `protect_against_forgery?' for #<ActionView
...al from ''outside'' the web site. I do this as I have a rake task that checks for changes periodically in the background, and if it then sees a change it rebuilds the partial and posts the result back to the user if he is logged in. (The posting by rake to the web site is done with juggernaut,but that''s not the issue, the failure happens when trying to build the partial) The building of the partial is achieved by instantiating Actionview in the rake task, and it all worked fine until I introduced ''drop_receiving_element'' into the partial that gets generated....