Re: Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Ben Rubinstein
Dave wrote: (I use a third party control panel "More Internet" to control this mapping; there are many others eg TinkerTool - for some reason Apple no longer include a GUI for modifying this directly. Evidently not something users are supposed to worry their pretty little heads about...) I d

Re: Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Dave
Hi Ben, Thank you so much for this! I just have one question, please see below. On 27 Jan 2009, at 14:48, Ben Rubinstein wrote: This does work in the IDE, so long as the "on appleEvent" handler is in the message path when the call arrives (eg your stack is top- level, or you've put it in t

Re: Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Ben Rubinstein
Dave wrote: This is a Mac only question! Is it possible to register a URL Hander for an Application built using RunRev? Please see: http://www.cocoadev.com/index.pl?HowToRegisterURLHandler Which describes (sort of) how to do it for a regular Cocoa Application. Some specific questions are:

Re: Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Mark Schonewille
Hi Dave, You can test this in the IDE. Just edit (a copy of) Rev's plist file and make a stack with an AppleEvent handler. The events should be sent to the mainstack of the current topstack (perhaps even to the current topstack regardless of whether it is a mainstack). You might need to u

Re: Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Dave
Hi Mark, On 27 Jan 2009, at 13:51, Mark Schonewille wrote: Hi Dave, If the server only returns 0 or 1, you'll have to have a user base of tens of thousands for the server to run into performance issues. Probably, the problem won't be data traffic but requests for connections queueing up

Re: Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Mark Smith
Dave, I may not have fully grasped what you're doing, but is it not a case of amending the app's plist (adding a "CFBundleURLTypes" element as described in the link), and then creating a an appleEvent handler in your app? (see dictionary entry for AppleEvent). You could amend the Revolution

Re: Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Mark Schonewille
Hi Dave, If the server only returns 0 or 1, you'll have to have a user base of tens of thousands for the server to run into performance issues. Probably, the problem won't be data traffic but requests for connections queueing up at the port. The ChatRev server and its clients are continuo

Urgent! - Registering a URL Handler for a RunRev Application

2009-01-27 Thread Dave
Hi All, This is a Mac only question! Is it possible to register a URL Hander for an Application built using RunRev? Please see: http://www.cocoadev.com/index.pl?HowToRegisterURLHandler Which describes (sort of) how to do it for a regular Cocoa Application. Some specific questions are: Wi