Re: Dynamically adding components to pages

2005-06-01 Thread Rahul Akolkar
On 6/1/05, Marius Botha [EMAIL PROTECTED] wrote: snip/ I am using Tomcat 5 inside JBoss. What do you mean (as a .tag impl)? Where can I read more on how to do this? Here is one reference [ http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPTags5.html ]. Let me know if you have specific

Re: Formatting a phone number with JSTL?

2005-06-16 Thread Rahul Akolkar
On 6/16/05, Wendy Smoak [EMAIL PROTECTED] wrote: I'm trying to format a 10 digit number stored as a String in my bean, with dashes after the 3rd and 6th digit. Not sure if there is an elegant solution using fmt:formatNumber, since it works off of DecimalFormat, which allows prefixes, suffixes

Re: combining tags

2005-07-06 Thread Rahul Akolkar
Tom - Please see reply below: On 7/6/05, Tom Holmes Jr. [EMAIL PROTECTED] wrote: I used to have some JSP code that looked like: logic:iterate name=myForm property=myDataList id=iter html:checkbox name=iter property=checkedRes indexed=true/ bean:write name=iter

Re: taglibs help

2005-07-06 Thread Rahul Akolkar
On 7/6/05, Wendy Smoak [EMAIL PROTECTED] wrote: From: syed abrar [EMAIL PROTECTED] Iam new to this Struts framework. I have been assigned a complex GUI coding. If you are indeed using Struts, you might want to post to the struts-user list instead. (This is taglibs-user.) You can find

Re: TagSupport vs BodyTagSupport

2005-07-23 Thread Rahul Akolkar
On 7/23/05, Martin Cooper [EMAIL PROTECTED] wrote: snip/ Rahul mentioned SimpleTagSupport, and that would have been nice, but that came along long after the Struts tags, and indeed the Struts tags still need to support earlier versions of JSP. Yes, ofcourse. Luca - I probably should've

Re: how to get value of bean using logic iterator

2005-08-04 Thread Rahul Akolkar
On 8/4/05, Anuradha [EMAIL PROTECTED] wrote: Perhaps if you send a mail to [EMAIL PROTECTED] you will receive adequate response. user@struts.apache.org [ http://struts.apache.org/mail.html ] -Rahul - Original Message - From: Shailendramani [EMAIL PROTECTED] To:

Re: What is the benifit of using SimpleTagSupport on Classics tag

2005-08-04 Thread Rahul Akolkar
On 8/4/05, suman mukherjee [EMAIL PROTECTED] wrote: Hi all, I am new in JSP2.0. can any one tell me in brief what are the benifit of using simple tag rather than classic tag ? I'd start with the 2.0 Javadocs. For your question, I'd start here [

Re: urgent jstl foreach tag is not working

2005-08-25 Thread Rahul Akolkar
On 8/25/05, Kurakula, Suneetha (HCF) [EMAIL PROTECTED] wrote: Hello All, I am having problem executing c-rt:foreach loop. I am using tomcat5.x version and jstl1.1 Here is code describing how I am using tags. %@ taglib uri=http://java.sun.com/jstl/core; prefix=c% %@ taglib

Re: Urgent: urgent jstl foreach tag is not working

2005-08-25 Thread Rahul Akolkar
On 8/25/05, Martin Cooper [EMAIL PROTECTED] wrote: On 8/25/05, Dima Gutzeit [EMAIL PROTECTED] wrote: Actually it will work outside of c:out/ since it is EL expression. Assuming a JSP 2.0 container, yes. Not on JSP 1.2, though (and of course functions won't work in an earlier container,

Re: JSTL and Java Constants

2005-09-07 Thread Rahul Akolkar
On 8/31/05, Martin Cooper [EMAIL PROTECTED] wrote: On 8/30/05, Rahul Akolkar [EMAIL PROTECTED] wrote: snip/ 2) Another approach that some choose is to provide a Constants bean that supplies getters for the constants, which is what we ended up doing for the RDC taglib. Isn't

Re: JSTL TLD confusion

2005-09-07 Thread Rahul Akolkar
On 9/7/05, Martin Cooper [EMAIL PROTECTED] wrote: On 9/7/05, Woodchuck [EMAIL PROTECTED] wrote: snip/ which is the 'official' version we should be using? why are there such differences between these versions? Because the JSTL spec defines different URLs for JSTL 1.0 and JSTL 1.1. ;-)

Re: translation from scriptlet

2005-09-09 Thread Rahul Akolkar
On 9/9/05, Luca Passani [EMAIL PROTECTED] wrote: How can I translate this: %=(name.length()20 ? name.substring(0,20) : name)% into its JSTL equivalent? Servlet 2.4/JSP 2.0/JSTL1.1 - ${fn:length(name) 20 ? fn:substring(name,0,20) : name} -Rahul Thanks Luca

Re: c:if multiple checks

2005-10-01 Thread Rahul Akolkar
On 10/1/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: snip/ Code snippet: c:if test=${collection.obj=='xyz'}||${ collection.obj=='abc'}||${ collection.obj =='pqr'} snap/ You're leaving the ors out as template text, you meant ${expr-foo or expr-bar} instead of ${expr-foo} or ${expr-bar} as

Re: c:if multiple checks

2005-10-01 Thread Rahul Akolkar
On 10/1/05, rojan punnoose [EMAIL PROTECTED] wrote: User:jk pwd :jk --- Using JSTL- ${movie} snip/ http://wiki.apache.org/jakarta-taglibs/FrequentlyAskedQuestions Please don't take over other threads, start your own with an appropriate subject. Thanks. -Rahul

Re: Type coersion question. Comparing char equality

2005-10-16 Thread Rahul Akolkar
On 10/16/05, Zack Chandler [EMAIL PROTECTED] wrote: Hi. Is there a way to not have the default type coercion (converts to Long) happen when comparing chars. I simply want to test for char equality in a JSP. See example below. Thanks. snip/ I now realize I should have suggested a solution

Re: literate programming?

2005-11-01 Thread Rahul Akolkar
On 11/1/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, please tell me: Does exist a documentation system like javadoc or Doxygen (also called literate programming) specially for JSP and taglib syntax? Thanks in advance, snip/ I'd recommend reading the JSP specification for the

Re: RDC taglib technical question

2005-11-10 Thread Rahul Akolkar
On 11/10/05, Vance Vagell [EMAIL PROTECTED] wrote: Hello, I notice that only the mortgage and creditCardInfo RDCs accept the subdialog attribute, which allows the developer to force the RDC to work as a subdialog (which includes a VoiceXML return element). However, the usState RDC does not.

Re: RDC taglib technical question

2005-11-12 Thread Rahul Akolkar
On 11/10/05, Rahul Akolkar [EMAIL PROTECTED] wrote: On 11/10/05, Vance Vagell [EMAIL PROTECTED] wrote: Hello, I notice that only the mortgage and creditCardInfo RDCs accept the subdialog attribute, which allows the developer to force the RDC to work as a subdialog (which includes

Re: [OT] Java Tip

2005-11-15 Thread Rahul Akolkar
On 11/15/05, Lamine Ba [EMAIL PROTECTED] wrote: Hi all, I am handling timestamps in one of my beans. Can someone advise me on how to write the following script? I am curious about what libraries you would be using... I am only using java.util.Date and it is not very flexible. Function to

Re: fmt:bundle

2005-11-20 Thread Rahul Akolkar
On 11/16/05, Ray Madigan [EMAIL PROTECTED] wrote: I was wondering if anyone could shed some light on a problem I am having! I have a page that needs to get a resource bundle based on a string passed into the page. It is kinda like this: snip/ Ray - Sorry, I'm not sure based on the

Re: relative paths and c:import

2005-11-21 Thread Rahul Akolkar
On 11/21/05, Martin Kindler [EMAIL PROTECTED] wrote: I am trying to integrate a Java/Struts webapp with another web site (based on Typo3, a PHP-based CMS). Some of my JSP-pages will integrate pages controlled by Typo3. I tried to use the c:import tag which basically seems to work: the page

Re: fmt:bundle

2005-11-22 Thread Rahul Akolkar
enough information, we're missing something. -Rahul -Original Message- From: Rahul Akolkar [mailto:[EMAIL PROTECTED] Sent: Sunday, November 20, 2005 8:54 PM To: Tag Libraries Users List Subject: Re: fmt:bundle On 11/16/05, Ray Madigan [EMAIL PROTECTED] wrote: I was wondering

Re: detect if a request parameter exists

2005-12-16 Thread Rahul Akolkar
On 12/16/05, Per Jørgen Walstrøm [EMAIL PROTECTED] wrote: hello, there used to be a taglib called request, which is now deprecated (http://jakarta.apache.org/taglibs/doc/request-doc/intro.html). Request had a tag called existsAttribute which was very handy. It could be used like this:

Re: Vars not evaled

2005-12-20 Thread Rahul Akolkar
On 12/20/05, Afshartous, Nick [EMAIL PROTECTED] wrote: Ok, I got it. Once I copied the webapp tag from the standard-examples.war web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee

Re: scrape

2005-12-22 Thread Rahul Akolkar
On 12/22/05, Shiby Maria John [EMAIL PROTECTED] wrote: Hi, I have been trying to use the scrape taglib for my application. BUt nothing comes in the output page. What may be the reason for this?? snip/ We will probably need some more details. If you can post the simplest example that

Re: JSTL resource bundle issue

2005-12-23 Thread Rahul Akolkar
On 12/23/05, hong yuan [EMAIL PROTECTED] wrote: I have the following case: (1) I have an framework application which has framework resource bundle which sits in a jar file and also some framework jsps like header / footer etc.. (2) I have an application which uses the framework jar file and

Fwd: RDC Tag Libs

2006-01-04 Thread Rahul Akolkar
Received the following forward offlist. Since the original email was intended for this mailing list, I'm replying here. Srinivas - It seems you are having trouble posting to the mailing list? We didn't receive the email on the list. Are you subscribed? (please send an email to [EMAIL PROTECTED]

Re: RDC Tag Libs

2006-01-05 Thread Rahul Akolkar
On 1/5/06, Rao, Aravilli Srinivasa [EMAIL PROTECTED] wrote: Rahul, Thanks for your reply. Some Media Servers doesn't support grammar element. So we have to specify using the Built in Grammar only. If I use RDCTemplate also the same problem because it also adds the grammar element. snip/

Re: RDC Tag Libs

2006-01-05 Thread Rahul Akolkar
On 1/5/06, Rahul Akolkar [EMAIL PROTECTED] wrote: snip/ But you have the right idea. We should add a rdc:builtin (or suitably named) component, so an instantation will look like: rdc:builtin id=myRDC type=type=digits?minlength=3;maxlength=3 config=foo.xml / snap/ Without the typos

Re: RDC Tag Libs

2006-01-07 Thread Rahul Akolkar
On 1/6/06, Rao, Aravilli Srinivasa [EMAIL PROTECTED] wrote: Rahul, I will submit the tag for rdc:builtin and its related files in early next week. snip/ That will be great, thanks. -Rahul Regards Aravilli snap/ - To

Re: autogenerating resource for taglibs-i18n

2006-01-09 Thread Rahul Akolkar
On 1/9/06, Oded Arbel [EMAIL PROTECTED] wrote: Hi guys. I've started to use taglibs-i18n in my project, and I was wandering if its possible to automatically generate the base resource files for taglibs-i18n's i18n:bundle automatically from my JSP files ? snip/ Oded - A base resource file

Re: jsp with mailer1.1 taglib no longer works on Tomcat 5.0

2006-01-09 Thread Rahul Akolkar
On 1/9/06, Kevin Passey [EMAIL PROTECTED] wrote: Hi, I have written a small JSP which basically sends me and a couple of other people e-mails when a form is submitted from our website - this has and still is running quite happily on Tmocat 4.x. However on 5.x it fails with a syntax error in

Re: Response Tag Library

2006-01-09 Thread Rahul Akolkar
On 1/9/06, Stephen Caine [EMAIL PROTECTED] wrote: All, What has taken the place of the Response Tag library? I note that it has been deprecated. snip/ Some combination of JSTL and EL, on a case-by-case basis. We have found an apparent bug with the tag: setHeader. snap/ Please file a

Re: RDC

2006-01-12 Thread Rahul Akolkar
Aravilli - For starters, what platform are you deploying on? Do you have a link or pointer to the documentation for this platform? I've never used such a stripped down platform, so it'd be good to know. Thanks. Now on to your questions ... On 1/11/06, Rao, Aravilli Srinivasa [EMAIL PROTECTED]

Re: Tomcat 5.5 system requirements

2006-01-12 Thread Rahul Akolkar
On 1/12/06, David Schwartz [EMAIL PROTECTED] wrote: Is there a list of Tomcat 5.5 system requirements for a windows based install? Thanks snip/ Did you mean to send this to the tomcat user list? http://tomcat.apache.org/lists.html -Rahul David Schwartz

Re: Regarding RDC

2006-02-02 Thread Rahul Akolkar
On 2/2/06, Vani Ampavathina [EMAIL PROTECTED] wrote: Hi I am evaluating the RDC Tag libraries to use in our speech applications.Ihave a small difficulty in using these tags. can you help me in briefing a solution for the following problem. 1) When I use,say for example alpha tag, I

Re: fmt:formatNumber not formatting on first page load

2006-02-02 Thread Rahul Akolkar
On 2/2/06, Stephen Souness [EMAIL PROTECTED] wrote: Hi, Is it a known issue that the following JSTL will not format the provided value on the first loading of the JSP? snip/ No. This shouldn't happen, I've used the format tags on similar setups. -Rahul fmt:formatNumber

Re: fmt:formatNumber not formatting on first page load

2006-02-02 Thread Rahul Akolkar
On 2/2/06, Stephen Souness [EMAIL PROTECTED] wrote: More info: - the value is a string along the lines of : 165000.0 So what I would expect to happen is: - the decimal point and fractional 0 to be truncated - a '$' symbol to be pre-pended - a ',' between the '5' and the first '0'

Re: help with RDC

2006-02-06 Thread Rahul Akolkar
On 2/6/06, Easwaren, Shaivya (Cognizant) [EMAIL PROTECTED] wrote: We are using RDC in a small project on Multimodal technologies and are testing with Opera browser. snip/ This is good stuff, and the next logical thing for RDCs. The RDC framework, to date, has been used for pure voice

Re: help with RDC

2006-02-06 Thread Rahul Akolkar
On 2/7/06, Easwaren, Shaivya (Cognizant) [EMAIL PROTECTED] wrote: Thanks a million! Will definitely try out your suggestions today and see how it goes. snip/ Thats great, do file issues/enhancement requests in the Apache bugzilla to track this. You can attach patches there if you want to

Re: Tutorial on X+V and RDC

2006-02-09 Thread Rahul Akolkar
On 2/8/06, Easwaren, Shaivya (Cognizant) [EMAIL PROTECTED] wrote: I have just posted a tutorial on http://wiki.apache.org/jakarta-taglibs/ReusableDialogComponents/Tutorials/IntegrateWithXHTML about some initial work on X+V integration with RDC taglibs, that we carried out for a small

Re: Multiple Resource Bundles in web.xml

2006-04-10 Thread Rahul Akolkar
On 4/10/06, Steven Pannell [EMAIL PROTECTED] wrote: Hi, I have configured by resource bundle in the web.xml as follows: context-param param-namejavax.servlet.jsp.jstl.fmt.localizationContext/param-name param-valuewebMessages/param-value /context-param But I like to know is it possible

Re: EL expressions not being evaluated..

2006-09-11 Thread Rahul Akolkar
On 9/11/06, maya [EMAIL PROTECTED] wrote: I can't get my EL expressions to evaluate to what they're supposed to... they print verbatim, in both IE and FF, like for example: Server Name: ${pageContext.request.serverName} Server Port: ${pageContext.request.serverPort} Remote Address:

Re: Security images

2006-09-13 Thread Rahul Akolkar
On 9/13/06, lamzo [EMAIL PROTECTED] wrote: Hi all, Does anyone know how to create security images in signup forms using JSP? I am referring to the image that contains a word that cannot be processed by a computer but only by the human eye. It helps avoid spamming significantly. snip/ No

Re: Documentation on how to configure prompts

2006-09-13 Thread Rahul Akolkar
On 9/13/06, Charles Godfrey [EMAIL PROTECTED] wrote: Hello and sorry for this obvious questions, but after 2 days of searching, I'm unable to find this info. snip/ Please ask sooner, we'll try to help! 1. How do you configure prompts that use prompt files (.wav, .au, etc). snap/ The

Re: Confirmation

2006-09-13 Thread Rahul Akolkar
On 9/13/06, Charles Godfrey [EMAIL PROTECTED] wrote: Hello, The confirm attribute is boolean which means that you either always confirm or never confirm. Is there anyway for the RDC to confirm the user's response if the confidence level falls between a certain range? Nuance's OSDM have this

Re: Display from MySQL Text Field

2006-10-03 Thread Rahul Akolkar
On 10/3/06, mmfarhan [EMAIL PROTECTED] wrote: Hi, I am trying to display text which is stored in mysql text field. But it displays nothing. and when i try this code: c:out value=${rowSrearch.pDetails} / snip/ Could simply be EL-2 [1]. Try changing property name to 'pdetails' (or some such).

Re: JSTL problem

2006-11-07 Thread Rahul Akolkar
On 11/7/06, Kris Schneider [EMAIL PROTECTED] wrote: snip/ For the message: According to TLD or attribute directive in tag file, attribute items does not accept any expressions That seems to point to the forEach tag. Make sure the version of JSTL matches the version of JSP and type of web.xml

Re: Using RDC's in a stand-alone Java application

2006-11-21 Thread Rahul Akolkar
, at some point, this markup will probably need to be served up, so it might be helpful to use a servlet container itself to do the dynamic generation à la RDCs (also hard to generate markup apriori if its heavily based on user interaction). -Rahul -charles On 11/21/06, Rahul Akolkar [EMAIL

Re: Using RDC's in a stand-alone Java application

2006-11-21 Thread Rahul Akolkar
On 11/20/06, Charles Godfrey [EMAIL PROTECTED] wrote: Quick question, I'm building a stand-alone Java application that will output some VXML pages. Is there any way for me to use RDC to help with this? Is there a Java API for RDCs? snip/ One of the primary assumptions for the RDC taglib is

Re: Getting a error while trying to run the examples in standard-examples.war

2007-04-12 Thread Rahul Akolkar
Please make sure you're subscribed to this list, so we don't have to moderate your emails through. You're using a JSP 1.2 container and a JSP 2.0 taglib. Either switch to Tomcat 5.5.x (or 5.0.x) or use JSTL 1.0. -Rahul On 4/12/07, Madhukar M [EMAIL PROTECTED] wrote: Hi, I downloaded the

Re: sourcecode

2007-07-16 Thread Rahul Akolkar
On 7/16/07, Ortiz, Enrique Mauricio [EMAIL PROTECTED] wrote: hello im very impressed in your i18n taglig examples. can you please sentd to me the source files of the resources, the source of the org.apache.taglibs.standard.examples.i18n.Resources snip/ Not sure what (Java?) package that is,

Re: Where can I get a recent nightly build?

2008-01-08 Thread Rahul Akolkar
On 1/8/08, Henri Yandell [EMAIL PROTECTED] wrote: snip/ I don't expect us to have them running there again, though if any taglib gets active enough to be mavenified, I could see it being put in continuum. snap/ Yup, I've previously (say, a year or more ago) pinged Glenn when the nightlies

Re: Taglibs

2008-06-30 Thread Rahul Akolkar
On 6/29/08, Aaron Freeman [EMAIL PROTECTED] wrote: Is Jakarta Taglibs dead? Last news even on the main page was 2005. Should I look at using other taglib repositories or is it safe to continue incorporating these into production? snip/ Jakarta Taglibs has seen very little new development

Re: Taglibs

2008-06-30 Thread Rahul Akolkar
On 6/30/08, Hassan Schroeder [EMAIL PROTECTED] wrote: On Mon, Jun 30, 2008 at 12:02 PM, Kris Schneider [EMAIL PROTECTED] wrote: mmm -- looking just now, it no longer seems to be available, even as source. That's a bummer. This should be the Subversion location:

Re: Taglibs

2008-06-30 Thread Rahul Akolkar
On 6/30/08, Hassan Schroeder [EMAIL PROTECTED] wrote: On Mon, Jun 30, 2008 at 12:34 PM, Rahul Akolkar [EMAIL PROTECTED] wrote: I'd volunteer some time to help clean this up. That'd be great. The site sources are here: http://svn.apache.org/repos/asf/jakarta/taglibs/proper/src

Re: Taglibs

2008-07-01 Thread Rahul Akolkar
On 6/30/08, Hassan Schroeder [EMAIL PROTECTED] wrote: On Mon, Jun 30, 2008 at 1:24 PM, Rahul Akolkar [EMAIL PROTECTED] wrote: snip/ Yup, if you're interested (you can leave the component unmarked or choose Unknown Taglib for site): http://jakarta.apache.org/taglibs/bugs.html cool

Re: Taglibs

2008-07-01 Thread Rahul Akolkar
On 7/1/08, Henri Yandell [EMAIL PROTECTED] wrote: On Mon, Jun 30, 2008 at 12:25 PM, Rahul Akolkar [EMAIL PROTECTED] wrote: snip/ The Jakarta Taglibs project has slowed down considerably, though in terms of interest: * Few relatively recent fixes have been made to JSTL 1.2 (by Hen

Re: JSTL XML ---org/apache/xpath/XPathException

2008-07-14 Thread Rahul Akolkar
CC'ing OP since I moderated the message. Rajasekhar - Please see response below. Also, please subscribe to this mailing list before posting. Details: http://jakarta.apache.org/site/mail2.html#Taglibs -Rahul On 7/14/08, Kris Schneider [EMAIL PROTECTED] wrote: Can you provide some more

Re: sql tags

2008-08-17 Thread Rahul Akolkar
On Sun, Aug 17, 2008 at 10:02 AM, Tarun Singh [EMAIL PROTECTED] wrote: I need the codes in which the sql tags in jstl deconstruct. Please subscribe to this mailing list if you wish to receive further emails (I've CC'ed you here). The JSTL sources can be downloaded from this page [2] (look

Re: Image tag library in Jakarta

2009-04-07 Thread Rahul Akolkar
I think I moderated the original post through, so copying the OP for good measure. Trupti -- See response below. If you'd like to receive mails from this mailing list, please subscribe if you haven't already. Subscription information is here: http://jakarta.apache.org/taglibs/mail-lists.html

Re: SEVERE: Servlet /rdc-examples threw load() exception - java.lang.ClassNotFoundException: org.apache.commons.collections.FastHashMap

2009-05-25 Thread Rahul Akolkar
On Mon, May 25, 2009 at 1:13 PM, Hendy Irawan he...@rainbowpurple.com wrote: Hi, I downloaded the RDC 1.0 binary distribution and deploying rdc-examples.war in Tomcat 6.0.16 was unsuccessful. Here's the exception. snip/ I won't be able to try this today (can tomorrow, if needed) but from

Re: SEVERE: Servlet /rdc-examples threw load() exception - java.lang.ClassNotFoundException: org.apache.commons.collections.FastHashMap

2009-05-25 Thread Rahul Akolkar
trace of the root cause is available in the Apache Tomcat/6.0.16 logs.* -- Apache Tomcat/6.0.16 On Tue, May 26, 2009 at 12:23 AM, Rahul Akolkar rahul.akol...@gmail.comwrote: On Mon, May 25, 2009 at 1:13 PM, Hendy Irawan he...@rainbowpurple.com wrote: Hi, I

Re: SEVERE: Servlet /rdc-examples threw load() exception - java.lang.ClassNotFoundException: org.apache.commons.collections.FastHashMap

2009-05-25 Thread Rahul Akolkar
On Mon, May 25, 2009 at 2:35 PM, Hendy Irawan he...@rainbowpurple.com wrote: Thanks. Here are the artifacts I need to make it work:   - commons-beanutils:commons-beanutils:1.7.0   - xalan:xalan:2.7.1   - xerces:xercesImpl:2.8.1   - commons-el:commons-el:1.0 My current

Re: SEVERE: Servlet /rdc-examples threw load() exception - java.lang.ClassNotFoundException: org.apache.commons.collections.FastHashMap

2009-05-26 Thread Rahul Akolkar
, but if the testbed gets seeded with a few tests we can probably add more over time. -Rahul and Hendy might be interested in helping with that too. Hen On Mon, May 25, 2009 at 5:39 PM, Rahul Akolkar rahul.akol...@gmail.com wrote: On Mon, May 25, 2009 at 2:35 PM, Hendy Irawan he...@rainbowpurple.com

Re: Taglibs-bsf is missing

2009-06-11 Thread Rahul Akolkar
If you want to participate on this mailing list, please subscribe first so you will receive all replies. On Thu, Jun 11, 2009 at 12:19 PM, Paolo Pedrellip.pedre...@bytesh.com wrote: On the page:            http://jakarta.apache.org/taglibs/doc/bsf-doc/intro.html all folllowing links

Re: Jakarta Taglibs add on projects Question.

2009-08-07 Thread Rahul Akolkar
On Fri, Aug 7, 2009 at 8:48 PM, Zachary Mitchell, BCISzac@internode.on.net wrote: There are listed projects to produce open source JSTL style taglibs, for the following Java api's: JNDI: http://jakarta.apache.org/taglibs/doc/jndi-doc/intro.html JMS: