AW: AW: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Olaf Bergner
von Robert Simmons Jr. > Gesendet: Dienstag, 4. Januar 2005 18:53 > An: taglibs-user@jakarta.apache.org > Betreff: Re: AW: AW: Newbie Question: EL in attributes for a custom tag > not being evaluated?? > > > Olaf; > > I did what you said but now Im getting a transient erro

Re: AW: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Hassan Schroeder
Robert Simmons Jr. wrote: I changed the web.xml as you suggested but now the JSTL tags blow so I obviously need a version of the JSTL that works with 2.4. Which Jakarta taglibs version works with that ? On the left menu you'll see JCP Standardized

Re: AW: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
news [mailto:[EMAIL PROTECTED] Auftrag von Robert Simmons Jr. Gesendet: Dienstag, 4. Januar 2005 17:00 An: taglibs-user@jakarta.apache.org Betreff: Re: AW: Newbie Question: EL in attributes for a custom tag not being evaluated?? Addendum: My web.xml is here ... http://ja

Re: AW: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
ur EL expressions, your servlet container or your tag? Being lazy, I would almost always opt for the servlet container. Cheers, Olaf -Ursprüngliche Nachricht- Von: news [mailto:[EMAIL PROTECTED] Auftrag von Robert Simmons Jr. Gesendet: Dienstag, 4. Januar 2005 17:00 An: taglibs-user@ja

Re: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Kris Schneider
responsibility > >to evaluate EL expressions in JSP 2.0 this is the servlet container's job. > >That's exactly why tags which call themselves EL enabled usually won't work > >in a JSP 2.0 environment. These tags handle EL evaluation intern

AW: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Olaf Bergner
Robert Simmons Jr. > Gesendet: Dienstag, 4. Januar 2005 17:00 > An: taglibs-user@jakarta.apache.org > Betreff: Re: AW: Newbie Question: EL in attributes for a custom tag not > being evaluated?? > > > Addendum: > > My web.xml is here ... > > &g

Re: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
luation internally and thus EL expressions will get evaluated twice, first by the servlet container and then by the JSP tag. Hope this makes things a little clearer, Olaf -Ursprüngliche Nachricht- Von: Kris Schneider [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 4. Januar 2005 13:

Re: AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
his makes things a little clearer, Olaf -Ursprüngliche Nachricht- Von: Kris Schneider [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 4. Januar 2005 13:53 An: Tag Libraries Users List Betreff: Re: Newbie Question: EL in attributes for a custom tag not being evaluated?? Robert,

AW: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Olaf Bergner
; Gesendet: Dienstag, 4. Januar 2005 13:53 > An: Tag Libraries Users List > Betreff: Re: Newbie Question: EL in attributes for a custom tag not > being evaluated?? > > > Robert, > > Since it looks like you're using > javax.servlet.jsp.tagext.SimpleTagSupport, I'll

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Kris Schneider
Robert, Since it looks like you're using javax.servlet.jsp.tagext.SimpleTagSupport, I'll assume your're running on a JSP 2.0 container. I haven't looked closely at the rest of your code yet, but the first thing to do is make sure your web app is using a Servlet 2.4 deployment descriptor (web.xml).

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
Thanks. I currently have a workaround using the nested JSP attribute tag. This appears to work. *shrug* I keep thinking that there is something Im missing in my tag implementation. -

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Keshav Shetty
Although I couldn't find the actual reason to your problem, But I have a workaround. Instead of EL use direct JSP expression like <%=subID%> in the code i.e Please take care that subID variable present and initialised in your JSP. I will analyze further reagrding your problem during my free tim

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
That just made my EL expressions in my JSTL tags explode ... if I put in that directive then I get the following result: org.apache.jasper.JasperException: /JSPs/AdminSubscriptions.jsp(22,1) According to TLD or attribute directive in tag file, attribute test does not accept any expressions

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
strange thing is that it evaluates the EL in the JSTL tags such as c:out Keshav Shetty wrote: I concluded that your EL are not evaluated. I think you have to use <%@ page isELIgnored="false"%> in your jsp. I hope this will solve your problem. You can also refer to http://forum.java.sun.com/thread.j

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Keshav Shetty
I concluded that your EL are not evaluated. I think you have to use <%@ page isELIgnored="false"%> in your jsp. I hope this will solve your problem. You can also refer to http://forum.java.sun.com/thread.jspa?threadID=573209&messageID=2848229 Let me know the result. Best regards Keshav Shetty Rober

Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
Greetings; I have a tag that I created to allow integration with my back end. I am using the Jakarta astandard taglibs extensively in the application but I am a bit of a taglib newbie and I have a problem. Namely when I use EL expressions in my tag attributes, they get passed verbatim to the tag

AW: Using JSTL, newbie question: context

2004-07-07 Thread Rinnert, Wolfgang
I received 2 answers to my question. Both seem to work - even though I did not get to demonstrate it, since momentarily my DB setup does not work (I moved to a different workstation). Thanks a lot anyway! Best regards Mit freundlichen Grüßen Wolfgang Rinnert -Ursprüngliche Nachricht-

Re: Using JSTL, newbie question: context

2004-07-06 Thread Kris Schneider
"applicationScope" instead of "servletContext"... Quoting Helios Alonso <[EMAIL PROTECTED]>: > Try using: > > > > So it gets addressesDB bean from the servletContext and query for the > addresses property (it is, calls getAddresses()). If getAddresses reloads > the array, it works. > > htt

Re: Using JSTL, newbie question: context

2004-07-06 Thread Helios Alonso
Try using: So it gets addressesDB bean from the servletContext and query for the addresses property (it is, calls getAddresses()). If getAddresses reloads the array, it works. http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html#wp71043 (framed page from http://java.sun.com/j2ee/1.4/d

Re: Using JSTL, newbie question: context

2004-07-06 Thread Kris Schneider
Without spending too much time reading the article and looking at its code, I think you should be able to replace the scriptlet code in Home.jsp with: <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %> .. ">Delete or ">Delete

Using JSTL, newbie question: context

2004-07-06 Thread Rinnert, Wolfgang
Hi, as a training step, I want to convert the sample application by Paul Wood, http://www.onjava.com/pub/a/onjava/2003/01/08/tomcat4.html so that JSTL is used in place of the scriptlet code inserted in the JSP of this webapp. I have changed "ContextListener.java" to call AddressesDB.getAddresses

Re: Newbie Question Regarding Iterate tag

2004-03-31 Thread Bill Siggelkow
Mark, The object referred to by "row" will be a Vo. Assuming your Vo has a "getFoo()" method you can do something like: Alternatively, you could use the JSTL forEach tag: Mark Glass wrote: I am building a Struts application which places an ArryList of Vo objects into the request. (

Newbie Question Regarding Iterate tag

2004-03-31 Thread Mark Glass
I am building a Struts application which places an ArryList of Vo objects into the request. (request.setAttribute("plans", listOfVo);). In the JSP file I want to iterate through the list, get each Vo to populate a row of a table. How do I do this with the Struts iterate tag? My code looks like

Re: NullPointerException - newbie question

2004-01-27 Thread Kris Schneider
If you're going to target Tomcat 5 (Servlet 2.4 & JSP 2.0), you should probably change to JSTL 1.1 (Standard 1.1.0-B1). In addition, you should use a Servlet 2.4 web.xml: http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation=

NullPointerException - newbie question

2004-01-26 Thread Lee Peik Feng
Hi, I'm using tomcat 5.0.18 and jakarta-taglibs-standard-1.0.4 with J2SDK 1.4.2, WinXP I encounter the following exception : java.lang.NullPointerException at org.apache.jasper.runtime.TagHandlerPool.get(TagHandlerPool.java:153) .. java.lang.NullPointerException at org.apache.jasp

Newbie question: initializing an array variable

2003-09-19 Thread Shapira, Yoav
Hi, How do I initialize, using or in a

[Newbie] Pager Taglib 2.0 - newbie question

2003-06-12 Thread Pingili, Madhupal
Hi Everyone, I just downloaded pager-taglib-2.0 war and extracted all files. I have included all these files in an existing web application and I am not able to run pager-demo.jsp. I am getting null pointer exception. After debugging, I found that offset is null. I even saw folwing line in HTML

Newbie question

2002-09-09 Thread Frissaer, Jeroen
Hi all, I'm new to taglibs and want to enable logging through the jakarta log taglib package. I created my own tag whitch is coupled to my own specific class (extending LoggerTag.class). My question is: How can I add custom attributes to my tag, and how can I retrieve the values for these attr

Re: Newbie question - what is wrong with this .war?

2002-03-09 Thread Tony Ziolkowski
/tnewardhttp://www.clrgeeks.com/tneward- Original Message -From: "Tony Ziolkowski" <[EMAIL PROTECTED]>To: "Tag Libraries Users List" <[EMAIL PROTECTED]>Sent: Saturday, March 09, 2002 7:25 AMSubject: RE: Newbie question - what is wrong with this .war? I

Re: Newbie question - what is wrong with this .war?

2002-03-09 Thread Ted Neward
s List" <[EMAIL PROTECTED]> Sent: Saturday, March 09, 2002 7:25 AM Subject: RE: Newbie question - what is wrong with this .war? > It is. Unless I'm missing something somewhete. > > -Original Message- > From: Reynir Hübner [mailto:[EMAIL PROTECTED]] > Sent: March

RE: Newbie question - what is wrong with this .war?

2002-03-09 Thread Tony Ziolkowski
It is. Unless I'm missing something somewhete. -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: March 9, 2002 3:46 AM To: Tag Libraries Users List Subject: RE: Newbie question - what is wrong with this .war? the web-inf folder must be named WE

RE: Newbie question - what is wrong with this .war?

2002-03-09 Thread Reynir Hübner
the web-inf folder must be named WEB-INF > -Original Message- > From: Tony Ziolkowski [mailto:[EMAIL PROTECTED]] > Sent: 8. mars 2002 21:22 > To: Tag Libraries Users List > Subject: Re: Newbie question - what is wrong with this .war? > > > OOPS! Forgo

Re: Newbie question - what is wrong with this .war?

2002-03-08 Thread Tony Ziolkowski
(Parser.java:878) > at org.apache.jasper.compiler.Parser.parse(Parser.java:1145) > > followed by more stack trace. > > > > Hill, Donald wrote: > >> Check the package path under the classes >> >> >> >> -Original Message- >> Fr

Re: Newbie question - what is wrong with this .war?

2002-03-08 Thread Tony Ziolkowski
riginal Message- >From: Tony Ziolkowski [mailto:[EMAIL PROTECTED]] >Sent: Friday, March 08, 2002 10:56 AM >To: [EMAIL PROTECTED] >Subject: Newbie question - what is wrong with this .war? > > >Hi. I'm trying my first taglib exercise and it doesn't work. I am using >tomc

RE: Newbie question - what is wrong with this .war?

2002-03-08 Thread Tony Ziolkowski
I did. Those two clasesses belong to no pakcge. Must they belong to org.apache.jsp? -Original Message- From: Hill, Donald [mailto:[EMAIL PROTECTED]] Sent: March 8, 2002 12:05 PM To: 'Tag Libraries Users List' Subject: RE: Newbie question - what is wrong with this .war?

RE: Newbie question - what is wrong with this .war?

2002-03-08 Thread Hill, Donald
Check the package path under the classes -Original Message- From: Tony Ziolkowski [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 10:56 AM To: [EMAIL PROTECTED] Subject: Newbie question - what is wrong with this .war? Hi. I'm trying my first taglib exercise and it do

Newbie question - what is wrong with this .war?

2002-03-08 Thread Tony Ziolkowski
Hi. I'm trying my first taglib exercise and it doesn't work. I am using tomcat4. Attched is the war file I tried. When I try to reach my test page i get the following error: org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated. An er

Re: NEWBIE question DASH in TLD

2001-07-31 Thread Shawn Bayern
On Tue, 31 Jul 2001, Morten Raahede Knudsen wrote: > This is concerning the JSPTL taglib. > This might be a newbie question, but howcome > the tags 'tagclass' and 'bodycontent' in the .tld file have been split up to > and ? > > Resin doesn't seem to

NEWBIE question DASH in TLD

2001-07-31 Thread Morten Raahede Knudsen
Hi This is concerning the JSPTL taglib. This might be a newbie question, but howcome the tags 'tagclass' and 'bodycontent' in the .tld file have been split up to and ? Resin doesn't seem to accept it. T

newbie question

2001-07-13 Thread Manuel Berney
can i use ctlx with ultradev on macos 9.x connected to linux tomcat?

RE: AW: Newbie Question

2001-04-15 Thread Anthony Ikeda
s, Anthony Ikeda Web Application Developer, Proxima Technology Sydney Australia -Original Message- From: Morgan Delagrange [mailto:[EMAIL PROTECTED]] Sent: Saturday, 14 April 2001 4:42 AM To: [EMAIL PROTECTED] Subject: Re: AW: Newbie Question Yup, that's the real problem. Sorry. ---

RE: AW: Newbie Question

2001-04-15 Thread Anthony Ikeda
s, Anthony Ikeda Web Application Developer, Proxima Technology Sydney Australia -Original Message- From: Morgan Delagrange [mailto:[EMAIL PROTECTED]] Sent: Saturday, 14 April 2001 4:42 AM To: [EMAIL PROTECTED] Subject: Re: AW: Newbie Question Yup, that's the real problem. Sorry. ---

Newbie Question

2001-04-13 Thread Dummy Amar
Thanks guys, it is working now! + Amar Das + [EMAIL PROTECTED] + www.stgeorgeconsulting.com + (207) 594-3048 x(30)

Re: AW: Newbie Question

2001-04-13 Thread Morgan Delagrange
; > > -Ursprungliche Nachricht- > > Von: Morgan Delagrange [mailto:[EMAIL PROTECTED]] > > Gesendet: Donnerstag, 12. April 2001 21:17 > > An: [EMAIL PROTECTED] > > Betreff: Re: Newbie Question > > > > > > I would think that would work, but you

AW: Newbie Question

2001-04-13 Thread Stefan Riegel
xml. Regards Stefan Riegel > -Ursprungliche Nachricht- > Von: Morgan Delagrange [mailto:[EMAIL PROTECTED]] > Gesendet: Donnerstag, 12. April 2001 21:17 > An: [EMAIL PROTECTED] > Betreff: Re: Newbie Question > > > I would think that would work, but you might want

Re: Newbie Question

2001-04-12 Thread Morgan Delagrange
I would think that would work, but you might want to try this in your web.xml instead: http://java.apache.org/taglibs/jdbc jdbc.tld Also, as a point of information, this line shouldn't be necessary if you only access the database via the tag library: > <%@ page language="java

Newbie Question

2001-04-12 Thread Dummy Amar
Hi, I downloaded the JDBC taglib directory and following the direction copied the jdbc.tld file under the /WEB-INF directory and jdbc.jar under /WEB-INF/lib directory. I also created an entry in the /WEB_INF/web.xml like http://java.apache.org/taglibs/jdbc /WEB-INF

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai

RE: Newbie Question, this should be easy

2001-02-17 Thread ashant_c
SMTP OBJECT RUNNING IN DEMO MODE I am sorry!!, that i am missusing other's email id, but there is no other way to unsubcribe my account from jakarta mailing list. This is real Torture, i want to unsubsribe my account from jakarta mail list, I have writen a smtp mail program and this will send mai