Custom Tags

1999-10-30 Thread simon warrington
I've spent quite a bit of time over the past couple of days looking for some information on how to define custom tags and use them in the taglib. What I want to do is separate out some page components from my site and be able to maintain them separately from the rest of the site. This

Custom Tags

1999-11-08 Thread Se Hee Lee
Could anyone give me an example of custom tags which ease the access to EJB? Se Hee Lee Java / ASP Developer Third Millennium Communications, Inc. 125 Clairemont Ave. Suite 400 Decatur, GA 30030 W: (404) 687-2031 H: (770) 822-4809 P: (770) 620-0627

Custom Tags

1999-12-16 Thread Jari Worsley
> (Was Re: client-side validations with JSP) You mention custom tags. I presume we're talking about using the taglib stuff in 1.1 here.. I'm starting to do this myself, with the aim of getting rid of all "code" from JSP pages, to try and ease graphic designer/programm

custom tags

2000-01-13 Thread Primož Hrvatin
Hi! Can somebody please suggest some reading material (preferrably on the web) on creating custom tags according to JSP 1.1 spec and incorporating XML furthermore. Thanks, Primoz -- In God we trust. All others we monitor. -- NSA motto

Custom tags

2000-01-30 Thread Alex Amies
Are custom tags supported by JSP1.0.  I want to use custom tags to access EJB's instead of surrogate beans.  Does anyone have any pointers to informative url's?    I am also finding it messy formating information from result sets in supporting beans into html tables in the the j

Custom Tags

2003-08-14 Thread Vijith
Hi All, Is there anyway in which I can prevent the body inside a custom tag from appearing in the output. ie this is the text Now i donot want this is the text to appear in the output but i want to get this text in the Custom Tag Handler and then modify it and tehn put it back to the body I

Re: Custom Tags

1999-10-30 Thread Hans Bergsten
simon warrington wrote: > > I've spent quite a bit of time over the past couple of days looking for some > information on how to define custom tags and use them in the taglib. > > What I want to do is separate out some page components from my site and be > able to mainta

Re: Custom Tags

1999-11-08 Thread Karl Avedal
Hello Se Hee Lee, A very basic example of this can be found at http://www.orionserver.com/examples/jsp/ejbtag/simple.jsp Karl Avedal The Orion team Se Hee Lee wrote: > Could anyone give me an example of custom tags which ease the access to

Re: Custom Tags

1999-12-16 Thread Mark A. Kolb
At 5:05 AM -0600 12/16/99, Jari Worsley wrote: >How much work have others done with custom tags? How stable is the spec ? I >am using >SJSP as the JSP implementation, with Apache 1.3.9 and JServ in support >(plus jdk >1.1.6). Seems ok at the start, I'm wondering if anyone has

Re: Custom Tags

1999-12-16 Thread Jari Worsley
Mark, thanks SJSP has an xml file jsp.tld which is a tag library definition for the jsp tags themselves, i.e. jsp:useBean, jsp:include etc. I wonder whether you can add your own tags to this library, e.g. to support indexed properties like so: The same effect could be achieved by using a custo

Re: Custom Tags

1999-12-16 Thread Hans Bergsten
Jari Worsley wrote: > > You mention custom tags. I presume we're talking about using the taglib stuff in 1.1 > here.. > > I'm starting to do this myself, with the aim of getting rid of all "code" from JSP > pages, to try and ease graphic designer/program

Re: Custom tags

2000-01-30 Thread Ashwath Narayan A
- From: Alex Amies To: [EMAIL PROTECTED] Sent: Monday, January 31, 2000 12:43 AM Subject: Custom tags Are custom tags supported by JSP1.0.  I want to use custom tags to access EJB's instead of surrogate beans.  Does anyone have any pointers to informative

Re: Custom tags

2000-01-31 Thread Alex Amies
ashwath, Good reference. Thanks. Alex. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/js

Re: custom tags

2000-02-01 Thread Eduardo Pelegri-Llopart
there. I will post an updated vendor support list in a day or so. - eduard/o > Date:Sun, 30 Jan 2000 11:13:38 -0800 > From:Alex Amies <[EMAIL PROTECTED]> > Subject: Custom tags > > Are custom tags supported by JSP1

nesting custom tags

2000-08-04 Thread Tony Abbott
Hi there I am trying to create a custom tag that can be nested inside itself (like can), but I want it to set a page variable. The problem comes with the declare field in VariableInfo that the TEI returns. I can't set it true, becuase when it reaches the inner tag it complains that it is redefin

implementing custom tags

2001-05-03 Thread erik morton
Hello. We are implementing the setPageContext method and then later writing to the output stream in the doStartTag method. When we test for null in the doStartTag Method we find out that the pageContext is null. What are we missing here? Any ideas would be great. Thanks. // public void setPageCon

Custom Tags problem

2000-04-18 Thread Veronique Dupierris
Hi, I'm actually developping some custom tags to clarify my jsp pages. Of course I wrote the 'iterate' tag which takes an iterator as attribute and I wrote 2 TagExtraInfo : one which return a String as scriplet variable (commonly used) and an other one which return an Obj

JSP Custom Tags

2000-05-01 Thread Laiwu Luo
I am learning JSP Custom Tags with Sun JavaServer Web Development Kit (JSWDK) 1.0.1. Can anyone tell me where I should put the packaged tag libraries? Thanks, Laiwu === To unsubscribe: mailto [EMAIL PROTECTED] with body

JSP custom tags

2002-06-07 Thread Luis Javier Beltrán
Hi everyone, Some days ago I posted a message about the better way to separate logic form presentation in a JSP, and some people suggested using taglibs. I decided to use them, but have some doubts. For instance, when should I use a custom tag and how? Should I program all the logic in ta

Re: Custom Tags

2003-08-14 Thread David M. Karr
e text Vijith> Vijith> Now i donot want this is the text to appear in the output Vijith> but i want to get this text in the Custom Tag Handler and then modify it Vijith> and tehn put it back to the body Vijith> I would like to get it as Vijith> Thisi

Re: Custom Tags

2003-08-14 Thread Vijith
> > Vijith> Now i donot want this is the text to appear in the output > > Vijith> but i want to get this text in the Custom Tag Handler and then modify it > Vijith> and tehn put it back to the body > > Vijith> I would like to get it as > >

JSP 1.1 - Custom Tags

1999-12-29 Thread Jim Smith
Can someone point me to an example for Custom Tags? thanks, jim === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.

Re: nesting custom tags

2000-08-04 Thread Hans Bergsten
Tony Abbott wrote: > > Hi there > > I am trying to create a custom tag that can be nested inside itself (like > can), but I want it to set a page variable. The problem comes with the declare > field in VariableInfo that the TEI returns. I can't set it true, becuase when > it reaches the inner tag

Re: nesting custom tags

2000-08-04 Thread Tony Abbott
Hi Hans, I was hoping to avoid that, I want keep the tags as clutter free as possible. I'm trying to build a tag for handling the logic (and state persistance within a session) of a collapsible tree structure and I'd like to have the tags as simple as possible since the html for the tables is alr

Re: nesting custom tags

2000-08-05 Thread Hans Bergsten
Tony Abbott wrote: > > Hi Hans, > > I was hoping to avoid that, I want keep the tags as clutter free as possible. > I'm trying to build a tag for handling the logic (and state persistance within > a session) of a collapsible tree structure and I'd like to have the tags as > simple as possible sinc

Help: JSP Custom Tags

2001-03-02 Thread Kapil Khanna
I intend to have very clean MVC separation in our web application. 1. Would it be wise to use Custom JSP tags ? 2. Could you inform me about the pros and cons of using Custom JSP tags? Would be of tremendous help. Thanks in advance. Regards, Kapil =

Re: implementing custom tags

2001-05-04 Thread Sachin S. Khanna
lt;[EMAIL PROTECTED]> Sent: Friday, May 04, 2001 12:47 AM Subject: implementing custom tags > Hello. > > We are implementing the setPageContext method and then later writing to > the output stream in the doStartTag method. When we test for null in the > doStartTag Method we find out t

JRun and Custom Tags?

2000-04-06 Thread Tung Bui
Hello all, I'm new to JSP and trying to learn it. I have got my JSP pages working. Now, I'm looking into the Custom Tags. I found and download the first example from Orion (so it should works) and try to have it work on JRun. It should be a straight forward thing, right? Wrong. I cou

Custom Tags in JSP

2000-04-18 Thread Jon Baer
Hi, Asked this question before and didn't get a response so Im gonna try to rephrase. In JRun there is an option to create "Taglets" where servlet code could be implemented by a simple tag, ie: Some Text Is there a way to implement tags such as this in JSP? Im looking for documentation on ho

help on custom tags.....

2000-04-27 Thread Krishna, Suresh
hi folks, can i know how to use custom tags in JSP? any documentation and examples .. Regards suresh === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servl

What are Custom Tags?

2000-05-26 Thread Ulises Chesini
Hi all, sorry for my basic question, I'm new to JSP. Where can I find info about custom tags libraries? thanks in advanced, Ulises === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST"

Custom Tags and Beans

2000-06-01 Thread Pete Walsh
Hi, I'm try to get a reference to one of my beans inside the code of a Jsp Tag I'm making. When I declare the bean's scope to be page, and use the following statement in my Tag's doStartTag BeanName log = (BeanName)pageContext.getAttribute("BeanName"); (where BeanName is the name of the bean ;)

Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
Hi, Can anybody help clarify how a JSP container should handle overloaded setters in a custom tag: public void setData(List dataList) { this.dataList = dataList; } public void setData(Object dataObj) { this.dataObj = dataObj; } public void setData(String dataStr) { this.dat

attributes for custom tags

2002-03-21 Thread cbarnes
I am writing a custom tag where one of the attributes required is a String array. I know I'm being awkward but I want to be able to create this string array within the custom tag line. I imagined that I would be able to do something like the following However, tomcat wants to translate the type

Re: JSP custom tags

2002-06-07 Thread John Vanderbrook
Hi Louis, It very much depends on your internal development process. It very much depends also on what you call "presentation". If you replace Java code by equivalent programming constructs which just have a different (tag) syntax, then your designer still has to be doing programming and he/sh

Custom Tags in JSP

2003-08-08 Thread Vijith
> Hi All, > I'm new to Custom Tags in JSP and I'm facing few issues.Can anyone > please help me out in this regard. > > 1) I have a custom tag like > > Test > > > Now when i include this custom tag in my jsp, the attribute is getting > set and the do

Custom tags - lifecycle question

2003-08-21 Thread Bob the Builder
Hi I have a question about when custom tag lifecycle methods are invoked, any responses from the gurus would be much appreciated. I have a nested row tag that shows data record(s) within a parent tag multiple times. I looked at the Jasper generated source and noticed that the object creation, set

Re: JSP 1.1 - Custom Tags

