Newbie : Java Interop question

2010-10-15 Thread oak
Hi All, This is how i see the package in package explorer. IEssbase.class (I) IEssbase (C, s f) Home (M, s) create(String) IEssbase (M, c) Home() (P, s f) JAPI_VERSION I can import like this in Clojure =>(import `(com.essbase.api.session IEssbase))` I can

Re: Newbie : Java Interop question

2010-10-15 Thread oak
Sorry i've tried that as well. The problem is that Home is not a method on IEssbase. That's the message i get back. On Oct 15, 1:08 pm, ".Bill Smith" wrote: > Try using  IEssbase/JAPI_VERSION instead (replace dot with slash). > > On Oct 15, 11:32 am, oak wrote: &g

Re: Newbie : Java Interop question

2010-10-18 Thread oak
P = Property. Guess it could have been lower case p. On Oct 15, 11:19 pm, Michael Ossareh wrote: > On Fri, Oct 15, 2010 at 09:32, oak wrote: > > Hi All, > > > This is how i see the package in package explorer. > > IEssbase.class > >  (I) IEssbase > >    

Re: Newbie : Java Interop question

2010-10-18 Thread oak
e class as a namespace of its static members. > So this should do it: > > (IEssbase$Home/create IEssbase/JAPI_VERSION) > > On Oct 15, 12:32 pm, oak wrote: > > > > > Hi All, > > > This is how i see the package in package explorer. > > IEssbase.class > &