Re: [c1] java.lang.NoClassDefFoundError with custom class?

2001-12-17 Thread Brent L Johnson
Sorry for the delay ... I do have loose classes in WEB-INF/classes. That's the problem. I've got a simple Globals object I created - still in the same place as it was when it was working under Tomcat3.x (webapps/myapp/WEB-INF/classes/com/mycomp/globals/Globals.class). - Brent - Original

[c1] java.lang.NoClassDefFoundError with custom class?

2001-12-14 Thread Brent L Johnson
I'm running Cocoon 1.8.2 and I've just upgraded from Tomcat3.x to Tomcat4.0.1. According to Tomcat's documentation, anything in WEB-INF/classes is available (so I dont have to put it in my classpath).I've got my own com.blah.globals package in WEB-INF/classes/com/blah/globals. When I try

[C1] NumberFormatException / parseInt

2001-11-28 Thread Brent L Johnson
I've already asked about this before - but I'm getting the exact same errors again. If everytime I put some files into production I get lots of NumberFormatExceptions for no apparent reason (I'm not using parseInt, I checked the java file in the repository and its not using parseInt, something

Stylesheets using Logicsheets

2001-10-18 Thread Brent L Johnson
Can a stylesheet use tags from a custom logicsheet? I'm still having the problem with Cocoon generating a NumberFormatException for no apparent reason. To get around this, I'm keeping my HTML tags for the header in the stylesheet (by keeping it there instead of copying it into the logicsheet, I

XSP Processing with Logic

2001-10-05 Thread Brent L Johnson
I'm creating a logicsheet which I'm going to use to send email. An example of the usage is: email:sendEmail to[EMAIL PROTECTED]/to subjectDoh!/subject messageQuantity is xsp:exprquantity/xsp:expr/message /email:sendEmail I've got everything working fine except for getting the xsp tags working

iMac and IE4.5

2001-10-04 Thread Brent L Johnson
I'm having a serious issue with iMac's running IE4.5. I just put a new site into production which uses Cocoon. It's been great, and we've gotten a lot of great response (not to mention the fact that since I designed it using Cocoon it's really easy to make content modification). But, the only

[c1] Cocoon / Tomcat / XSL Files

2001-09-25 Thread Brent L Johnson
I'm not sure this is really the best mailing list to direct this to - but since it is directly related to Cocoon I'll try anyways. I'm using ESQL in many different documents for reading info out of a database. The problem is, the database username and passwords are stored in cleartext in the

[c1] HTML Output and xmlns

2001-09-07 Thread Brent L Johnson
Quick question - probably easy to answer - but why when I view the source of the transformed HTML document in my browser, why do I see xmlns tags in the HTML document (along with some other xml related code). Can I restrict it to only HTML compliant that will work for most all browsers? Here

Error Messaging

2001-09-07 Thread Brent L Johnson
Since I'm using cocoon in a production environment I'd rather not have the nasty Cocoon error message (I'd like a nice conforming error page). Is there a way to implement this in Cocoon 1.8.2 (I'm using it under Tomcat 3.2.2). Thanks, - Brent

Validating XML from DB

2001-08-23 Thread Brent L Johnson
Is there a way to test possible XML data from a database prior to doing an esql:get-xml column=DESC/ ? The problem is, if someone else (non-technical) enters the data in the database and they forget to close off a tag or something, is there a way I can intercept that - or tell that it's not

RE: esql, get-xml and xsp:logic

2001-08-21 Thread Brent L Johnson
think you had some misleading thinking here), but if you really need it, just use get-string instead of get-xml, this returns the plain text of the column. Stefan -Ursprüngliche Nachricht- Von: Brent L Johnson [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 21. August 2001 01:16

esql, get-xml and xsp:logic

2001-08-20 Thread Brent L Johnson
I've been using esql:get-xml column=COLNAME root=fragment/ and it's been working perfectly. But, I've found a problem when trying to set a String inside an xsp:logic tag to that. Make any sense? Here's the code that works... esql:row-results TEST: esql:get-xml column=mycol root=fragment/

esql database results and XSL

2001-08-16 Thread Brent L Johnson
Is it possible to process XML that comes from database results? I'm not sure this would be possible or not - but here's an example... select Title from MyInfo order by Title; The resulting titles could be like: The Cocoon Mailing List myImage name=blah/ Is there some XSLT tag or something that

Re: esql database results and XSL

2001-08-16 Thread Brent L Johnson
, Brent L Johnson wrote: Is it possible to process XML that comes from database results? I'm not sure this would be possible or not - but here's an example... select Title from MyInfo order by Title; The resulting titles could be like: The Cocoon Mailing List myImage name=blah

Re: [c1] xsp:logic compiling

2001-08-06 Thread Brent L Johnson
OK - I think I see where my problem is. I've been reading through Cocoon1 docs this whole time and didn't really see much information about logicsheets (until following the link you sent). Basically, what I'm trying to do is keep all database queries, all dynamic code, everything development

[C1] ESQL in XSL

2001-08-03 Thread Brent L Johnson
I've read through the ESQL docs and looked at many ESQL examples but I havent found an example which uses ESQL in the stylesheet instead of the XML document. I added the XML namespace for ESQL in my stylesheet tag: xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform;