accessing clojurescript browser REPL remotely

2011-10-21 Thread stratospark
Is the clojurescript REPL set up to allow access from remote machines? My development box is all set up, and I'm able to connect to the REPL from OSX Safari and Simulated Mobile Safari. Everything is localhost, so it all works great. I'm currently able to use my iPad and iPhone to access my

Re: accessing clojurescript browser REPL remotely

2011-10-21 Thread David Nolen
Hmm I get no errors. But it doesn't work. I agree that would be a *real* killer app for ClojureScript. Debugging JS on mobile browsers is a big pain. I will try looking into it if no one else gets to it first, ticket created http://dev.clojure.org/jira/browse/CLJS-92 David On Thu, Oct 20, 2011

Re: accessing clojurescript browser REPL remotely

2011-10-21 Thread stratospark
Thanks for looking into it! Regarding the issue: Cannot interact with Browser REPL running in iOS/ Webkit Mobile devices, I did try it locally on my development machine with the iOS simulator and it works fine. For both iPhone and iPad, and iOS version 4 and 5. Only on the actual devices,

Re: accessing clojurescript browser REPL remotely

2011-10-21 Thread David Nolen
Turns out this works just fine. You need to make sure that you change: (repl/connect http://localhost:9000/repl;) In your source to be the correct IP. David On Fri, Oct 21, 2011 at 3:39 PM, stratospark pat...@gmail.com wrote: Thanks for looking into it! Regarding the issue: Cannot interact

Re: accessing clojurescript browser REPL remotely

2011-10-21 Thread stratospark
Thanks, it works with a hardcoded IP address. I had tried using our Bonjour network hostnames, but that doesn't seem to work. The important thing is now I have a REPL to my iPad! -pat On Oct 21, 2:53 pm, David Nolen dnolen.li...@gmail.com wrote: Turns out this works just fine. You need to make