1999-12-29 Thread Craig R. McClanahan
Jim Smith wrote: > Can someone point me to an example for Custom Tags? > > thanks, > jim Appendex A of the JSP 1.1 specification (http://java.sun.com/products/jsp/download.html) contains a few simple examples. Crai

Re: JSP 1.1 - Custom Tags

1999-12-29 Thread Neal Kaiser
Check out OrionServer. It is a great J2EE application server. They have a demo for custom tags: http://www.orionserver.com --- Neal Kaiser Make-a-Store - Your E-Commerce Solution Provider Voice: 703-271-9449 Email: [EMAIL PROTECTED] ICQ #: 49391872 URL: http://www.make-a-store.com

Dynamic attributes to custom tags

2000-01-25 Thread Tim Fox
Is there any way, using taglibs to get dynamic attributes passed into the tag code, from my understanding it seems that the attributes get passed as literals. For example: In my setter method for attribute1 in my tag code the string "(new Date()).toString()" is passed in, rather than the evalu

JRUN :: custom tags :: XSLT :: HELP!

2000-08-31 Thread Neal Cabage
Anyone here using the JRUN custom tags? I'm trying to use the XSLT custom tag to parse my XML on the server but it won't work. Here's what I've done as a test: I've tried this about a million different configs of the same thing ... but according to what I've re

Object attributes for custom tags

2000-10-24 Thread Dan Cancro
Can you pass objects other than strings as attributes to a custom tag? I'm thinking of something that would look something like this: <% Vector v = new Vector(); v.addElement("asdfasdf"); %> /> === To unsubscribe: mailto [E

Model 3 architecture + custom tags

2001-03-02 Thread Kapil Khanna
Can you tell me more about the Model 3 Architecture, its benefits ?? Where can I get more information ? Thanks. Kapil === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL

Re: Help: JSP Custom Tags

2001-03-04 Thread Craig R. McClanahan
Kapil Khanna wrote: > I intend to have very clean MVC separation in our web application. > > 1. Would it be wise to use Custom JSP tags ? > 2. Could you inform me about the pros and cons of using Custom JSP tags? > Although you can use custom tags with an MVC-organized applica

Custom Tags on WebLogic 6.0

2001-05-24 Thread Abhijeet Surve
hi guys The problem I are facing is in the implementation of JSP Custom Tags. I am using: > BEA WebLogic Server™ 6.0.(Service Pack 1) > Runtime: JDK 1.3 (e.g., the JDK that comes with WebLogic) > Our Beans and Java classes are compiled with JDK 1.2.2_007 > JSP

Re: Custom Tags or Beans

2001-07-11 Thread Glenn Wearen
about the topic before, somebody pointed out that one of best reasons for using custom-tags is that it allows web-developers who don't understand Java to write JSP. apologies for anybody who took time to respond to my question, my minds made up to stick with beans because it s

Re: Custom Tags or Beans

2001-07-11 Thread Bryan LaPlante
One thing to Consider about custom tags that is not to do with programming as much as communications. If any one is working in a team environment and creates a component the matter of documentation is less complex if you are describing a list of parameters as apposed to describing the methods and

JSP custom tags - performance issues?

2001-07-20 Thread Steve Bang
In Professional JSP, it briefly mentions that the use of custom tags may impact application performance by adding an additional layer to the processing. Does anyone have any insights that can be shared about extensive use of custom tags and performance impacts? Are the performance impacts only

Re: Problem Custom Tags/JSP

2001-07-23 Thread Dmitry Namiot
>From your code: Generates the HTML Table Param1 false true change name to 'param' (small p): param -- Coldjava - server-side Java components http://www.servletsuite.com __ Your favorite stores, helpful shopping tools and

Re: JRun and Custom Tags?

2000-04-06 Thread LynchWu
>http://www.orionserver.com/tutorials/tagtut/lesson1/lesson1.html Yup, I met some similar problems, too. Is there any other more detailed tutorial? Especially the details in directory hierarchy and in evn variables like CLASSPATH. Thanks. == Lynch Wu Web Engineer pAsia Inc

Re: Custom Tags in JSP

2000-04-18 Thread Joseph B. Ottinger
On Tue, 18 Apr 2000, Jon Baer wrote: > Is there a way to implement tags such as this in JSP? Im looking for documentation > on how to accomplish this. (Creating my own tag library). Im also interested on > how a servlet can get the "Some Text" portion that is between the tags. Yes, JSP taglib

Re: Custom Tags in JSP

2000-04-18 Thread Hans Bergsten
Jon Baer wrote: > > Hi, > > Asked this question before and didn't get a response so Im gonna try to rephrase. > In JRun there is an option to create "Taglets" where servlet code could be > implemented by a simple tag, ie: > > > Some Text > > > Is there a way to implement tags such as this in JSP

Re: Custom Tags in JSP

2000-04-18 Thread Jon Baer
Thanks alot for this info! OK, one more question then, since Im using JRunPro (2.3) is there any way to "force" it to use JSP 1.1? Or do I have to download the new version? Im assuming it might be as simple as changing the alias for .jsp file to point to a new .jar file? Thanks for help in adv

Re: Custom Tags in JSP

2000-04-18 Thread Scott Stirling
--- Original Message - From: Jon Baer <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 18, 2000 12:50 AM Subject: Re: Custom Tags in JSP > Thanks alot for this info! > > OK, one more question then, since Im using JRunPro (2.3) is there any way to "force"

Re: Custom Tags in JSP

2000-04-18 Thread Raghu Duggirala
Hai, You can find about tag library in web logic or tomcat, U need to explore, cheers, --- Hans Bergsten <[EMAIL PROTECTED]> wrote: > Jon Baer wrote: > > > > Hi, > > > > Asked this question before and didn't get a > response so Im gonna try to rephrase. > > In JRun there is an option to create

Custom Tags in JSP 1.0??

2000-04-18 Thread Kevin McEntee
I am interested in Custom Tags and I am wondering if there is any support for them in the JSP 1.0 standard? My company is investigating WebSphere Application Server as a possible JSP environment and WAS will not do JSP 1.1 for several months. - Kevin

Re: help on custom tags.....

2000-04-27 Thread LynchWu
>hi folks, >can i know how to use custom tags in JSP? >any documentation and examples .. >Regards >suresh Hi Suresh There is a tutorial at http://www.orionserver.com. Also you can check the JSP Spec ver. 1.1, at http://java.sun.com/jsp. Regards == Lynch

Re: What are Custom Tags?

2000-05-26 Thread Kapoor Ajay
pl. go to http://www.orionserver.com. There is a very nice tutorial on tag libraries. Ajay Kapoor [EMAIL PROTECTED] IBM === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JS

Re: What are Custom Tags?

2000-05-26 Thread Robert Nicholson
r Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Ulises Chesini > Sent: Friday, May 26, 2000 6:39 AM > To: [EMAIL PROTECTED] > Subject: What are Custom Tags? > > > Hi all, sorry for my basic question, I'm new to JSP. Where can I find info >

Re: What are Custom Tags?

2000-05-26 Thread Wasetis, Ken
TECTED] Subject: Re: What are Custom Tags? The manning book "Web Development with Java Server Pages" has the best infomration available on tag libs... you can get the ebook for $12 at http://www.manning.com/fields is the hardcopy isn't available. > -Original Message-

Re: What are Custom Tags?

2000-05-26 Thread Robert Nicholson
st about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Wasetis, Ken > Sent: Friday, May 26, 2000 11:20 AM > To: [EMAIL PROTECTED] > Subject: Re: What are Custom Tags? > > > I'm sure everyone will jump on this, but the hardcopy is indeed availa

Re: Custom Tags and Beans

2000-06-01 Thread Craig R. McClanahan
Pete Walsh wrote: > Hi, > > I'm try to get a reference to one of my beans inside the code of a Jsp Tag I'm > making. When I declare the bean's scope to be page, and use the following > statement in my Tag's doStartTag > > BeanName log = (BeanName)pageContext.getAttribute("BeanName"); > (where Be

Re: Custom Tags and Beans

2000-06-02 Thread Pete Walsh
Thanks, I used the findAttribute and it worked. -Pete On Thu, 01 Jun 2000, you wrote: > Pete Walsh wrote: > > > Hi, > > > > I'm try to get a reference to one of my beans inside the code of a Jsp Tag I'm > > making. When I declare the bean's scope to be page, and use the following > > statement

Custom Tags in iWS 4.1

2000-06-15 Thread Brad Sneade
I am trying to get JSP 1.1 custom tags working in iPlanet Web Server 4.1. I followed the instructions provided by Suresh earlier on this matter (included below). However, still can not get iWS working correctly. Here is the message from the error log: [15/Jun/2000:10:06:34] info ( 6219

Model 3 architecture + custom tags

2000-07-19 Thread Marco M
Hi all, i am trying to write JSP in XML using custom JSP tagsbut i am experiencing lot of problems! i am using tomcat 3.1 and xalan as a XSL Processor i don't know how to write the JSP, since i always got back SAX Exception... i am writint JSP like this . i am getting the bod

Re: Custom tags: overloaded setters

2001-10-01 Thread Hans Bergsten
Oliver Suciu wrote: > Hi, > > Can anybody help clarify how a JSP container should handle > overloaded setters in a custom tag: > > public void setData(List dataList) { > this.dataList = dataList; > } > public void setData(Object dataObj) { > this.dataObj = dataObj; > } > public

Re: Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
You're saying that the spec doesn't say anything about this; how comes you then say that the behavior of Tomcat is the correct one?... Thx, -- Oliver Hans Bergsten wrote: > > Oliver Suciu wrote: > > > Hi, > > > > Can anybody help clarify how a JSP container should handle > > overloaded setters

Re: Custom tags: overloaded setters

2001-10-01 Thread Hans Bergsten
Oliver Suciu wrote: > You're saying that the spec doesn't say anything about this; > how comes you then say that the behavior of Tomcat is the > correct one?... I'm saying that the bean spec does not explicitly say that a property can not have multiple setter methods, nor that it can have it. W

Re: Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
OK -- so it's underspecified. That means that the JRun implementation is just as correct or incorrect as Tomcat's... BTW, there seems to be a simple (JSP- and Tomcat-compliant) way to make use of overloaded setters -- use request-time expressions: modify: to: This bypasses any convers

Re: Custom tags: overloaded setters

2001-10-01 Thread Hans Bergsten
Oliver Suciu wrote: > OK -- so it's underspecified. That means that the JRun implementation > is just as correct or incorrect as Tomcat's... No. Tomcat is the Reference Implementation, so when in doubt, trust Tomcat (yeah, yeah. I know there may be bugs in Tomcat as well ;-) Anyway, this was d

Re: Custom tags: overloaded setters

2001-10-01 Thread Oliver Suciu
Actually, it seems to work with exactly those three setters mentioned in the example -- I can pass a List in one instance, and a String in another. So now I'm wondering whether it's by design or just by accident?... -- Oliver Hans Bergsten wrote: > > Oliver Suciu wrote: > > > OK -- so it's unde

Re: Custom tags: overloaded setters

2001-10-01 Thread Hans Bergsten
Oliver Suciu wrote: > Actually, it seems to work with exactly those three setters > mentioned in the example -- I can pass a List in one instance, > and a String in another. > > So now I'm wondering whether it's by design or just by accident?... By accident, see previous discussion. Also try wi

Replacing custom tags with content

2002-02-15 Thread cbarnes
Is it possible for a custom tag to generate content that is JSP code instead of html? I am writing a custom tag where the output needs to be a line similar to the following: <%@ include file="myfile.jsp" %> I can't include this line in the body of my tag because the file name is produced by the

Re: attributes for custom tags

2002-03-21 Thread balaji
some code change, even if you use the String tokenizer approach. regards, balaji. - Original Message - From: "cbarnes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 21, 2002 5:43 PM Subject: attributes for custom tags > I am writing a cu

RES: attributes for custom tags

2002-03-22 Thread Marco Aurelio Cancio Pereira Soares - DISI.N
21 de março de 2002 09:13 Para: [EMAIL PROTECTED] Assunto: attributes for custom tags I am writing a custom tag where one of the attributes required is a String array. I know I'm being awkward but I want to be able to create this string array within the custom tag line. I imagined that I would

TEI classes for custom tags

2002-04-23 Thread cbarnes
I am writing a number of custom tags, all of which return a list of string values to the JSP by using a TEI class. I want to write a generic TEI class that can be used by all the custom tags. This TEI class needs to be supplied with a list of attribute names that it has to create VariableInfo

Re: Custom tags - lifecycle question

2003-08-21 Thread Kobrix
Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED] Behalf Of Bob the Builder > Sent: Thursday, August 21, 2003 4:15 AM > To: [EMAIL PROTECTED] > Subject: Custom tags - lifecycle question > > > Hi > > I have a qu

Re: Custom tags - lifecycle question

2003-08-21 Thread Bryan Basham
Hello Bob, comments inlined > I have a nested row tag that shows data record(s) within a parent tag > multiple times. I looked at the Jasper generated source and noticed that the > object creation, setParent and setPageContext are invoked per row > invocation. I.e. for the following: > > > > Stu

Re: Dynamic attributes to custom tags

2000-01-25 Thread Damian Fauth
The following works for me in Tomcat 3.1_m1 In your taglib.tld be sure to set the rtexprvalue of your tag: mytag path.to.myClass empty attribute1 true true Damian Tim Fox wrote: > > Is there any way, usi

Re: Dynamic attributes to custom tags

2000-01-25 Thread Veronique Dupierris
This is because your expression is quoted, it should work if you write: Veronique Tim Fox a écrit : > Is there any way, using taglibs to get dynamic attributes passed into > the tag code, from my understanding it seems that the attributes get > passed as literals. > > For example: > > > > In

Re: Dynamic attributes to custom tags

2000-01-25 Thread Dave Peckham
Use this syntax in your JSP: then use in your taglib attribute definition, like so: nametrue Dave - Original Message - From: Tim Fox <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 25, 2000 6:17 AM Subject: Dynamic attributes to custom tags

Exception Handling with Custom Tags/Exceptions

2000-09-27 Thread Shari Fletcher
Hello all -- I'm looking for some guidance in handling Custom errors in my app. I can't seem to find the message string of my custom exception when trying to call my JSP Error page. I'm consistently getting: javax.servlet.jsp.JspTagException: runtime failure in custom tag 'CalendarHandler' . I

Re: Object attributes for custom tags

2000-10-24 Thread Walker, Chris
M > To: [EMAIL PROTECTED] > Subject: Object attributes for custom tags > > > Can you pass objects other than strings as attributes to a > custom tag? I'm > thinking of something that would look something like this: > > <% &g

Re: Object attributes for custom tags

2000-10-24 Thread Oliver Suciu
Yes -- if you fix it to <%=v%>... ;-) -- Oliver Dan Cancro wrote: > > Can you pass objects other than strings as attributes to a custom tag? I'm > thinking of something that would look something like this: > > <% > Vector v = new Vector(); > v.addElement("asdfasdf"); > %> > /> > > =

