[ANN] Standard Taglib 1.1.2

2004-10-26 Thread Justyna Horwat
Hi everyone, The Jakarta Taglibs Team is proud to announce the release of Standard 1.1.2, an implementation of JSTL 1.1. This is minor bug fix releases. For all the changes since last release, please see the Release Notes. With JSTL, page authors can create dynamic web pages more easily. JSTL e

Re: using Node variables with JSTL XML tags

2004-09-09 Thread Justyna Horwat
Hi Flavio, I've seen the discussion on the list related to the XPath integration. I agree the implementation is rather messy. I'm going to evaluate the fix, verify it, and if everything works apply it to the JSTL workspace. Thanks, Justyna Flavio Tordini wrote: hi Kris, I think Xalan does the r

Re: jakarta taglib problem

2004-08-04 Thread Justyna Horwat
You might be running into a conflict with two different xerces implementations. The JSTL 1.0.6 binary distribution comes bundled with one version and the container has another. Try removing the old implementation that's in your container and restarting. The container's files are located in this

Re: org.apache.jasper.JasperException: This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application

2004-08-04 Thread Justyna Horwat
Solaris_JDK_1.2.2_10, native threads, sunwjit) Does this matter? Thanks very much. Fanguang Meng

Re: org.apache.jasper.JasperException: This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application

2004-08-03 Thread Justyna Horwat
a:536) Fanguang Meng Justyna Horwat <[EMAIL PROTECTED]To: Tag Libraries Users

Re: org.apache.jasper.JasperException: This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application

2004-08-02 Thread Justyna Horwat
read.java:536) Thanks very much. Fanguang Meng Justyna Horwat &l

Re: org.apache.jasper.JasperException: This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application

2004-08-02 Thread Justyna Horwat
Tomcat 4.x does not have a 4.2.24 release. Perhaps you meant 4.1.24? Anyways the latest 4.x release is 4.1.30. With Tomcat 4.x you don't need to manually specify the tld's in your deployment descriptor if they are bundled in an included jar file. They should be loaded automatically from the sta

Re: JSTL 1.1 jaxp problem (under tomcat 5.0.19/java 1.4.2_03)

2004-07-28 Thread Justyna Horwat
Hi Wim, Have you tried the following to avoid the property file lookups? What were the results when you set the following properties? jaxp.properties file lookup: JAVA_OPTS="$JAVA_OPTS -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl" Lookup proc

[ANN] Standard Taglib 1.1.1 and 1.0.6 have been released

2004-07-20 Thread Justyna Horwat
The Jakarta Taglibs Team is proud to announce the release of the Standard 1.1.1 (JSTL 1.1) and Standard 1.0.6 (JSTL 1.0) Taglibs. These are both minor bug fix releases. Taglibs Downloads: http://jakarta.apache.org/site/binindex.cgi Standard 1.1.1 (standard): Release Notes: http://jakarta.ap

Re: New to tag libs - sax driver not specified??

2004-06-03 Thread Justyna Horwat
Hi Bart, There is a bug in the JWSDP 1.3 installer that prevents it from working properly on Windows 2003 Server. This has since been fixed in JWSDP 1.4. JWSDP 1.4 will be available later on this month. Thanks, Justyna [EMAIL PROTECTED] wrote: Thanks to everyone for your patience.. After reviewin

Re: New to tag libs - sax driver not specified??

2004-06-02 Thread Justyna Horwat
Hi Bart, What is the J2SE version that you are using on Windows? The JSTL release comes with a pre-packaged examples war file that you can drop into your Tomcat webapps directory. It is called "standard-examples.war". You don't need to do any custom packaging for the examples. Sounds like you'v

Re: New to tag libs - sax driver not specified??

2004-06-02 Thread Justyna Horwat
Hi Bart, Without knowing the details of your environment and particular setup, it's difficult to debug what is going on. I would recommend configuring your environment like one that has been tested and known to work. Consider the following combination a "golden" environment that is known to wor

Re: using JSTL with Sun ONE App Server 7

