tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Mufaddal Khumri
I have the following taglib descriptor defined // __ taglib tlib-version1.0/tlib-version jsp-version1.2/jsp-version short-namecw/short-name urihttp://www.wmotion.com/tomcat/coursewizard-taglib/uri

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Erik Price
Do you have an XML declaration at the top with the reference to the taglib DTD? http://java.sun.com/webservices/docs/1.0/tutorial/doc/JSPTags5.html#66396 Also, your /tag-class tag looks like it has a space in it, though that could just be from the email client. Erik Mufaddal Khumri wrote: I

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Mufaddal Khumri
Yes, I do have the XML declaration. I basically am using the .tld from under the examples webapp as a template the contents of my .tld file are : ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE taglib PUBLIC -//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Erik Price
That taglib descriptor has a tlib-version of .0 Mufaddal Khumri wrote: Yes, I do have the XML declaration. I basically am using the .tld from under the examples webapp as a template the contents of my .tld file are : ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE taglib

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Mufaddal Khumri
Sorry, abt that ... that was a typo, I do have it defined as: tlib-version 1.0/tlib-version The problem persists .. any cues ? On Tuesday, March 4, 2003, at 02:14 AM, Erik Price wrote: That taglib descriptor has a tlib-version of .0 Mufaddal Khumri wrote: Yes, I do have the XML

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Erik Price
Mufaddal Khumri wrote: Sorry, abt that ... that was a typo, I do have it defined as: tlib-version 1.0/tlib-version The problem persists .. any cues ? Well, I just checked my own taglib descriptor. I'm not sure why there is a discrepancy, but mine uses the tag tlibversion and jspversion

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Mufaddal Khumri
Hi ... From the error i get ... it seems that it accepts the hyphenated version but it throws an error when it parses the tag element .. The error i get is : Mar 3, 2003 2:19:21 PM org.apache.commons.digester.Digester error SEVERE: Parse Error at line 26 column 9: The content of

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Erik Price
Mufaddal Khumri wrote: Hi ... From the error i get ... it seems that it accepts the hyphenated version but it throws an error when it parses the tag element .. The error i get is : Mar 3, 2003 2:19:21 PM org.apache.commons.digester.Digester error SEVERE: Parse Error at line 26

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Mufaddal Khumri
Hi, Thanks Eric .. that was the problem .. the order ! ... the taglib documentation just said .. you need these elements .. never knew that order would matter. Thanks for your help. On Tuesday, March 4, 2003, at 02:59 AM, Erik Price wrote: Mufaddal Khumri wrote: Hi ... From the error i

Re: tomcat throws exception while parsing taglib descriptor ????

2003-03-03 Thread Erik Price
Mufaddal Khumri wrote: Hi, Thanks Eric .. that was the problem .. the order ! ... the taglib documentation just said .. you need these elements .. never knew that order would matter. Thanks for your help. No problem. I had the same happen to me when I made my first taglib descriptor. I