Throwing exceptions from JSP custom tags

2001-02-14 Thread Martin Cooper
The JSP spec says very little about JspTagException (nee JspError), but does indicate that this is the exception that should be thrown when something goes wrong inside a custom tag. However, in looking at various custom tag implementations available on the net, I see some places where JspTagExcept

Re: Model 3 architecture + custom tags

2001-03-04 Thread Mayuresh Kadu
Sent: Friday, March 02, 2001 9:21 PM To: [EMAIL PROTECTED] Subject: Model 3 architecture + custom tags Can you tell me more about the Model 3 Architecture, its benefits ?? Where can I get more information ? Thanks. Kapil

Re: Model 3 architecture + custom tags

2001-03-04 Thread Martin Cooper
March 04, 2001 3:20 AM Subject: Re: Model 3 architecture + custom tags > Kapil, > > please do try search engines. No offense meant but also make it a point to > mark posts as OT (for OFF TOPIC) if they are so. > > > Mayuresh > > -Original Message- > From: A

Re: Custom Tags on WebLogic 6.0

2001-05-24 Thread Hans Bergsten
Abhijeet Surve wrote: > > hi guys > > The problem I are facing is in the implementation of JSP Custom Tags. > > I am using: > > BEA WebLogic Server? 6.0.(Service Pack 1) > > Runtime: JDK 1.3 (e.g., the JDK that comes with WebLogic) > > Our Bean

Re: Custom Tags on WebLogic 6.0

2001-05-24 Thread horwat
Tomcat 4.0 follows the JSP 1.2 specification and does not call setBodyContent(), doInitBody() and doAfterBody() on empty tags (tags with no body). Be careful with spaces, they are considered significant in JSP syntax and constitute a tag body. Justy > This is an area where the JSP 1.1 specifica

Re: Custom Tags on WebLogic 6.0

2001-05-25 Thread Peter Pilgrim
15:19 MST Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> DELEGATED - Sent by: A mailing list about Java Server Pages specification and [EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc: Subject:

Re: JSP custom tags - performance issues?

2001-07-20 Thread Brad Cox
wrote: >In Professional JSP, it briefly mentions that the use of custom tags may >impact application performance by adding an additional layer to the >processing. Does anyone have any insights that can be shared about >extensive use of custom tags and performance impacts? Are the per

Newbie question. Problem with custom tags

2001-08-17 Thread Declan
Hello all, I am having trouble with custom tags, although I have followed two separate tutorials on the issue, every time I try and run the .jsp page I get the following error message. Could it be something to do with the web.xml file. Thank you in advance. Internal Servlet Error

Re: Model 3 architecture + custom tags

2000-07-19 Thread Sean Mickey
Hi - Is this a type, or is there such a thing as "Model 3"? I am familiar with Model 1 & 2, but have not heard of 3. Searched the web, but found nothing. Thanks for any help - Sean === To unsubscribe: mailto [EMAIL PROTECTED]

Re: Model 3 architecture + custom tags

2000-07-19 Thread Marco M
TED] > Subject: Re: Model 3 architecture + custom tags > > > Hi - > Is this a type, or is there such a thing as "Model 3"? > I am familiar with Model 1 & 2, but have not heard of 3. > Sea