2004-05-25 Thread Justyna Horwat
Justyna Horwat wrote: With JSAS 8 you wouldn't need to copy the JSTL jar file in your web application. You also would get JSP 2.0/Servlet 2.3 support. JSAS 8 is now available and free. Oops, thinking of too many things at once...that should have read "JSP 2.0/Servlet 2.4&qu

Re: using JSTL with Sun ONE App Server 7

2004-05-25 Thread Justyna Horwat
Hi Darrel, Unfortunately, SunOne AppServer 7 does not load TLD's from jar files bundled within the container and made available via the container classloader. By default JSTL is bundled this way. You will need to copy your JSTL jar file to your web application's WEB-INF/lib directory. This way

Re: [JSTL] How do I enter a null value with ?

2004-05-20 Thread Justyna Horwat
Derek, I forwarded your comments to the JDBC specification lead. He said that now is a good time to bring up all of these annoyances in the specification. He will look into clarifying this area in the upcoming version of the spec. Thanks, Justyna Derek Mahar wrote: After reading Section 17.7 of

Re: passing parameters to bean function???

2004-05-14 Thread Justyna Horwat
With JSP 2.0 you can avoid scriptlets by defining a function that takes parameters. Here is some information that describes how functions work: http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html http://www.javaworld.com/javaworld/jw-05-2003/jw-0523-calltag.html Justyna John MccLain wro

Re: Problem with JSTL 1.0 and Weblogic 8.1 SP2

2004-05-13 Thread Justyna Horwat
I don't know if this is related to your problem but JSTL 1.0.x binary release came bundled with a xalan and xerces implementation. Different implementations of the xml classes also exist in JDK 1.4.2 which maybe causing a conflict. The conflicts however don't typically occur on standard.jar. O

Re: formatNumber tag

2004-05-12 Thread Justyna Horwat
The formatNumber tag uses the DecimalFormat class pattern syntax. Not being familiar with the DecimalFormat class, I did some poking around and wrote a couple of variations to see how the number is formatted: DecimalFormat formatter = new DecimalFormat(); formatter.applyPatter

Re: Date arithmetic in JSTL/Java

2004-05-10 Thread Justyna Horwat
This is one simple way: <% now.add(java.util.GregorianCalendar.DAY_OF_MONTH, 2); %> Justyna Jack Lauman wrote: Is there a simple way to use the following line in a jsp page to get the current date and add 2 days to the value of "${now}? Thanks, Jack

Re: More SQL Date problems

2004-04-16 Thread Justyna Horwat
hey don't know about the problem. Thanks! Keith -- Original Message --- From: Justyna Horwat <[EMAIL PROTECTED]> To: Tag Libraries Users List <[EMAIL PROTECTED]> Sent: Fri, 16 Apr 2004 09:54:13 -0700 Subject: Re: More SQL Date problems Hans, I looked into the SQ

Re: More SQL Date problems

2004-04-16 Thread Justyna Horwat
Hans, I looked into the SQL problem and consulted with the JDBC specification lead, Jonathan Bruce. Jonathan said that what JSTL is doing is correct: when setObject(index, null) is passed in a null value this should be converted by the driver to an SQL null. This behavior is in fact enforced a

Re: Start up of Sun's JWSDP taking 100% resources

2002-08-15 Thread Justyna Horwat
You should send a description of your problem and a detailed explanation of your configuration to: [EMAIL PROTECTED] Your are also probably running the JWSDP 1.0 release. You might want to check out the JWSDP 1.0_01 bug fix release: http://java.sun.com/webservices/webservicespack.html Justy

Re: standard-examples.war in JDeveloper9i...parser doesn't like web.xml

2002-08-14 Thread Justyna Horwat
After a quick look at Oracle's product description I found that Oracle9i JDeveloper supports JSP 1.1 and Servlet 2.2. You need a container that supports JSP 1.2 in order to have the JSTL examples work properly. The latest version of SunOne Studio (formerly Forte) has JSTL already supported and

Test - please ignore

2002-07-22 Thread Justyna Horwat
Filler for the really curious people. Justy -- To unsubscribe, e-mail: For additional commands, e-mail: