Re: Taglib / context-param question

2005-02-09 Thread Karr, David
bout Java Server Pages specification > and reference [mailto:[EMAIL PROTECTED] On Behalf Of > Jack Lauman > Sent: Wednesday, February 09, 2005 2:24 PM > To: JSP-INTEREST@JAVA.SUN.COM > Subject: Taglib / context-param question > > > I have the following code in a cus

Taglib / context-param question

2005-02-09 Thread Jack Lauman
I have the following code in a custom taglib. If I put the hex values of the colors in the context-param area of the web.xml file, how do you call them? color1 #FF color2 #FF ... public int doEndTag() throws JspException { Boolean alternate = (Boolean

taglib question

2004-11-06 Thread Jack Lauman
I have a custom taglib with a hard coded URL. I've added a 'context-param' entry to move it the web.xml file. Is 'getServletConfig().getInitParameter' the corect thing to use here or is there a better alternative? Original line: // out.println("" + i + &qu

query regarding taglib in jsp

2004-06-08 Thread kapil dattatraya shewate
alidator implementation that simply outputs the XML version of a JSP page to standard output, whenever this tag library is referenced in a "taglib" directive in a JSP page. validators.DebugValidator prime MyTags.Tag1 EMPTY Perform a

Standard lists taglib / Tomcat 5

2004-02-17 Thread Joel Carklin
Hi, I was wondering if anyone has come across this, I'm not sure if it is me doing something wrong or if it is the tag library: I'm using the 'Standard lists taglib' from www.servletsuite.com (http://www.servletsuite.com/servlets/stdlist.htm) and the code: Under Tomca

Taglib classes

2004-01-04 Thread S Senthil Raja
Dear sir/madam, I want to use taglib,I'm using Tomcat 5.0, jdk1.4,jsdk2.1 In servlet development kit I don't have the javax.servlet.jsp.tagext.TagSupport,BoddyTagSuppot classes.From where I will get thses classes for that what I have to download. plz give the URL or classe fil

Re: JSP TAGLIB HELP

2003-10-31 Thread vtr
Rule: People would rather live with a problem they cannot solve rather than accept a solution they cannot understand. - Original Message - From: "Dmitry Namiot" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 31, 2003 8:34 PM Subject: Re: JSP TAGLIB H

Re: JSP TAGLIB HELP

2003-10-31 Thread Dmitry Namiot
it must be Best regards, Dmitry Namiot -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ McAfee VirusScan Online from the Netscape Network. Comprehensive protection for your entire computer

JSP TAGLIB HELP

2003-10-30 Thread vtr
Hi all, I am using the dbtag along with the gridtag the source of my jsp is <%@ taglib uri="http://www.servletsuite.com/servlets/dbtag"; prefix="sql" %> <%@ taglib uri="http://www.servletsuite.com/servlets/gridtag"; prefix="g" %> Could

Taglib & Events

2003-10-16 Thread Hyne, David
Hi, Is there a good example describing how to handle events between two tags. For example, input type=text tag onchange event to re-populate the input type=select tag contents? Thanks, -- This email is confidential and

Re: Confusion over taglib-declared variables

2003-09-27 Thread Bob the Builder
e client. b) Do not declare the variable, which defeats the purpose of taglibs being able to declare viariables. My theory is that it is a bug or oversight, and I would imagine taglib develpers to be interested in this oddity. Obviously either few know about it or my lack of formal training is show

Re: Confusion over taglib-declared variables

2003-09-26 Thread Grzegorz Wrazen
what's this? -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED] Behalf Of Bob the Builder Sent: Monday, September 15, 2003 3:12 PM To: [EMAIL PROTECTED] Subject: Confusion over taglib-declared variables Hi all,

Confusion over taglib-declared variables

2003-09-15 Thread Bob the Builder
Hi all, All thanks to Bryan Basham and Boris from Kobrix for their help on my last question. I have come across a bit of strange behaviour which I managed to get around, but it is still confusing. If you declare a body tag that declares a variable at begin as follows: itr foo.ItrTag

Re: TagLib Problem

2003-03-17 Thread Peter Dolukhanov
Dolukhanov Sent: 17 March 2003 13:36 To: [EMAIL PROTECTED] Subject: TagLib Problem Dear All, I have encountered a small problem whilst using Tag Libraries. I have two relatively simple tags "loggedIn" and "notLoggedIn". The purpose, is to check whether a user is logged in or not,

TagLib Problem

2003-03-17 Thread Peter Dolukhanov
Dear All, I have encountered a small problem whilst using Tag Libraries. I have two relatively simple tags "loggedIn" and "notLoggedIn". The purpose, is to check whether a user is logged in or not, and display whatever is within the tag accordingly. However, I am encountering this exception:

scrape taglib

2002-12-18 Thread V.T.R.Ravi Kumar
Hi I have some problems using the scrape taglib. anybody who have used it and is successful may please help. I had this scrape taglib downloaded and used it as follows in a jsp <%@ page language="java" errorPage="../except.jsp" %> <%@ taglib uri="http://jak

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-12-18 Thread John Miller Crawford
Brilliant! Worked first time for me, Manos! I've been searching for quite a while to find out how to do this, through books and sites and lists, till I found your posting. Exactly what I needed. Many thanks! John === To un

?? Can Taglib JARs be Global ??

2002-12-12 Thread Tony LaPaso
Hi, I've found something curious and was wondering if anyone had an explanation or comment. I'm using Tomcat v4.1.12 but this also happens on TC v4.1.16 beta. Here's the situation: I have several Taglib JARs that I would like to make available to *all* web applications (i.e.

Re: ?? Using Taglib JARs Across Multiple Contexts ??

2002-12-10 Thread Justyna Horwat
o all, Although I'm using Tomcat v4.1.12 with Apache's JSTL Taglib, this issue really applies to *all* taglibs, not just JSTL: I'm finding that if I have several webapps (i.e., several Contexts), all using JSTL, I need to replicate the taglib JARs (jstl.jar and standard.jar) to the "WE

?? Using Taglib JARs Across Multiple Contexts ??

2002-12-09 Thread Tony LaPaso
Hello all, Although I'm using Tomcat v4.1.12 with Apache's JSTL Taglib, this issue really applies to *all* taglibs, not just JSTL: I'm finding that if I have several webapps (i.e., several Contexts), all using JSTL, I need to replicate the taglib JARs (jstl.jar and standard.jar)

Re: Urgent, Making taglib available to JSPs without those being i n a WAR

2002-12-02 Thread Nimmons, Buster
. When the app is ready to deploy we use ANT to build a war file for deployment. -Original Message- From: David M. Karr [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 30, 2002 12:21 PM To: [EMAIL PROTECTED] Subject: Re: Urgent, Making taglib available to JSPs without those being in a WAR

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-12-02 Thread m batsis
Just to serve the next search engine query on the subject, here's how it worked out for me: 1) Put the "taglib.tld" in the same directory with the JSP pages 2) Place the "tagLibraryClasses.jar" in the common lib directory of the app server 3) Change the taglib directive

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-11-30 Thread David M. Karr
> "Paul" == Paul Copeland <[EMAIL PROTECTED]> writes: Paul> David - Paul> OK, I'm game. This just went WAY over my head. Why can't he have a Paul> web.xml without a WAR? ;-) Ok, this is splitting hairs, but I suppose you could build a directory structure that matches the WAR struc

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-11-30 Thread Paul Copeland
t; <[EMAIL PROTECTED]> Subject: Re: Urgent, Making taglib available to JSPs without those being in a WAR You're answering a different question than he asked. He doesn't have a = web.xml file, as he doesn't have a WAR. I don't see how you can do this. -Original

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-11-29 Thread padhu vinirs
ct: Re: Urgent, Making taglib available to JSPs without those being in a WAR You're answering a different question than he asked. He doesn't have a web.xml file, as he doesn't have a WAR. I don't see how you can do this. > -Original Message- > From:

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-11-29 Thread Karr, David
You're answering a different question than he asked. He doesn't have a web.xml file, as he doesn't have a WAR. I don't see how you can do this. > -Original Message- > From: padhu vinirs [mailto:[EMAIL PROTECTED]] > > put > > <%@ taglib uri=&qu

Re: Urgent, Making taglib available to JSPs without those being in a WAR

2002-11-29 Thread padhu vinirs
put <%@ taglib uri="..." prefix="..." %> in your jsp pages. Read about this directive in the jsp spec. Also register the taglib in the web.xml using the "taglib" element. -- padhu - Original Message - From: "m batsis" <[EMAIL

Urgent, Making taglib available to JSPs without those being in a WAR

2002-11-29 Thread m batsis
Hello, Apologies for the dumb question but I have zero time; hope one of you can save me here. I'm under a situation where I have some JSPs *not* in a WAR file. How can make a taglib available to those JSPs without deploying them using a WAR file? I'm using iplanet application server

Text-only body of taglib tags is ignored

2002-11-05 Thread Slinkster
Hi all, I have a tag called o:tag which has its body type set to JSP in the taglib descriptor. When the tag has no body, or a body containing other tags, it works great. However, but when I use it like this: Last Name Last Name does not get included in the output. Strangely, this: Last

Re: Advantage of Taglib over Beans in JSP

2002-09-25 Thread Dror Matalon
e is a downside of the taglib, being that they are implemented via > reflection API, need I say more :) Do tags really use reflection more than tags? I would imagine that it would be the other way around, since the tld gives jasper a lot more info about the variables. > >

Re: Advantage of Taglib over Beans in JSP

2002-09-25 Thread Joseph B. Ottinger
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 24, 2002 6:13 PM Subject: Advantage of Taglib over Beans in JSP hi all, I would like to know what is the advantage of using Taglibs(Custom Tags) than using Beans in jsp. Is there any advantage in performance issues. Can any

Re: Advantage of Taglib over Beans in JSP

2002-09-25 Thread Amit Ghaste
The foremost advantage I give to is that Taglibs give a structure to ur JSPs, its cleaner to look at(code) and putting it bluntly it can be given to any content designer and he/she can readily implement it. There is a downside of the taglib, being that they are implemented via reflection API

Advantage of Taglib over Beans in JSP

2002-09-24 Thread Vijayanand
hi all, I would like to know what is the advantage of using Taglibs(Custom Tags) than using Beans in jsp. Is there any advantage in performance issues. Can any one give me an idea on this. thanks & regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' )

Re: Jakarta TagLib reference

2002-09-17 Thread Shawn Bayern
On Tue, 17 Sep 2002, Jan Arenö wrote: > I have installed the Jakarta standard taglibs on my TomCat server. > > Where do I find a referance what the taglib include? Also I would like some > serious examples to work with... > > Does anyone have some webpages with useful informati

Jakarta TagLib reference

2002-09-17 Thread Jan Arenö
Hi I have installed the Jakarta standard taglibs on my TomCat server. I have made an testpage where I used the succefully, so the taglib works... Where do I find a referance what the taglib include? Also I would like some serious examples to work with... Does anyone have some webpages with

Re: SV: Jakarta Taglib

2002-08-29 Thread Hans Bergsten
to /WEB-INF/lib > The tdl files into /WEB-INF > In the jsp specify the file direct: <%@ taglib prefix="c" > uri="/WEB-INF/c.tld" %> > > No error now, but I havn't tried anything yet Well, that is also supported by the JSP 1.2 spec, but it should not

SV: Jakarta Taglib

2002-08-29 Thread Jan Arenö
Ok, thanks, but it didn't work. I guess I'm not that handy with Tomcat etc. What did work was the following... The Jar files into /WEB-INF/lib The tdl files into /WEB-INF In the jsp specify the file direct: <%@ taglib prefix="c" uri="/WEB-INF/c.tld" %> No er

Re: Jakarta Taglib

2002-08-29 Thread Hans Bergsten
efault URI declaration, but that's usually the case for Jakarta libraries). When you start the container, it looks through all files under WEB-INF to locate all tag libraries. As long as you use the default URI for the library in your taglib directive, it's able to figure out which libra

Re: Jakarta Taglib

2002-08-29 Thread Juha Halmu
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %> If your address should be like this? (from AppendixA.pdf) Terveisin, x--- Juha Halmu ---y http://portal.halmu.net This e-mail ma

SV: Jakarta Taglib

2002-08-29 Thread Jan Arenö
ed as a "come-along" with Oracle. But now I want to learn how to install the whole kit (I don't like to sit with old stuff, and the Oracle 8i installation is quite old) Info: JSP file CAT_HOME\webapps\test\index.jsp: ----

Re: Jakarta Taglib

2002-08-29 Thread Shawn Bayern
ames of TLD files. Since you're using JSP 1.2, you can also take advantage of TLD auto-discovery for JAR files that include TLDs. This is the case at least for the Standard Taglib, which is Jakarta Taglibs's implementation of JSTL. You might want to contact [EMAIL PROTECTED] if you h

Jakarta Taglib

2002-08-29 Thread Jan Arenö
Hi I have a problem... It seems like I can't install Jakarta Taglibs correct, can anyone help me... I have installed Tomcat 4.x om my localmachine and it works fine (localhost:8080) Now i was thinking about testing taglibs, couse I don't have a clue how smart it is. I downloaded the jakarta tagli

Hello World Taglib Customizable Demo

2002-07-15 Thread techhead4life
Hello, does anyone know of any tutorial that is user friendly, in showing you how to create custom "Hello World" taglibs Urls I would appreciate Thank You ==To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JS

GNU JSP does not support taglib directive

2002-05-06 Thread vtr
Hi every one, When I am trying to use taglib I get an error message saying that the taglib directive is not supported by GNUJSP and when read the documentations came to know the taglib is set optionally if anyone is conversant with it please let me know. regards vtr

JSP or Taglib for converting bitmaps to JPEG or GIF

2002-04-30 Thread Burdick Robert
Hello All: Has anyone encountered a JSP, taglib, or other Java based utility for converting bitmap format images to GIF or JPEG? Some sort of freeware solution with source code would be ideal... Robert --- Robert Burdick Author

sharing a taglib by multiple webApps

2002-04-15 Thread Milind J
Hi, Is there any way to share a taglib by multiple webApps? Thanx, Milind === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "s

Re: taglib

2002-04-03 Thread vtr
Can any one please say how to use taglibs in Tomcat Regards V.T.R.Ravi Kumar, Engineer, CCX, BHEL, Hardwar, INDIA * Phone : 0133-485405. Fax: 0133-423948. Web: http://vtr.2itb.com Alternate mails: [EMAIL PROTECTED]

Re: Why java class for taglib not found?

2002-03-25 Thread Isak Rickyanto
Thank you very much - Original Message - From: "Vikramjit Singh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 25, 2002 1:20 PM Subject: Re: Why java class for taglib not found? > the TagClass has to be in a package. you cannot write TagClass

Re: Why java class for taglib not found?

2002-03-24 Thread Vikramjit Singh
: Sunday, March 24, 2002 10:32 PM To: [EMAIL PROTECTED] Subject: Why java class for taglib not found? I have problem with custom tag I have added in my web.xml : counter /WEB-INF/counter.tld I also have the counter.tld : http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd";> 1.0 1.2

Why java class for taglib not found?

2002-03-24 Thread Isak Rickyanto
my code : <%@ taglib uri="counter" prefix="util" %> Hit Counter with Custom Tag This page has visited for times I got this error messages : org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: 6 in the jsp file: /countertag.jsp G

Re: How can I access a Bean from inside a Taglib

2002-03-07 Thread Chris Pratt
geContext.getRequest()).getSession().getAttribu te("myBean"); (*Chris*) - Original Message - From: "Antony Stace" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 07, 2002 1:46 AM Subject: [JSP-INTEREST] How can I access a Bean from inside

How can I access a Bean from inside a Taglib

2002-03-07 Thread Antony Stace
Hi Folks Can someone kindly tell me how I can access a session bean from inside a Taglib. Cheers Tony === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL

Re: Taglib in Tomacat.

2002-02-26 Thread Smita Kotnis
This is because it contains all the Java class files for > the tag library, and the container looks for JAR files in the > WEB-INF/lib directory for the application. > > > After this i used the tag as, > > <%@ taglib uri=\\\"/WEB-INF/lib/uptag.jar\\\" prefix=\\\&qu

Re: Taglib in Tomacat.

2002-02-25 Thread Hans Bergsten
NF/lib directory for the application. > After this i used the tag as, > <%@ taglib uri=\"/WEB-INF/lib/uptag.jar\" prefix=\"up\" %> Assuming this directive is used in a JSP page located under E:\jakarta-tomcat-3.2.3\webapps\skillset, and that the JAR file contains the T

Re: Taglib in Tomacat.

2002-02-25 Thread Smita Kotnis
the correct place to keep that jar? After this i used the tag as, <%@ taglib uri=\"/WEB-INF/lib/uptag.jar\" prefix=\"up\" %> Is any thing else is to be done? Like putting tld file some where. Right now it is at one place (WEB-INF/tlds).. I am really not understanding wh

Re: Taglib in Tomacat.

2002-02-24 Thread Hans Bergsten
Smita Kotnis wrote: > Hi, > I tried these options, > 1. Put .jar file in /WEB-INF/lib and tld file in /WEB-INF/tlds directory and tried >to with tag lib as > > <%@ taglib uri=\"/WEB-INF/lib/upload.jar\" prefix=\"up\" %> > and > <%

Re: Taglib in Tomacat.

2002-02-24 Thread Smita Kotnis
Hi, I tried these options, 1. Put .jar file in /WEB-INF/lib and tld file in /WEB-INF/tlds directory and tried to with tag lib as <%@ taglib uri=\"/WEB-INF/lib/upload.jar\" prefix=\"up\" %> and <%@ taglib uri=\"/WEB-INF/tlds/taglib.tld\" prefix=\"

Re: Taglib in Tomacat.

2002-02-24 Thread Hans Bergsten
Smita Kotnis wrote: > Hi All, > I need to use a taglib developed by third party in my JSPs. > I have one .jar and a .tld file with me. Where to put these files so > that my tomcat 3.2 understands it? I tried following options, > 1. Made a directory as tld under WEB-I

Re: Taglib in Tomacat.

2002-02-24 Thread Vikramjit Singh
put the .jar file in the bin folder of tomcat and the .tld file in web-inf folder. in the web.xml file u have to specify what u want the uri to be like this request /WEB-INF/request.tld and then u use that tag <@ taglib uri=/WEB-INF/mytaglib.tld prefix=\"test\"

Taglib in Tomacat.

2002-02-24 Thread Smita Kotnis
Hi All, I need to use a taglib developed by third party in my JSPs. I have one .jar and a .tld file with me. Where to put these files so that my tomcat 3.2 understands it? I tried following options, 1. Made a directory as tld under WEB-INF and tried to call it in my JSP as, <@@ tag

Re: "Invalid Date" error when using Jakarta datetime taglib

2002-02-06 Thread Means, Garann R.
Joe, That fixes it beautifully. Thank you! -Original Message- From: Joe Cheng [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 12:19 PM To: [EMAIL PROTECTED] Subject: Re: "Invalid Date" error when using Jakarta datetime taglib How about <%= vBirt

Re: "Invalid Date" error when using Jakarta datetime taglib

2002-02-06 Thread Joe Cheng
How about <%= vBirthDate.getTime() %> === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servle

"Invalid Date" error when using Jakarta datetime taglib

2002-02-06 Thread Means, Garann R.
Hi, I'm using the Jakarta datetime tag library in a jsp with several static includes. The whole jsp will compile, will all the includes in place, but I get errors in the final include file, which displays information from a database and formats the dates in the result set with Jakarta's tag. The

Re: Form/Input taglib

2002-01-29 Thread Dmitry Namiot
Check out Validation taglib fom Coldtags suite: http://www.servletsuite.com/jsp.htm http://www.servletsuite.com/servlets/validtag.htm -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ Your

Re: Form/Input taglib

2002-01-28 Thread Haseltine, Celeste
their tag library as a "example" or "template" to follow. Celeste -Original Message- From: Ethan Schroeder [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 3:55 PM To: [EMAIL PROTECTED] Subject: Re: Form/Input taglib I have looked at Struts, and I have found

Re: Form/Input taglib

2002-01-28 Thread Ethan Schroeder
I have looked at Struts, and I have found it to be way overkill for 90% of the applications we write, though I will mostly likely use it on the next appropriate project. What I'm most interested in is a supporting form/input taglib, which will enable me to deploy rapidly developed applica

Re: Form/Input taglib

2002-01-28 Thread Borislav Iordanov
t; wrote: > Hi, I was just wondering if anyone could point me at > a robust form/input taglib which includes built-in > validation, such as required fields, regex pattern > matching, etc. I have done a lot of searching, but > I haven't really found anything remotely close to >

Re: Form/Input taglib

2002-01-28 Thread Richard Yee
Ethan, I don't think you will find all that you are looking for in a taglib since they are server side components. You should look at the jakarta struts framework that provides for user written methods to do the form validation. You can also look at the Jakarta regexp package and use it

Form/Input taglib

2002-01-28 Thread Ethan Schroeder
Hi, I was just wondering if anyone could point me at a robust form/input taglib which includes built-in validation, such as required fields, regex pattern matching, etc.  I have done a lot of searching, but I haven't really found anything remotely close to what I have envisioned as u

Re: Is there a calendar taglib somewhere?

2002-01-08 Thread Dmitry Namiot
See Coldtags suite on http://www.servletsuite.com/jsp.htm >I am looking for a calendar taglib. Can anyone recommend one or point >me in the direction of where I can find one. -- Coldbeans Software - server-side Java (tm) components http://www.servletsui

Is there a calendar taglib somewhere?

2002-01-08 Thread Antony Stace
Hi I am looking for a calendar taglib. Can anyone recommend one or point me in the direction of where I can find one. Cheers Antony === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST&

Re: TagLib

2001-12-19 Thread Brian Dame
esday, December 19, 2001 6:12 AM To: [EMAIL PROTECTED] Subject: Re: TagLib Dear Friends, Can anybody update me about the Tag-Libs in jsp technology.That is basic functionality of Tag-Libs. Varna.. === To unsubscribe: mailto [

Re: TagLib

2001-12-19 Thread Ravindra
Dear Friends, Can anybody update me about the Tag-Libs in jsp technology.That is basic functionality of Tag-Libs. Varna.. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [E

Re: TagLib

2001-12-18 Thread horwat
: Tuesday, December 18, 2001 12:50 AM Subject: TagLib > Hi everybody, > > can anyone help me in writing the taglib - custom tags for the tomcat. > i have tried a lot but unable to get it. every time i got error as > "HTTP Status 503 - Servlet jsp is currently unavailab

TagLib

2001-12-18 Thread Atul
Hi everybody, can anyone help me in writing the taglib - custom tags for the tomcat. i have tried a lot but unable to get it. every time i got error as "HTTP Status 503 - Servlet jsp is currently unavailable The requested service (Servlet jsp is currently unavailable) is not currently avai

Re: Taglib and normal class in jsp/servlet

2001-12-11 Thread Joe Cheng
I prefer the second method. Taglibs tie your business logic too closely with JSP. Might I suggest a third possibility, to have normal Java classes for your business logic and then taglibs to call those classes from JSP. ===

Taglib and normal class in jsp/servlet

2001-12-09 Thread Eunum Listener
Can anyone tell me which is better, i encapsulte all the business logic into tablibs and re-use these taglibs in each jsp; or create normal java class and call all these classes in jsp/servlet? This message was posted using eunumTo interact with a real-time, threaded interface to this e-mai

Taglib and normal class in jsp/servlet

2001-12-06 Thread Eunum Listener
Can anyone tell me which is better, i encapsulte all the business logic into tablibs and re-use these taglibs in each jsp; or create normal java class and call all these classes in jsp/servlet? === To unsubscribe: mailto [E

Re: TAGLIB - Output doesn't seem to work

2001-11-22 Thread Mattias Jiderhamn
ember 22, 2001 3:30 AM > Subject: TAGLIB - Output doesn't seem to work > > Hi All, > > It's me again. My taglib doesn't seem to be writing out to the JSP Page. > Code follows. >

TAGLIB - Output doesn't seem to work

2001-11-21 Thread Dinesh, S.
Hi All, It's me again. My taglib doesn't seem to be writing out to the JSP Page. Code follows. Please kindly advice. Thank you. Dinesh, S. package com.jcs.db.dbase; import java.util

Re: taglib directive URIs -- short names?

2001-10-31 Thread Hans Bergsten
the new XML format (JSP Documents) are supported. The XML format may make sense for some, and it's easier for tools to deal with, but it is also more verbose. The old JSP format is likely the best choice for most developers today. > The spec shows an example > of multiple taglib URIs in both sta

Re: URI vs. URL [Was: taglib directive URIs -- short names?]

2001-10-31 Thread Hans Bergsten
"N.Arun Kumar" wrote: > > Hello, > Can any one tell me the difference between URI & URL . > If I interchange the two while using in taglib what is the effect. URI is an acronym for Uniform Resource Identifier, which basically means any old string that uniquely id

Re: taglib directive URIs -- short names?

2001-10-31 Thread Hans Bergsten
m surprised at is the > amount of disagreement, or at least confusion. I'm finding about the right > approach is on such a seemingly simple topic. A taglib URI can be a URL > (such as, Jakarta's approach, > "http://jakarta.apache.org/taglibs/") or a relative URL (I&#x

Re: taglib directive URIs -- short names?

2001-10-31 Thread Steve Bang
seems to be to recommend making JSP pages into well-formed XML documents. The spec shows an example of multiple taglib URIs in both standard JSP syntax and the recommended XML syntax: positiveTagLib <%@ taglib uri="http://java.apache.org/tomcat/examples-taglib"; prefix="

Re: taglib directive URIs -- short names?

2001-10-31 Thread Josh Partlow
urprised at is the > amount of disagreement, or at least confusion. I'm finding about the right > approach is on such a seemingly simple topic. A taglib URI can be a URL > (such as, Jakarta's approach, > "http://jakarta.apache.org/taglibs/") or a relative URL (I&#x

Re: taglib directive URIs -- short names?

2001-10-31 Thread SUBSCRIBE JSP-INTEREST N.Arun Kumar
Hello, Can any one tell me the difference between URI & URL . If I interchange the two while using in taglib what is the effect. Regards Arun === To unsubscribe: mailto [EMAIL PROTECTED] with body: "si

taglib directive URIs -- short names?

2001-10-30 Thread Steve Bang
confusion. I'm finding about the right approach is on such a seemingly simple topic. A taglib URI can be a URL (such as, Jakarta's approach, "http://jakarta.apache.org/taglibs/") or a relative URL (I've seen many using "/WEB-INF/tlds/.tld"), or even a short symboli

Re: [ANN] major new release of Coldjava taglib

2001-09-20 Thread M. Simms
> To: [EMAIL PROTECTED] > Subject: [ANN] major new release of Coldjava taglib > > > Coldjava announced the major new release of Coldjava taglib. This > suite provides 50+ custom JSP tags for common programming tasks > faced by JSP developers. Tags cover the most often used areas i

[ANN] major new release of Coldjava taglib

2001-09-20 Thread Dmitry Namiot
Coldjava announced the major new release of Coldjava taglib. This suite provides 50+ custom JSP tags for common programming tasks faced by JSP developers. Tags cover the most often used areas in web development: Database manipulations XML/XSL support SOAP printing formatted data authentication

Re: java web server support taglib ?

2001-09-12 Thread horwat
The last release of Java Web Server 2.0 has support for the JSP .92 and 1.0 specifications. Unfortunately taglib support wasn't available until JSP 1.1. Justy - Original Message - From: "david chan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday,

java web server support taglib ?

2001-09-12 Thread david chan
Hi, Does anyone know the java web server support JSP custom tag ? I know it is a no longer supported product, but for some reason I still need to work with it. Thanks. David _ Get your FREE download of MSN Explorer at http://explore

Re: jdbc taglib question ?? urgent

2001-09-05 Thread sufi malak
gt; select * from pcinfo order by User <%} %> thanks >From: sufi malak <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and >reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: jdbc taglib question ?? >Date

jdbc taglib question ??

2001-09-05 Thread sufi malak
Hi, I am using the jdbc taglib , could you please show me what's wrong here : select * from pcinfo where User = '<% =category %>' Thanks _ Get your FREE download of MSN Explorer at http://expl

TagLib Info

2001-08-29 Thread Aaron O'Hara
All, Is there an easy way to create an iterating taglib that accepts a List (arraylist, vector, etc) and the class name of the objects in the list and the method of the class that should be called on each iteration? In the end, I want to have a multi-purpose taglib for populating select lists

[ANN] Coldjava taglib ver. 1.2

2001-08-24 Thread Dmitry Namiot
Coldjava has released a new version of custom JSP tags suite. This library contains 45+ tags for common programming tasks faced by JSP developers. At this moment Coldjava taglib is one of the largest custom JSP tags collections over the Net: http://www.servletsuite.com/jsp.htm -- Coldjava

taglib tutorial

2001-08-22 Thread Eric Cho
Hi all, Does anyone know a good taglib tutorial that may be catered to Websphere? The reason why i ask is.i can get examples working on tomcatbut not on Websphere. Or maybe if anyone knows of any special configuration i have to do for Websphereplease let me know. Thanks, Eric

ABOUT TAGLIB

2001-08-13 Thread mht
hi , I want to use Taglib in my project , but I don't know it who has a few examples about taglib ? can you sent it to me? thanks very !! my email address is [EMAIL PROTECTED] === http://sms.163.comÍøÒ׶ÌÐÅ ·¢×ÔÄÚÐÄ http://love.163.co

Re: TagLib Class Resolution Problem (TomCat 3.2.1)

2001-06-22 Thread Hans Bergsten
Philip Weaver wrote: > > Whenever I use my taglib from within the subdirectory "pages", for example, > jasper complains that "Class pages.SpecialConnectionTag not found in type > declaration." So, it appears to find the taglib but thinks that it's part of &g

TagLib Class Resolution Problem (TomCat 3.2.1)

2001-06-22 Thread Philip Weaver
Whenever I use my taglib from within the subdirectory "pages", for example, jasper complains that "Class pages.SpecialConnectionTag not found in type declaration." So, it appears to find the taglib but thinks that it's part of a package? (which it's not) I c

Re: taglib

2001-06-18 Thread Peter Choe
esh > > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Choe > Sent: Wednesday, June 13, 2001 8:38 PM > To: [EMAIL PROTECTED] > Subject: taglib > > so, i am playing

  1   2   3   >