Re: Best way to create a namespace at runtime from a web app

2014-04-24 Thread Sarkis Karayan
My product integrates the code editor into the browser and allows live updates to the runtime. :-D On Thursday, April 24, 2014 11:27:30 AM UTC-7, Shane Kilkelly wrote: > > I can't offer any advice on how to do this, but I am genuinely curious as > to why one would need to create a new namespace

Re: Best way to create a namespace at runtime from a web app

2014-04-24 Thread Sarkis Karayan
Thank you, I was doing everything but the obvious. :-) On Thursday, April 24, 2014 11:26:39 AM UTC-7, A. Webb wrote: > > Have you tried the aptly named > create-ns > ? > -- You received this message because you are subscribed to the Go

Re: Best way to create a namespace at runtime from a web app

2014-04-24 Thread Shane Kilkelly
I can't offer any advice on how to do this, but I am genuinely curious as to why one would need to create a new namespace as part of a web server. Care to provide an example? :) On Thursday, 24 April 2014 18:44:02 UTC+1, Sarkis Karayan wrote: > > Hi everyone, > > I am working on a web app that a

Re: Best way to create a namespace at runtime from a web app

2014-04-24 Thread A. Webb
Have you tried the aptly named create-ns ? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are

Best way to create a namespace at runtime from a web app

2014-04-24 Thread Sarkis Karayan
Hi everyone, I am working on a web app that allows code and namespace creation at runtime, but I get an error when trying to create a namespace from a web process: java.lang.IllegalStateException: Can't change/establish root binding of: *ns* with set This works when doing in a repl or single t