Re: import tag for dynamic content

2009-09-16 Thread paulbrickell
Hassan, Agreed. Just doesn't work. Hassan Schroeder-2 wrote: On Tue, Sep 15, 2009 at 1:48 AM, paulbrickell paul.brick...@evolvedintelligence.com wrote: Does anyone know how to use the import tag to access dynamic content from the current context? I found this... c:set var=xmlURL

Re: import tag for dynamic content

2009-09-16 Thread Hassan Schroeder
On Wed, Sep 16, 2009 at 12:43 AM, paulbrickell paul.brick...@evolvedintelligence.com wrote: Agreed. Just doesn't work. ? Uh, doesn't work exactly how? This c:url var=xmlURL value=/x/y/z/ sets `xmlURL` to a very different value compared to your original c:set var=url value=x/y/z/ What's

Re: import tag for dynamic content

2009-09-16 Thread paulbrickell
Hassan, If I create a url with a context relative path (e.g. /x/y/z) and the I use this in the url attribute of an import tag, the import tag seems to attempt a lookup of a file in the web application. So given this... c:url var=aURL value=/x/y/z/ ${aURL} Get resource at z c:import

Re: import tag for dynamic content

2009-09-16 Thread Hassan Schroeder
On Wed, Sep 16, 2009 at 7:05 AM, paulbrickell paul.brick...@evolvedintelligence.com wrote: If I create a url with a context relative path (e.g. /x/y/z) and the I use this in the url attribute of an import tag, the import tag seems to attempt a lookup of a file in the web application. So

import tag for dynamic content

2009-09-15 Thread paulbrickell
Does anyone know how to use the import tag to access dynamic content from the current context? I naively thought this would do it... c:set var=url value=/x/y/z/ c:import url=${url} var=xml / or c:set var=url value=x/y/z/ c:import url=${url} var=xml / Where /x/y/z is a (context)relative path

Re: import tag for dynamic content

2009-09-15 Thread Hassan Schroeder
On Tue, Sep 15, 2009 at 1:48 AM, paulbrickell paul.brick...@evolvedintelligence.com wrote: Does anyone know how to use the import tag to access dynamic content from the current context? I found this... c:set var=xmlURL

Jakarta Taglibs add on projects Question.

2009-08-07 Thread Zachary Mitchell, BCIS
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: http://jakarta.apache.org/taglibs/doc/jmstags-doc/intro.html IO:http://jakarta.apache.org/taglibs/doc/io-doc/intro.html The

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:

Re: FormatNumberTag

2009-07-11 Thread Stuart Thiel
Hello Henri, Yes, that would solve my immediate problem. It is a bit of a one-off hack, though. The follow-through would be to take a look at all the classes and identify areas where hooks like that would be desirable. It is perhaps a difference in philosophies of programming, but my

Re: FormatNumberTag

2009-07-11 Thread Henri Yandell
Generally agreed. With public APIs I've learnt to be stronger on making things private as it tends to only come back to bite you if you try to over think it; and when it's public you have no ability to identify all the use cases so you end up in legacy hell. I just fix the bugs though - I wasn't

Re: FormatNumberTag

2009-07-11 Thread Rusty Wright
Here's a quote from the Spring docs about the open/closed principal that I think Henri is alluding to: “Open for extension...” One of the overarching design principles in Spring Web MVC (and in Spring in general) is the “Open for extension, closed for modification” principle. The reason that

Re: FormatNumberTag

2009-07-11 Thread Stuart Thiel
Hello Rusty, I don't have the mentioned book, but I quickly found the article: http://www.objectmentor.com/resources/articles/ocp.pdf I'm afraid that such is not my interpretation of that article at all. It seems to clearly suggest that an inviolate superclass, that can be subclassed (what I

Re: FormatNumberTag

2009-07-10 Thread Henri Yandell
I'm wondering if protected configureFormatter(NumberFormat) is best, or if the better option is to have a protected void reconfigureFormatter(NumberFormat) method that is invokved at the end of that method. So by default the configureFormatter is always run, and then the user can hook in to do

Re: FormatNumberTag

2009-07-10 Thread Stuart Thiel
Hello Henri, Having a protected configureFormatter (and similar things for other methods elsewhere) is my preferred approach. The issue with the second approach is that doEndTag() calls createFormatter(), then configureFormatter, then formats the text. There's no facility to step in between and

FormatNumberTag

2009-07-08 Thread Stuart Thiel
Hello, A number of useful methods seem to be private. It makes sub-classing the taglibs inconvenient. For example, I would like to extend FormatNumberTag so that I can change the grouping separator. If configureFormatter in org.apache.taglibs.standard.tag.common.fmt.FormatNumberSupport were

Re: Download of Taglibs - IO

2009-06-14 Thread Henri Yandell
Better to go ahead and write the Java. FTP - presumably Commons Net (though I'm not 100% sure if it does FTP). HTTP/HTTPS to Apache HttpComponents. XmlRpc probably just use the basic API and SOAP Apache CXF or Apache Axis2 presumably have some kind of client? Must admit to not knowing much on

Kaye, Myriam is out of the office.

2009-06-14 Thread Myriam Kaye
I will be out of the office starting 06/13/2009 and will not return until 06/16/2009. I am out of the office, but will respond to your message when I return. I am also carrying my BlackBerry for emergencies and will read mail once in a while. Young Lee (you...@ca.ibm.com) is my primary

Taglibs-bsf is missing

2009-06-11 Thread Paolo Pedrelli
On the page: http://jakarta.apache.org/taglibs/doc/bsf-doc/intro.html all folllowing links are broken: Download the BSF Tag Library nightly development build http://jakarta.apache.org/taglibs/binarydist.html

IO Taglib download link broken

2009-06-11 Thread Ramya.K.Grama
The following Jakarta taglib - IO download link is broken http://jakarta.apache.org/taglibs/doc/io-doc/intro.html Ramya Grama Wells Fargo Auto Finance (484) 895-2110 This message may contain confidential and/or privileged information. If you are not the addressee or authorized to

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: Download of Taglibs - IO

2009-06-11 Thread Ramya.K.Grama
If IO is deprecated then which tag should we be using for SOAP communication? Thanks -Original Message- From: Rahul Akolkar [mailto:rahul.akol...@gmail.com] Sent: Thursday, June 11, 2009 12:47 PM To: Tag Libraries Users List Subject: Re: Download of Taglibs - IO On Wed, Jun 10, 2009 at

Download of Taglibs - IO

2009-06-10 Thread Ramya.K.Grama
I would like to download the IO Taglibs to use to create a SOAP client for my web service. I checked all the download sites on Apache and its mirrors but couldn't find the binary download. Could someone help me by sending me a link to the correct site to download this. Thanks

Taglibs deprecated

2009-06-07 Thread Henri Yandell
Random, DateTime and I18N taglibs have all been deprecated. In the former case because it's not that interesting a taglib, and the latter two because they offer only very little extra functionality on top of JSTL. Thanks, Hen -

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

2009-05-26 Thread Rahul Akolkar
On Tue, May 26, 2009 at 1:09 AM, Henri Yandell flame...@gmail.com wrote: Given that it would be a small delta, how about a 1.0.1 release with the rdc example war fixed Rahul? snip/ I'm game, just checked the m2 build, the built war has these deps in place. It'd be a 1.1 though (there have been

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

2009-05-25 Thread Hendy Irawan
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. May 25, 2009 9:43:29 PM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() May 25, 2009 9:43:50 PM

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 Hendy Irawan
Thanks Rahul. I did it, now it gives me this: at: http://localhost:8080/rdc-examples/mortgage-app/login.jsp HTTP Status 500 - -- *type* Exception report *message* *description* *The server encountered an internal error () that prevented it from fulfilling this

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:42 PM, Hendy Irawan he...@rainbowpurple.com wrote: Thanks Rahul. I did it, now it gives me this: at: http://localhost:8080/rdc-examples/mortgage-app/login.jsp HTTP Status 500 - -- *type* Exception report *message* *description*

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

2009-05-25 Thread Hendy Irawan
You're right I'm using Sun JDK6 After copying xalan.jar and xercesImpl.jar, I get this: Seems to need commons-el, let me try getting that. HTTP Status 500 - -- *type* Exception report *message* *description* *The server encountered an internal error () that

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

2009-05-25 Thread Hendy Irawan
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 rdc-examples/WEB-INF/lib : ceef...@caliva:/opt/tomcat/webapps/rdc-examples/WEB-INF/lib$ ls -la

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-25 Thread Henri Yandell
Given that it would be a small delta, how about a 1.0.1 release with the rdc example war fixed Rahul? It would give us a chance to release from maven, which should be educational, and we could also look at adding Cactus testing. I'm happy to help out there - it would help me learn more about RDC

Re: Problem while downloading i18n binary

2009-05-21 Thread Henri Yandell
Those are dead pages and not hooked to the site - but I'm guessing Google still supplies them. I need to set some mod_rewrite rules up to stop people getting to them. There are no downloads for i18n - it was never released. You'll need to build from subversion and build. On the plus side, the

RE: Problem while downloading i18n binary

2009-05-21 Thread aditya.kulkarni2
Hi Hen, Thanks for your reply. What is subversion, if it is some kind of repository then I don't have access to that. Please let me know from where I can get this project. Please send me some link so that I can download this project. Regards, Aditya. -Original Message- From: Henri

Re: Problem while downloading i18n binary

2009-05-21 Thread Henri Yandell
It's a source control system - equivalent to CVS, Perforce, Git, Mercurial, VSS etc. You'll sometimes see it called 'SVN'. It's available from: http://subversion.org/ After installing you then run the following on the command line: svn co

Problem while downloading i18n binary

2009-05-20 Thread aditya.kulkarni2
Hi, I am trying to download i18n source/binary from following site, http://jakarta.apache.org/taglibs/doc/i18n-doc/intro.html But when I click on Jakarta-Taglibs Distribution http://jakarta.apache.org/builds/jakarta-taglibs/nightly or Jakarta-Taglibs Source

Problem while downloading i18n binary

2009-05-20 Thread aditya.kulkarni2
Hi, I am trying to download i18n source/binary from following site, http://jakarta.apache.org/taglibs/doc/i18n-doc/intro.html But when I click on Jakarta-Taglibs Distribution http://jakarta.apache.org/builds/jakarta-taglibs/nightly or Jakarta-Taglibs Source

How to specify namespace context for jstl x tags?

2009-04-15 Thread Tim Stephenson
Hi, I have a feeling this must be a common problem but I'm afraid I can't find the answer... I am trying to use the JSTL x tags in v1.1.2 of the 'standard' tag library. Something like this: c:import url=WorkItem.xmlvar=url / x:parse xml=${url} var=doc / x:out

Re: Image tag library in Jakarta

2009-04-07 Thread Rashmi
It seems to be deprecated but there's an SVN repository for it at: https://svn.apache.org/repos/asf/jakarta/taglibs/deprecated-sandbox/image/ Using SVN check out the source code from the trunk folder and then do an ant build on the build.xml file also located under trunk. Rashmi On Thu, Apr 2,

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

Image tag library in Jakarta

2009-04-02 Thread Trupti Behere
Hi, I am unable to download the Image tag library from the following link - http://jakarta.apache.org/taglibs/sandbox/doc/image-doc/intro.html http://jakarta.apache.org/taglibs/sandbox/doc/image-doc/intro.html Has it been deprecated ? Is it not available any more ? Thanks, Trupti

Image tag library not available!

2009-04-01 Thread Trupti Behere
The image tag library cannot be downloaded from the following link - http://jakarta.apache.org/taglibs/sandbox/doc/image-doc/intro.html Please help! Trupti

help me,use taglib image have a problem!

2009-03-31 Thread marco gao
hi all, when i user image tag,have a error, but in my dev machine don't have this error? i think the image tag can't find the source image file.but i try many times,all failed! when this error happen,the jsp became very very very slowly! what can i do? the source: img:image src=/images/auth.jpg

Getting integer portion of ceiling of a double number using fmt tags

2009-02-12 Thread Rashmi
Hello all, I'm trying to get the integer portion of the ceiling of a number using JSTL 1.2 fmt tags on Tomcat 6.x, JavaSE 6.x. So, if my number is 1.2 , the result expected is 2 (no fractions) or if my number is 1.6 the result wanted is 2 In JavaSE 6 this can be accomplished with NumberFormat

Conditional formatting elements of a collection in c:forEach

2009-02-11 Thread Rashmi
Hello everyone, I'm trying to display a list of items in a collection using JSTL. Each item in the collection has x, y, z and id variables. The user can choose whether he wants the display order (of the items in the collection) to be 1) x y z 2) z y x As far as I know the display ordering can

Re: Conditional formatting elements of a collection in c:forEach

2009-02-11 Thread Martin Cooper
On Wed, Feb 11, 2009 at 8:53 AM, Rashmi rashmi@gmail.com wrote: Hello everyone, I'm trying to display a list of items in a collection using JSTL. Each item in the collection has x, y, z and id variables. The user can choose whether he wants the display order (of the items in the

Re: Conditional formatting elements of a collection in c:forEach

2009-02-11 Thread Rashmi
Thank you Martin, I'm new to using resource bundle, I'll learn it and give this a try. -Rashmi On Wed, Feb 11, 2009 at 12:29 PM, Martin Cooper mart...@apache.org wrote: Assuming you have a resource bundle around somewhere, add two format strings to the bundle, one for each of your two

Re: Conditional formatting elements of a collection in c:forEach

2009-02-11 Thread Rashmi
I tried the ResourceBundle suggestion made by Martin and it works really well. ItemFormats.properties (placed in /WEB-INF/classes folder) file has : formatXFirst = {0} {1} {2} formatZFirst = {2} {0} {1} And in the JSP I have: fmt:setBundle basename=ItemFormats var=itemOrder/ followed by

Re: Conditional formatting elements of a collection in c:forEach

2009-02-11 Thread Rashmi
The null value display problem is also sovled (after referring to the JSTL 1.2 spec) : fmt:message key=${formatKey} bundle=${nameOrder} fmt:paramc:out value=${person.firstName} default=//fmt:param fmt:paramc:out value=${person.middleInitial}

namespace and taglibs?

2009-01-07 Thread Rusty Wright
I don't understand why I didn't get any errors from tomcat when I was missing the standard taglibs and using the jstl core in my jsp. Once I added the dependency for standard taglibs to my maven pom.xml then c:forEach started working; without the dependency it was silently ignored. Is there

Re: java.lang.ClassCastException @ org.apache.taglibs.standard.tag.common.fmt.BundleSupport

2008-12-16 Thread konkere
nope. we use fmt only for localized messages, so fmt:message/ -- View this message in context: http://www.nabble.com/java.lang.ClassCastException-%40-org.apache.taglibs.standard.tag.common.fmt.BundleSupport-tp21030184p21031282.html Sent from the Taglibs - User mailing list archive at

Re: java.lang.ClassCastException @ org.apache.taglibs.standard.tag.common.fmt.BundleSupport

2008-12-16 Thread ebsilva
Are you using fmt tag to format values? konkere empe...@inbox.ru 16/12/2008 08:10 Please respond to Tag Libraries Users List taglibs-user@jakarta.apache.org To taglibs-user@jakarta.apache.org cc Subject java.lang.ClassCastException @

Re: java.lang.ClassCastException @ org.apache.taglibs.standard.tag.common.fmt.BundleSupport

2008-12-16 Thread Kris Schneider
What version of the Standard taglib are you using? What's a PRO? Are you saying that the same code works in one environment and not another? Does your application make use of: Config.set(..., Config.FMT_LOCALIZATION_CONTEXT, ...) On Tue, Dec 16, 2008 at 4:57 AM, konkere empe...@inbox.ru wrote:

java.lang.ClassCastException @ org.apache.taglibs.standard.tag.common.fmt.BundleSupport

2008-12-16 Thread konkere
yesterday i got this fancy exception: java.lang.ClassCastException: javax.servlet.jsp.jstl.fmt.LocalizationContext at

Re: java.lang.ClassCastException @ org.apache.taglibs.standard.tag.common.fmt.BundleSupport

2008-12-16 Thread konkere
PRO is production. yes, what i say is exactly as you assumed: same JSPs work on our production and fail locally. anyway, the issue is resolved, it was unrelated to jstl or standard taglib, but to do with classloading. -- View this message in context:

Re: A bizarre question about XML Parsing with JSP : XPATH - XALAN error

2008-11-22 Thread Kris Schneider
Sorry, I don't have time to look at this in detail at the moment, but it reminds me of an issue I had with OC4J (it looks like that's what you're using). See this Oracle forum post I made a while back: http://forums.oracle.com/forums/thread.jspa?threadID=594677 It looks like you're running into

A bizarre question about XML Parsing with JSP : XPATH - XALAN error

2008-11-21 Thread Ali Riza Saral
Hi Ms/Mr, I am getting 500 Internal Server Error javax.servlet.jsp.JspTagException: org.apache.taglibs.standard.tag.common.xml.UnresolvableException: $header:ACCEPT-ENCODİNG at org.apache.taglibs.standard.tag.common.xml.XPathUtil.fillVarStack(XPathUtil.java:784) at

Kaye, Myriam is out of the office.

2008-11-21 Thread Myriam Kaye
I will be out of the office starting 2008-11-21 and will not return until 2008-11-24. I am out of the office, but will respond to your message when I return. Young Lee ([EMAIL PROTECTED]) is my primary backup for DB2 or Brio. Marco Norbiato and Lana Mai are my secondary backups for DB2. For

ClassCastException when changing from HashMap to TreeMap

2008-10-17 Thread Gabriel Belingueres
Hi, I was accessing a MapInteger, MyClass implemented with a HashMapInteger, MyClass from JSTL (v.1.1.2) using the following expression: ${map[param.myid].name} and it worked well. However, when I changed the implementation to a TreeMapInteger, MyClass the expression stop working because it

Re: ClassCastException when changing from HashMap to TreeMap

2008-10-17 Thread Kris Schneider
It looks like it might be a difference in the way HashMap.containsKey and TreeMap.containsKey are implemented. If you look at the API docs, TreeMap will throw ClassCastException but HashMap will not. When you were using HashMap, did you actually get values returned or null? On Fri, Oct 17, 2008

Re: ClassCastException when changing from HashMap to TreeMap

2008-10-17 Thread Gabriel Belingueres
I now I realize that it is returning nothing on ${map[param.myid]} with HashMap. But surprisingly even though I know for sure that map[3] exists, then ${map[3]} (with the literal 3) returns nothing too...I remember previously having an issue with this because IIRC JSTL converts the 3 to a Long,

Re: ClassCastException when changing from HashMap to TreeMap

2008-10-17 Thread Kris Schneider
HashMap will essentially just use the hashCode value of the key to do the lookup. So, when using 3, the hashCode value is 51. But for both Integer(3) and Long(3), the hashCode value is 3. If the conversion is actually to BigDecimal, then the hashCode value of BigDecimal(3) is 93 and that might

Re: ClassCastException when changing from HashMap to TreeMap

2008-10-17 Thread Kris Schneider
Just ran a couple quick tests, and it looks like integer literals are converted to Long. I completely blocked on the fact that HashMap will also attempt to do aLong.equals(anInteger), which will fail. On Fri, Oct 17, 2008 at 12:20 PM, Kris Schneider [EMAIL PROTECTED] wrote: HashMap will

useConstants tag in unstandard taglib

2008-09-24 Thread DM
Hi, I'm looking for the ability to use Java constants withint a JSP (without using scriptlet code). This seems to be possible with the useConstants tag available from the unstandard taglib: http://jakarta.apache.org/taglibs/sandbox/doc/unstandard-doc/index.html#useConstants However, I cannot

Re: useConstants tag in unstandard taglib

2008-09-24 Thread Kris Schneider
You can try here: http://people.apache.org/builds/jakarta-taglibs-sandbox/nightly/projects/unstandard/ But the builds are a few years old. The other possibility is to build from source. On Wed, Sep 24, 2008 at 10:40 AM, DM [EMAIL PROTECTED] wrote: Hi, I'm looking for the ability to use Java

sql tags

2008-08-17 Thread Tarun Singh
I need the codes in which the sql tags in jstl deconstruct.

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

Kaye, Myriam is out of the office.

2008-08-08 Thread Myriam Kaye
I will be out of the office starting 2008-08-01 and will not return until 2008-08-11. I will respond to your message when I return. Young Lee ([EMAIL PROTECTED]) is my primary backup for DB2 or Brio. Marco Norbiato and Lana Mai are my secondary backups for DB2. For SWGEU website issues

Re: Is order of TAG parameters is important?

2008-08-08 Thread Hassan Schroeder
On Thu, Aug 7, 2008 at 5:56 PM, zalek [EMAIL PROTECTED] wrote: I am learning JSP - I copied from: http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi a jar with JSTL libraries, definition of c.tld and I copied sample program from:

Is order of TAG parameters is important?

2008-08-07 Thread zalek
Hello, I am learning JSP - I copied from: http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi a jar with JSTL libraries, definition of c.tld and I copied sample program from: http://www.developer.com/java/ejb/article.php/1447551 When I try to run it I am getting:

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

2008-07-15 Thread Kris Schneider
Make sure that you have *both* Xerces and Xalan installed. You can put the JARs in Tomcat's common/endorsed directory. On Tue, Jul 15, 2008 at 12:04 AM, Rajasekhar [EMAIL PROTECTED] wrote: The out.jsp contains %@ taglib prefix=c

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

2008-07-15 Thread Rajasekhar
Hi   Thank you very much Mr. Kris. Its working for me. I have placed XercesImpl.jar and xalan.jar into the tomcat/common/endorsed folder as you specified.   I have downloaded these jars from the site http://www.apache.org/dist/xerces/j/   Can you tell me whats the purpose of endorsed folder.

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

2008-07-15 Thread Kris Schneider
When Tomcat starts up, it sets the java.endorsed.dirs system property to its common/endorsed dir. Check this out: http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html#XML%20Parsers%20and%20J2SE%201.4 You could also try putting the JARs in your app's WEB-INF/lib dir (this would be the

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

2008-07-14 Thread Rajasekhar
Hi   I have used xml tags of jstl in my jsp. but it throwing errors like the following..How can I get rid of it.  javax.servlet.ServletException: org/apache/xpath/XPathException org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:848)

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

2008-07-14 Thread Kris Schneider
Can you provide some more details about how you're using the tag and which app server and version you're using? On Mon, Jul 14, 2008 at 10:49 AM, Rajasekhar [EMAIL PROTECTED] wrote: Hi I have used xml tags of jstl in my jsp. but it throwing errors like the following..How can I get rid of it.

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

John Mazzella/Bsg/MetLife/US is out of the office.

2008-07-14 Thread John Mazzella
I will be out of the office starting 07/07/2008 and will not return until 07/28/2008. Please contact Wendy Effenberger if it is urgent The information contained in this message may be CONFIDENTIAL and is for the intended addressee only. Any unauthorized use, dissemination of the

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

2008-07-14 Thread Rajasekhar
The out.jsp contains %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % %@ taglib prefix=x uri=http://java.sun.com/jsp/jstl/xml; % html head titleJSTL: XML Support -- Parse / Out/title /head body bgcolor=#FF h3lt;x:parsegt; /

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

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: Taglibs

2008-06-30 Thread Hassan Schroeder
On Sun, Jun 29, 2008 at 11:09 AM, 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? Dunno about dead, can't speak for any of

Re: Taglibs

2008-06-30 Thread Hassan Schroeder
On Mon, Jun 30, 2008 at 11:01 AM, Andrés M. Luna [EMAIL PROTECTED] wrote: Hi. I looking for URL to download Mailer2. Please can send me the URL for download Taglib Mailer 2. mmm -- looking just now, it no longer seems to be available, even as source. That's a bummer. You should try to

Re: Taglibs

2008-06-30 Thread Kris Schneider
On Mon, Jun 30, 2008 at 2:26 PM, Hassan Schroeder [EMAIL PROTECTED] wrote: On Mon, Jun 30, 2008 at 11:01 AM, Andrés M. Luna [EMAIL PROTECTED] wrote: Hi. I looking for URL to download Mailer2. Please can send me the URL for download Taglib Mailer 2. mmm -- looking just now, it no longer

Re: Taglibs

2008-06-30 Thread Hassan Schroeder
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: http://svn.apache.org/repos/asf/jakarta/taglibs/deprecated-sandbox/mailer2/ Ah, OK.

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 Hassan Schroeder
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/trunk/doc/ OK, how do I get commit rights, or does this just mean

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:

Re: Taglibs

2008-06-30 Thread Hassan Schroeder
On Mon, Jun 30, 2008 at 1:24 PM, Rahul Akolkar [EMAIL PROTECTED] wrote: http://www.apache.org/foundation/getinvolved.html at first glance it seemed more project- than site-centric, but I'll revisit and figure it out. :-) Yup, if you're interested (you can leave the component unmarked or

Re: Taglibs

2008-06-30 Thread Henri Yandell
On Mon, Jun 30, 2008 at 12:25 PM, Rahul Akolkar [EMAIL PROTECTED] wrote: On 6/29/08, Aaron Freeman [EMAIL PROTECTED] wrote: Specifically I am considering using Mailer2 initially, but don't want to do that if it and/or the whole taglib project has been abandoned. snap/ Mailer2 is

Re: Mailer2 Taglib

2008-06-30 Thread Henri Yandell
On Fri, Jun 27, 2008 at 5:52 AM, Aaron Freeman [EMAIL PROTECTED] wrote: Couple issues re: the mailer2 taglib. 1) Any idea when it might become supported? Rahul's pointed this out in the other thread, but for the archives I'll note that it's deprecated and we don't advise using this. In this

Taglibs

2008-06-29 Thread Aaron Freeman
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? Specifically I am considering using Mailer2 initially, but don't want to do that if it and/or the whole taglib

Mailer2 Taglib

2008-06-27 Thread Aaron Freeman
Couple issues re: the mailer2 taglib. 1) Any idea when it might become supported? 2) Also, the link on this taglib on it's main page isn't working. Clicking: Download the Mailer2 Tag Library nightly development build Gives: Not Found The requested URL

Re: Problems in downloading Unstandard tag library

2008-06-05 Thread David Chapman
Vaibhav, Please review the most recent discussion on the mailing list regarding this topic... http://mail-archives.apache.org/mod_mbox/jakarta-taglibs-user/200804.mbox/browser Dave C On Wed, Jun 4, 2008 at 9:59 PM, Desai, Vaibhav [EMAIL PROTECTED] wrote: Hi, Need your help. I am trying

Re: I18n and formatting numbers

2008-04-18 Thread Kris Schneider
Which version of the Standard taglib are you using? On Thu, Apr 17, 2008 at 7:38 AM, majid kalkatechi [EMAIL PROTECTED] wrote: hi, I wanted to format parameters of message. I did as follow in my jsp I wrote: fmt:message key=something fmt:param value=${123456} / /fmt:message and in

Re: I18n and formatting numbers

2008-04-18 Thread majid kalkatechi
My platform is : OS : CentOS 5 java: jdk1.5 server : tomcat5 that is installed and updated through yum repositories On 4/19/08, majid kalkatechi [EMAIL PROTECTED] wrote: I used jstl-1.1.2.jar that was downloaded from a maven repository. Then I downloaded another version of jstl manually which

I18n and formatting numbers

2008-04-17 Thread majid kalkatechi
hi, I wanted to format parameters of message. I did as follow in my jsp I wrote: fmt:message key=something fmt:param value=${123456} / /fmt:message and in the properties file : ... something= hi {0,number,integer} ... Then I get IllegalArgumentException. I think fmt:param tag sends my parameter

XTags download

2008-04-14 Thread Vijay
Hi there, I am unable to download XTags i tried both these links http://people.apache.org/builds/jakarta-taglibs/nightly/src/ http://people.apache.org/builds/jakarta-taglibs/nightly/ i get page not found error. pls help me to download XTags. Thank you, Vijay.

Re: XTags download

2008-04-14 Thread Isabelle Phan
Hello Vijay did you try: http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi cheers Isabelle Vijay wrote: Hi there, I am unable to download XTags i tried both these links http://people.apache.org/builds/jakarta-taglibs/nightly/src/

Re: XTags download

2008-04-14 Thread Henri Yandell
I think your only option is to check the code out from http://svn.apache.org/repos/asf/jakarta/taglibs/deprecated/xtags/trunk/ using subversion. I don't believe there was ever a release of xtags, and we've subsequently deprecated it. Hen On Mon, Apr 14, 2008 at 5:32 AM, Vijay [EMAIL PROTECTED]

  1   2   3   4   5   6   7   8   9   10   >