I have tried adding .* to them all.... then I get cannot be resolved errors. I am testing on a windows box, and opened the jars with winrar; I can browse right to the .class files.
JD -----Original Message----- From: Tony Collen [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 12:43 PM To: [EMAIL PROTECTED] Subject: Re: OJB Sample?? Or Block is missing... JD Daniels wrote: > Antonio's post about druid got me going again..... > > I am farther along now, but this is my trouble... > > Inside my xsp: > <xsp:include>javax.jdo.PersistenceManager</xsp:include> > <xsp:include>javax.jdo.PersistenceManagerFactory</xsp:include> > <xsp:include>javax.jdo.Transaction</xsp:include> > <xsp:include>org.apache.ojb.jdori.sql.OjbStorePMF</xsp:include> > > Generates: > Line 39, column 0: Only a type can be imported. javax.jdo.PersistenceManager > resolves to a package > Line 41, column 0: Only a type can be imported. > javax.jdo.PersistenceManagerFactory resolves to a package > Line 43, column 0: Only a type can be imported. javax.jdo.Transaction > resolves to a package > Line 45, column 0: Only a type can be imported. > org.apache.ojb.jdori.sql.OjbStorePMF resolves to a package > Line 144, column 0: javax.jdo.PersistenceManagerFactory cannot be resolved > or is not a type > Line 144, column 0: org.apache.ojb.jdori.sql.OjbStorePMF cannot be resolved > or is not a type > Line 154, column 0: PersistenceManager cannot be resolved or is not a type > Line 156, column 0: Transaction cannot be resolved or is not a type > > and I do have all the correct jars in WEB-INF/lib and I am using > ParanoidCocoonServlet > > Also, I saw on the wiki there is an OJB Block.... I got the Oct 17 CVS > snapshot, but It does not seem to be there. > > Anyone help me?? arrggh hrmm, i haven't played with it, but the errors seem to suggest that the stuff being imported are actually packages, and not classses.. try changing the line to: <xsp:include>javax.jdo.PersistenceManager.*</xsp:include> and so on, see if that helps... Regards, Tony