Re: Model 3 architecture + custom tags

2000-07-20 Thread Ritesh_Srivastava
ED] > Subject: Re: Model 3 architecture + custom tags > > Hi Sean, > ok maybe the name is misleadingas Daniel Lopez and others > said, > 'it's not an official name'. > u can find something about that if u search the archive of JSP interest.. >

Re: Model 3 architecture + custom tags

2000-07-20 Thread Craig R. McClanahan
Marco M wrote: > Hi all, > i am trying to write JSP in XML using custom JSP tagsbut i am > experiencing lot of problems! > i am using tomcat 3.1 and xalan as a XSL Processor > i don't know how to write the JSP, since i always got back SAX Exception... > Without the details of how you

Re: Model 3 architecture + custom tags

2000-07-20 Thread Nathan Revo
d I think your lines should look like this: . -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 20, 2000 1:31 PM To: [EMAIL PROTECTED] Subject: Re: Model 3 architecture + custom tags Marco M wrote: > Hi all, > i am trying to wr

Re: Model 3 architecture + custom tags

2000-07-20 Thread Marco M
000 23:01 > To: [EMAIL PROTECTED] > Subject: Re: Model 3 architecture + custom tags > > > Are you trying to display your JSP page as an XML document? > Depending on > what version of JSP you have declare the content type to be "text/xml" > > for JSP 0.9? &g

Re: Model 3 architecture + custom tags

2000-07-23 Thread Marco M
From: EXT Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Sent: 20. July 2000 22:31 > To: [EMAIL PROTECTED] > Subject: Re: Model 3 architecture + custom tags > > > Marco M wrote: > > > Hi all, > > i am trying to write JSP in XML using custom JSP > tagsbut

Re: TEI classes for custom tags

2002-04-23 Thread cbarnes
JspException(e.getMessage()); } Catharine - Original Message - From: "cbarnes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 23, 2002 11:27 AM Subject: TEI classes for custom tags > I am writing a number of custom tags, all of which return a list

  1   2   >