Re: Cannot sen msg to #clojure channel

2010-08-10 Thread Sandeep Puri
first change your nick to whatever you want to register /nick then you can register using /msg NickServ register freenode requires you to confirm your registration i think (via a code sent via email) On Aug 10, 7:44 am, Laurent PETIT wrote: > You need to register with NickServ, e.g. > /msg N

Re: newbie question casting java classes/interfaces

2010-07-28 Thread Sandeep Puri
Sorry didn't answer your question.. The error I got was "Cannot cast GraphDBService to NeoService" On Jul 28, 8:54 pm, Sandeep Puri wrote: > It's not the JPA one. It's the meta-model work-in-progress for the > neo4j project. > > It so happens I was using

Re: newbie question casting java classes/interfaces

2010-07-28 Thread Sandeep Puri
nse.. On Jul 28, 4:27 am, Chas Emerick wrote: > What error or other message do you get?  Also, which MetaModelImpl is   > this?  I assume it's not the JPA one. > > - Chas > > On Jul 27, 2010, at 2:38 PM, Sandeep Puri wrote: > > > > > The snippet bel

newbie question casting java classes/interfaces

2010-07-27 Thread Sandeep Puri
The snippet below works fine GraphDatabaseService neo = new EmbeddedGraphDatabase(dbpath); MetaModel model = new MetaModelImpl((NeoService) neo); Where MetaModelImpl expects a NeoService trying to do the same thing in clojure (let [^NeoService neo (EmbeddedGraphDatabase. dbpath) model (Met