Can't locate META-INF and teething problems as a result

2002-04-03 Thread Chuck Amadi
Sorry if sounds pathetic nevetheless i have downloaded the (mysql) mm.mysql-2.0.4-bin.jar file . I was able to get the PostgrSql to function correctly by installing dbtags taglibrary and followed the configuration steps. Anyway there is a dbtag.tld that resides in /WEB-INF sub directory of

Db Tags not able to find the oracle driver.

2002-04-03 Thread Chris Buckley
Hello, I have some code that connects to oracle using the classes12.zip/nls_...zip (CONTENT). I had to unzip the files and then include the top level directory to get it to work, now if I try to use the dbtags way(which will save me a lot of work) I get No Class found error. How can this

RE: JSP1.2 JRun ver3.1

2002-04-03 Thread Wim Bervoets
Tomcat 4 ( http://jakarta.apache.org http://jakarta.apache.org ) Resin 2.x ( http://www.caucho.com http://www.caucho.com ) ... -Original Message- From: Yee Tsun Min, Ben [mailto:[EMAIL PROTECTED]] Sent: woensdag 3 april 2002 9:57 To: '[EMAIL PROTECTED]' Subject: RE: JSP1.2 JRun ver3.1

RE: How to access initParameters in the dbtags library?

2002-04-03 Thread Agrawal, Anuj (Anuj)** CTR **
That's strange, i had tried setting them as context-param and it appeared to work fine for me. Note the context-param tag(s) go directly under the web-app tag. You may want to drop the init-param tag. web-app context-param param-namedbUrl/param-name

date format

2002-04-03 Thread Andrea Grittini
Hello, Which is the input format in the dateFormat tag of JSTL.?? I'm trying to format a date in long format like MONDAY 10 JULY 2001 using the fmt tag library. I read the date field from a SQLserver DB, and I always got an Invalid date. (The same if I use the datetime tag library)

Mailer taglib Bug with addRecepient ?

2002-04-03 Thread Wim Bervoets
Hello, Why is the address variable not reset to null in the doAfterBody() function ? (as is done in the doStartTag() in AddReceipientTag ) The problem I had was when I was doing: mt:addrecipient type=toc:out value=${param.friendsEmail1}//mt:addrecipient mt:addrecipient type=toc:out

i18n:formatDate...tag example

2002-04-03 Thread Maini, Puneet (Cognizant)
Hi All, Could anybody show me some example showing usage of i18n:formatDate tag. Currently, I'm using something like this in my JSP, but its not printing anything. i18n:formatDate value=%=new Date()% pattern=MM/dd// Thanks Regards, -- Puneet Maini This e-mail and any files transmitted

[New] Cache Taglib

2002-04-03 Thread Shawn Bayern
Hi all, Just wanted to announce the Cache Taglib, now in development at Jakarta Taglibs. A large web application provides many opportunities to cache content for performance. For instance, entire pages could be cached by a filter; whole chunks of sites could be cached behind a network edge

Re: i18n:formatDate...tag example

2002-04-03 Thread Jan Luehe
Puneet: Could anybody show me some example showing usage of i18n:formatDate tag. Currently, I'm using something like this in my JSP, but its not printing anything. i18n:formatDate value=%=new Date()% pattern=MM/dd// Have you considered using the new formatting tags that are part of

RE: JSP1.2 JRun ver3.1

2002-04-03 Thread rnf
Tomcat version 4.X does. Rick -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: How to access initParameters in the dbtags library?

2002-04-03 Thread Gare, Trefor
Thanks Anuj, I'll give that a shot. Re: the why don't you use the JSTL library.. it's a case of ignorance on my part I'm afraid. However on my quick investigations this morning it still seems to be in beta and not advised for production systems which is what we're building at the moment. It

Taglibs and included pages

2002-04-03 Thread Bryan P. Glennon
I'm seeing some strange (or maybe intended) behavior with taglibs and included files. Here's what I do: %@ taglib prefix=bean uri=/WEB-INF/struts-bean.tld % %@ taglib prefix=html uri=/WEB-INF/struts-html.tld % Normal JSP/HTML stuff... html:form action=/action.do style=margin-botton:0m TABLE

Re: Taglibs and included pages

2002-04-03 Thread Shawn Bayern
On Wed, 3 Apr 2002, Bryan P. Glennon wrote: The problem is with the two include files. If I don't repeat the % taglib declarations in the included files, they don't work. It seems to me that once the libs are declared, that declaration should hold for the remainder of the page. I'm sure I'm

RE: Taglibs and included pages - correction

2002-04-03 Thread Bryan P. Glennon
As opposed to what I say below, leaving the %@ taglib declarations out of foo1 is ok - it displays fine. Thanks, Bryan -Original Message- From: Bryan P. Glennon Sent: Wednesday, April 03, 2002 6:27 PM To: [EMAIL PROTECTED] Subject: Taglibs and included pages I'm seeing some strange

Re: Taglibs and included pages

2002-04-03 Thread David M. Karr
Bryan == Bryan P Glennon [EMAIL PROTECTED] writes: Bryan I'm seeing some strange (or maybe intended) behavior with taglibs and Bryan included files. Here's what I do: Bryan %@ taglib prefix=bean uri=/WEB-INF/struts-bean.tld % Bryan %@ taglib prefix=html

RE: i18n:formatDate...tag example

2002-04-03 Thread Maini, Puneet (Cognizant)
Thanks Jan, But I'm using weblogic 5.1, which supports JSP 1.1 spec. Could anybody confirm if it would be okay to use JSTL / standard taglib with weblogic 5.1 container? I solved my problem by using datetime taglibs, like this: dt:format pattern=MM/dd/ date=%=tsDatePosted%/dt:format Thanks