Re: JSTL XML Parsing

2003-12-05 Thread Kris Schneider
rg.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472) > > > >>> at > >>> > >> > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943) > > > >>> at > >>> > >> > > > org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027) > > > >>> at > >>> > >> > > > org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125) > > > >>> at java.lang.Thread.run(Thread.java:536) > >>>root cause java.lang.NoClassDefFoundError: > >>>org/jaxen/NamespaceContext > >>> at > >>> > >> > > > org.apache.taglibs.standard.tag.common.xml.ExprSupport.doStartTag(ExprSupport.java:101) > > > >>> at > >>> > >> > > > org.apache.taglibs.standard.tag.el.xml.ExprTag.doStartTag(ExprTag.java:103) > > > >>> at > >>> > >> > > org.apache.jsp.jsp1$jsp._jspService(jsp1$jsp.java:102) > > > >>> at > >>> > >> > > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107) > > > >>> at > >>> > >> > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > >>> at > >>> > >> > > > org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:201) > > > >>> at > >>> > >> > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381) > > > >>> at > >>> > >> > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473) > > > >>> at > >>> > >> > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > >>> at > >>> > >> > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247) > > > >>> at > >>> > >> > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472) > > > >>> at > >>> > >> > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566) > > > >>> at > >>> > >> > > > org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564) > > > >>> at > >>> > >> > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472) > > > >>> at > >>> > >> > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943) > > > > === message truncated === > > > > > > __ > > Do you Yahoo!? > > Free Pop-Up Blocker - Get it now > > http://companion.yahoo.com/ -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Calling a bean method in

2003-12-05 Thread Kris Schneider
ans are > instances of Map in the following way: > > Servlet: > List list = rsdc.getRows(); > request.setAttribute("list",list); > > JSP: > > > > > Lucky I had a few minutes to spare;) I usually just scream "read the > spec":) > > Martin -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: how to parseInt in jstl using express language?

2003-12-09 Thread Kris Schneider
OTECTED]: > > >i declare 2 variables,then i want to do some > >calculate.the result is 2.4 here,but my desire result > >is 2. > > How about using JSTL's standard tag? > > > MATSUHASHI -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech &

Re: how to parseInt in jstl using express language?

2003-12-09 Thread Kris Schneider
'll get: > > > > 3.5 > > 4 > > 4 > > > > Which may not be what you want if you really want integer division > (truncation)... > > > > Quoting [EMAIL PROTECTED]: > > > > > >>>i declare 2 vari

RE: xtags, xsl, xml, jsp

2003-12-10 Thread Kris Schneider
; > > > > > > > > > > > <xsl:comment> > > <![CDATA[ > > var g_flag = 0; > > function Down() { > > } > > > > ]]> > >

Re: Constructing key to an object in session scope

2003-12-11 Thread Kris Schneider
me > error. I bet this is very simple and I'm just not awake yet... > > -- > Wendy Smoak > Application Systems Analyst, Sr. > ASU IA Information Resources Management -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Constructing key to an object in session scope

2003-12-11 Thread Kris Schneider
Another approach would be to maintain a map of maps (keyed by year) instead of multiple "free standing" maps. Something like: accountMap: {2001={...}, 2002={...}, ...} So your loop might look like: ... Quoting Wendy Smoak <[EMAIL PROTECTED]>: > > From: Kris Schneider [m

RE: Constructing key to an object in session scope

2003-12-11 Thread Kris Schneider
;-) I hate to make it more readable, but you should be able to do: Quoting Wendy Smoak <[EMAIL PROTECTED]>: > > From: Kris Schneider [mailto:[EMAIL PROTECTED] > > Another approach would be to maintain a map of maps (keyed by > > year) instead of multiple "free s

Re: Serialising javax.servlet.jsp.jstl.sql.ResultImpl

2003-12-16 Thread Kris Schneider
ng beanutils RowSetDynaClass instead of Result. Is there any way to > serialize it. I think Result is a map of Strings only. > > Antony Paul. -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> --

Re: Serialising javax.servlet.jsp.jstl.sql.ResultImpl

2003-12-16 Thread Kris Schneider
s bug > can't be fixed now, only on the next specification. > > Felipe > > > Kris Schneider wrote: > > >While it could be argued it's not a bug, it certainly would be a nice > >enhancement to have ResultImpl implement Serializable. There are, however,

Re: Serialising javax.servlet.jsp.jstl.sql.ResultImpl

2003-12-16 Thread Kris Schneider
requirement as well. Quoting Kris Schneider <[EMAIL PROTECTED]>: > Here's a comment from ResultImpl.java: > > It is not part of the JSTL API; it serves merely as a back-end to > ResultSupport's static methods. > > Also, the 1.0 spec only references Result and Resul

Re: Serialising javax.servlet.jsp.jstl.sql.ResultImpl

2003-12-16 Thread Kris Schneider
re is that if one vendor does support Serializable and the > other does not, then a webapp would not be portable. And the specs > are very strict on compatibility/portability issues... > > I'll consult with a few spec gurus and report back... > > Thanks, > >

Re: x:transform

2003-12-19 Thread Kris Schneider
t; eNext(StandardPipeline.java:641) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172 > ) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok > eNext(StandardPipeline.java:641) > at > org.jboss.web.tomc

RE: x:transform

2003-12-22 Thread Kris Schneider
gt; To: 'Tag Libraries Users List' > Subject: RE: x:transform > > > Session scoped. > > value="${sessionScope['Query#MostRecentlyMarshalled']}"/> > > > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTEC

Re: [OT]RE: x:transform

2003-12-22 Thread Kris Schneider
gt; Thanks,Kris.I am not sure what the exact problem is yet.I did read the > javadoc.I wish I could use a tool to figure out deadlocks- would something > like JMeter or is there any open source tool to detect memory leaks or > deadlocks ? > > Thanks, > Vijay > > -Origin

Re: How to cast String to Number in JSTL EL ?

2003-12-28 Thread Kris Schneider
ois Developer of Java Gui Builder http://jgb.sourceforge.net/ -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Cannot access JNDI datasource from SQL JSTL

2003-12-29 Thread Kris Schneider
ect ID,AMOUNT from ORDERS > > > It gives me a mysterious error : > org.apache.jasper.JasperException: > select ID,NAME from CUST; > : The resultSet is closed > . > root cause > > javax.servlet.ServletException: > select ID,NAME from CUST

Re: Using Sets with JSTL

2003-12-30 Thread Kris Schneider
uot;containsValue". So, what would you provide for tags? This may be a case where developing your own taglib would be appropriate. Or, maybe what you're doing is better suited to a servlet or component of an MVC/Model 2 framework. In other words, do more data processing before forwardin

Re: xtags, dom4j

2004-01-06 Thread Kris Schneider
Thanks a lot for the time. > > Regards > > Tridev -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Getting web app context?

2004-01-08 Thread Kris Schneider
nice, elegant > way of doing this using JSTL. > > I've tried using the following in place of MYAPP above: > > , but that didn't work :( > > I actually couldn't even get this to work: > > &q

Re: tomcat problem

2004-01-08 Thread Kris Schneider
tl.jar, sax.jar, saxpath.jar, standard.jar, xalan.jar, xercesImpl.jar > and xtags.jar are in the WEB-INF/lib directory. > > Can you help me please? > > thanks > Claudia > > -- > Claudia Evelyn Gonzalez Valiente (LDC) > [EMAIL PROTECTED] > [EMAIL PROTECTED] > [

Re: tomcat problem

2004-01-08 Thread Kris Schneider
- A ROOT/prueba1.xml file - A ROOT/prueba1.xsl file The error is the same: HTTP Status 404 - /prueba.jsp type Status report message /prueba.jsp description The requested resource (/prueba.jsp) is not available. thanks Claudia On Thu, 8 Jan 2004, Kris Schneider wrote: Since it looks l

Re: tomcat problem

2004-01-08 Thread Kris Schneider
e.org/taglibs/xtags-1.0) cannot be resolved in either web.xml or the jar files deployed with this application. But if I remove the jars I can work with all anothers jsp. The problem is when I put the jars into the ROOT/WEB-INF/lib directory. Thanks Claudia On Thu, 8 Jan 2004, Kris Schneider

Re: jstl xpath

2004-01-12 Thread Kris Schneider
hing I found out , which was "dom4j". > > I don't intend to use dom4j. Is there anything other than dom4j ? > > Will be very much thankful.. > > Cheers > > Tridev -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/>

Re: jstl xpath

2004-01-12 Thread Kris Schneider
Quoting Kris Schneider <[EMAIL PROTECTED]>: > Pretty the Jakarta Standard taglib, a JSTL implementation, uses Jaxen for ^sure > its > XPath engine. All the JAR files you need are distributed with the taglib: > > jaxen-full.jar > jstl.jar > saxpath.jar > st

RE: jstl xpath

2004-01-13 Thread Kris Schneider
JSTL, > which can use other xpath engine. > > What I am wondering is that "how come Apache has so much dependancies on > third party libraries ? and they don't specify these dependecies in their > site. > > Tridev > > -Original Message- > From: K

Re: JSTL with Resin 2.1.11 and JDK1.4.2

2004-01-15 Thread Kris Schneider
ome class problems with the > standard-example webapp. Resin works fine with JDK1.4.1, but with 1.4.2 > there seems to be some sort of class conflicts. > > -Dennis -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -

Re: JSTL with Resin 2.1.11 and JDK1.4.2

2004-01-15 Thread Kris Schneider
java:182) > > at com.caucho.server.http.Invocation.service(Invocation.java:315) > > at > > com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:135) > > at > > > com.caucho.server.http.RunnerRequest.handleRequest(RunnerRequest.

RE: Loop Tags

2004-01-15 Thread Kris Schneider
t; standard tags, but did not see what I was looking for. > > I am looking for tags that I can use for things like for loops and such. > > Instead of doing things like: > > > > Select a Station ID > > <% > > for( int i = 0;

Re: expressions quit evaluating and become string literals

2004-01-15 Thread Kris Schneider
> > outputs: > > > > > JSTL Test > > > > > > > > > ${blanktext} > > > > > > > > > How do I get this working again? > > TIA -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: expressions quit evaluating and become string literals

2004-01-15 Thread Kris Schneider
And then I guess you'll want to do this: or just this: ${blanktext} Quoting Kris Schneider <[EMAIL PROTECTED]>: > Use a Servlet 2.4 deployment descriptor, looks like you're using one for > 2.3. > > Quoting [EMAIL PROTECTED]: > > > I'm having a prob

Re: Question Regarding JSTL tag

2004-01-16 Thread Kris Schneider
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Question Regarding JSTL tag

2004-01-16 Thread Kris Schneider
hink they'd be doing that for JSTL. No jdom.jar in the distro that I can see. Thank you very much for the insight. I hope I can take it from here. Sincerely, MOD --- Kris Schneider <[EMAIL PROTECTED]> wrote: You can use: To force "doc" to be of type org.w3c.dom.Document.

Re: How to enter \n into tag parameter?

2004-01-21 Thread Kris Schneider
haracters in tag parameters? > > I mean something like > > Zsolt -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem getting JavaBean value

2004-01-21 Thread Kris Schneider
equest.CourseSiteRequest" using operator "." If I change the case to the following, it works. public String getCnetId() { return cNetId; } Is this a bug? Jon -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -

Re: Problem getting JavaBean value

2004-01-21 Thread Kris Schneider
. This is also covered in section 8.8 "Capitalization of inferred names" of the JavaBeans Spec. Jonathan Eric Miller wrote: That worked, but, shouldn't it have made the first character lowercase? Jon - Original Message ----- From: "Kris Schneider" <[EMAIL PR

Re: ApplicationResources.properties - resolution

2004-01-22 Thread Kris Schneider
> > >>>>>>with the > > >>>>>> > > >>>>>>>taglib (jstl 1.0) via the > > >>>>>> > > >>>>>>javax.servlet.jsp.jstl.fmt.localizationContext > > >>>>>> > > >>>&

Re: Problem getting JavaBean value

2004-01-22 Thread Kris Schneider
http://java.sun.com/products/javabeans/docs/spec.html Jonathan Eric Miller wrote: OK, thanks. I was trying to locate that spec yesterday on Sun's Web site, but, couldn't seem to find it. Jon - Original Message - From: "Kris Schneider" <[EMAIL PROTECTED]> To:

Re: Not Throwing Error For Bad In-Context-JSP url Attribute

2004-01-22 Thread Kris Schneider
;m using the following pattern: Thank you. - Jim __ James Watkin ACIS Software Development The Anderson School at UCLA [EMAIL PROTECTED] Voice: 1-310-825-5030 Fax: 1-310-825-4835 __ -- Kris Schneider <mailto:[EMAIL PROTECTED]> D

Re: Not Throwing Error For Bad In-Context-JSP url Attribute

2004-01-22 Thread Kris Schneider
UCLA [EMAIL PROTECTED] Voice: 1-310-825-5030 Fax: 1-310-825-4835 __ -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscrib

Re: Getting XPath ID From A List Of Child Tags

2004-01-23 Thread Kris Schneider
t possible to get that > ID number out? I've got a List of child tags that I > want to use in an HTML checkbox input, and I'd like to > be able to identify selected items by their ID. > Thanks - MOD -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <ht

Re: Getting XPath ID From A List Of Child Tags

2004-01-23 Thread Kris Schneider
Maybe I don't > recognize correct code when I see it. ;) > > Am I misunderstanding here? I'll apologize in advance > if that's so. - MOD > > > --- Kris Schneider <[EMAIL PROTECTED]> wrote: > > This seemed t

Re: Getting XPath ID From A List Of Child Tags

2004-01-23 Thread Kris Schneider
Not a problem, glad it'll work. Quoting Michael Duffy <[EMAIL PROTECTED]>: > > Of course you're correct, Kris. I'm going too fast > and not thinking enough. Thanks again for the great > advice, and I'm sorry to bother you. Sincerely, MOD > > &g

Re: FMT question

2004-01-26 Thread Kris Schneider
- > MailVision LTD. > R&D Team. > Phone: 972-4-8500505 ext. 14 > Fax: 972 - 4 - 8508000 > http://www.mailvision.com -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> --

Re: FMT question

2004-01-26 Thread Kris Schneider
hile changing it in web.xml : > > > > javax.servlet.jsp.jstl.fmt.locale > > > en_US > > > and restarting the app works fine. > > - Original Message - > From: &q

Re: FMT question

2004-01-27 Thread Kris Schneider
t;forget" what locale has been set > nad takes the settings from web.xml > > Both pages are in the same application , sharing the same session. > > Anyone has ideas ? > > - Original Message - > From: "Kris Schneider" <[EMAIL PROTECTED]> &g

Re: NullPointerException - newbie question

2004-01-27 Thread Kris Schneider
g related to taglib because my JSP was running > fine with tomcat 4 (4.1.29) > Could someone give me some hint on : what is the cause of this prob? > how > to resolve this problem? > Please let me know whether there is any other information that I need > to > provide. >

RE: formatDate with session

2004-01-28 Thread Kris Schneider
> > -Original Message- > > > From: Zsolt Koppany [mailto:[EMAIL PROTECTED] > > > Sent: woensdag 28 januari 2004 9:28 > > > To: Tag Libraries Users List > > > Subject: fmt:formatDate with session > > > > > > > > >

Re: fmt:bundle scope problem

2004-01-29 Thread Kris Schneider
mt:message in its own fmt:bundle with a different basename in order > to > work-around this problem. I'm guessing this is a problem with tag reuse. > Can anyone reproduce this, point me to a bug report, or suggest a > work-around? > > Thanks, Rick DeBay -- Kris Schneider <

Re: fmt:bundle scope problem

2004-01-29 Thread Kris Schneider
works now. I suppose I should submit a bug report? Any pointers besides use common sense? Thanks, Rick DeBay On Thu, 29 Jan 2004 14:42 , Kris Schneider <[EMAIL PROTECTED]> sent: There are some typos in your example, are they just c/p errors? I think the span should look like: title

RE: tiles breaks x:forEach

2004-01-30 Thread Kris Schneider
; at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:564) > > at > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:195 > > ) > > at > > > org.apache.catalina.core.StandardValveContext.in

RE: tiles breaks x:forEach

2004-01-30 Thread Kris Schneider
EB-INF/tld/struts-tiles.tld" prefix="tiles" %> > > > > > > > > *** this definition causes the jsp to fail > > > > > > ***this definition works > path="/WEB-INF

Re: fmt:formatDate with session

2004-01-30 Thread Kris Schneider
i, > > > > can fmt:formatDate take the pattern from a session variable? In the case > I > > could make it user dependent. > > > > Zsolt -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FAQ? Archive?

2004-02-02 Thread Kris Schneider
s, > Simon Brunning, > TriSystems Ltd. > [EMAIL PROTECTED] > --LongSig -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: tiles breaks x:forEach

2004-02-02 Thread Kris Schneider
return true; > > out.write("\t\t\r\n\t"); > > int evalDoAfterBody = _jspx_th_c_set_12.doAfterBody(); > > if (evalDoAfterBody != > > javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) > > break; > > } while (true); >

RE: tiles breaks x:forEach

2004-02-02 Thread Kris Schneider
This is now Bug #26611: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26611 Quoting Kris Schneider <[EMAIL PROTECTED]>: > Well, I'm tempted to chalk this up as a container bug. You can trigger the > error > by forwarding to a JSP that includes the JSP containing the . No

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Kris Schneider
alue="${myDate}" >var="mmdd" >type="date" >pattern="-MM-dd"/> > > Is there a way to format (Gregorian)Calendar instances with > JSTL? > > Thanks, > Otis -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: taglibs i/o or jstl core library

2004-02-04 Thread Kris Schneider
> > hi > > > > i'm trying to make a url include within a page and was > > wondering which tag > > could pull in the url and display relative image links within > > the url ? > > > > cheers > > > > chris -- Kris Schneide

RE: taglibs i/o or jstl core library

2004-02-04 Thread Kris Schneider
e importing. In practice, however, this doesn't > > >seem > >to be too well supported: > > > >http://jigsaw.w3.org/HTTP/CL/ > > > >Have you tried imorting a resource that uses a element to see if > >that works? -- Kris Schneider <mailto

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-04 Thread Kris Schneider
che.jasper.servlet.JspServlet.service(JspServlet.java:248) > javax.servlet.http.HttpServlet.service(HttpServlet.java:856) > clubmom.framework.ProfileFilter.doFilter(ProfileFilter.java:98) > com.opensymphony.webwork.lifecycle.RequestLifecycleFilter.doFilter(RequestLifecycleFilter.java:62) &g

Re: jstl 1.0

2004-02-04 Thread Kris Schneider
st take > all of them, but with what jar file ? > > cheers > > chris -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: taglibs i/o or jstl core library

2004-02-05 Thread Kris Schneider
t; > > > > > > > At 09:10 04.02.2004 -0500, you wrote: > > > >In theory, you might be able to do this by setting the > Content-Location > > > header > > > >to match the resource you'

Re: [Q] Performance of SQL tags?

2004-02-05 Thread Kris Schneider
> > > > <%= row.getItem1() %> > > <%= row.getItem2() %> > > > > etc. > > > > I'm not too worried about trying to keep java code out > > of jsp's, I really want the fastest solution if it can > > make a significant difference.

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-05 Thread Kris Schneider
ava:374) > > >> > >> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133) > >> javax.servlet.http.HttpServlet.service(HttpServlet.java:856) > >> > >> > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311) > > >> > >>

Re: how to use methods with parameters

2004-02-05 Thread Kris Schneider
ew to JSTL to figure it out by myself. Could > someone advise me? > > thanks. > Dirk -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: EL not being evaluated?

2004-02-05 Thread Kris Schneider
there a trick to getting the expressions configured to work with Tomcat > 5? > > Thanks, > David -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [Q]i18n

2004-02-05 Thread Kris Schneider
i18n" taglib. I make my > file correctly like > -ApplicationResources.properties > -ApplicationResources_fr.properties > > I'd like to know how i18n choose the appropriate language between the > browther language and the locale(java). > > Help appreciated! > >

RE: how to use methods with parameters

2004-02-05 Thread Kris Schneider
t; > > >is it possible to use JSTL for an expression like > > > ><%=calculateDays(startDate, endDate) %> ??? > > > > > >probably not, but I am too new to JSTL to figure it out by myself. Could > >someone advise me? > > > >thanks. > >Dirk -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: EL not being evaluated?

2004-02-05 Thread Kris Schneider
nd > I've > put the c.tld in WEB-INF and updated web.xml to point to it using: > > > http://java.sun.com/jsp/jstl/core > /WEB-INF/c.tld > > > Thanks, > David -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: EL not being evaluated?

2004-02-06 Thread Kris Schneider
; > 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/web-app_2_4.xsd"; > > version="2.4"> > > ... > > > > > > Get rid of the element and the TLD file, as of JSP 1.2 you don't > need > > them for packaged taglibs. Just use the proper URI in the taglib > directive > in > > your JSP: > > > > <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: xml parsing difference 1.1 vs 1.0

2004-02-06 Thread Kris Schneider
.sun.com/jstl/core"; %> > <%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml"; %> > > > > (jx.result is a string containing the xml to parse) > > > > > > &

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-06 Thread Kris Schneider
ist for some help. > > -a > > Aadi Deshpande wrote: > > > See, I _knew_ I was overlooking something ( like a basic understanding > > of Bugzilla) ! > > > > Thanks, I'll check it out.. > > > > -a > > > > > > Kris Schneider

Re: JSTL: POST vs GET

2004-02-06 Thread Kris Schneider
em? > > Evgeny /Javadesk/ -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: xml parsing difference 1.1 vs 1.0

2004-02-09 Thread Kris Schneider
e time we go in production ??? > (I consider this as a major bug and think it will be solved soon) > Would you advise another way to handle the xml data ??? > > Regards, > Wim > > -Oorspronkelijk bericht- > Van: Kris Schneider [mailto:[EMAIL PROTECTED] > Verzonde

Re: how can I test for sub-string matching like ?

2004-02-10 Thread Kris Schneider
> > how can I test whether a substring occurs in a string using " test=...>". > I mean something like: > String str = "Hello"; > if (str.indexOf("el")) { > } > > Zsolt -- Kri

RE: how can I test for sub-string matching like ?

2004-02-10 Thread Kris Schneider
get more info about that? > > Zsolt > > > -Original Message- > > From: Kris Schneider [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, February 10, 2004 1:36 PM > > To: Tag Libraries Users List > > Subject: Re: how can I test for sub-string matching like ?

Re: stored procedures and database pooling

2004-02-10 Thread Kris Schneider
cific recommendations. Of course, there are plenty of folks who will want to stone you for even *thinking* about accessing a stored procedure from a taglib...and they may be right ;-). Quoting John MccLain <[EMAIL PROTECTED]>: > Are there any taglibs out there for stored procedures a

Re: Problems with JSTL 1.1 and Tomcat 5 : UnresolvableException: $prefix:javax.servlet.include.query_string

2004-02-10 Thread Kris Schneider
tp://java.sun.com/jstl/core"; prefix="c" %> > > > > file : xml_test3.jsp > > <%@ taglib uri="http://java.sun.com/jsp/jstl/xml"; prefix="x" %> > > > > > > > > > > > > > T

RE: stored procedures and database pooling

2004-02-11 Thread Kris Schneider
at I think is possible however, is the usage of views, since these can > be queried as if they were regular tables. Does that solve your problem? > > Martin -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: FW: Improper handling of javax.servlet.forward.request_uri

2004-02-11 Thread Kris Schneider
ya.apache.org/bugzilla/show_bug.cgi?id=26611_ I notice you say at the bottom of the page "fixed". Please could you explain how to fix this? Is there a Tomcat version (or whatever) that has this fixed? Many thanks ! Gurpal -- Kris Schneider <mailto:[EMAIL P

RE: Problems with c:forEach and c:redirect

2004-02-12 Thread Kris Schneider
> > > > > var="row" > > > items="${GroupAbbrevs.rows}" > > > varStatus="rowStatus"> > > > > > > > > > > > > > > > > value="${lead_count + 1}" /> > > > > > var="lead_list" > > > value="${lead_list},${row.abbrev}" /> > > > > > > > > > > > > > > > > > > > > > --- End of code --- > > > > > > Stephen Letschin > > > [EMAIL PROTECTED] -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Struts html:text value initialized using JSTL

2004-02-13 Thread Kris Schneider
ine to set it up, but I am wondering how to do this > using JSTL. > > thx, > Dirk -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Standard: Retrieving values defined in a tag in a web.xml file?

2004-02-18 Thread Kris Schneider
aim is to have something like where the value is > equated to the defined env entry in the web xml file. > > Thanks if you can help. > AB -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/>

Re: JSTL 1.0 and resin

2004-02-18 Thread Kris Schneider
"jsp:root" is not bound > > I was wondering if anyone has seen it before.. > > Thanks, -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Help with choose, less than zero or not

2004-02-19 Thread Kris Schneider
go about it. All I really want is to > either display >or > depending on the amount. Is there a better way to do that? > > Thanks, > > -- > Wendy Smoak > Application Systems Analyst, Sr. > ASU IA Information Resources Management -- Kris Schneider <mailto

RE: Help with choose, less than zero or not

2004-02-19 Thread Kris Schneider
both Strings. No wonder it thinks that 76201.31 > 101000.94! > > Never mind... I tricked it, with help from Kris and A.3.5.1 which says > that if there is a String containing a '.', it will be coerced into a > Double: > > > > Thanks, > -- > W

Re: Problem with tag

2004-02-20 Thread Kris Schneider
n > which tag-libs and scriplets are parsed. > > Do you have any clue on what is the problem? > > best regards > Martti Kauppinen > SysOpen -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem with tag

2004-02-20 Thread Kris Schneider
ring (""), "disabled" or "readonly" (in > java.lang.String variable). So I do not think this is in violation of section > JSP 2.13.1. > > Actually the first issue I mentioned with is more important > for me since I am not using currently in my JSPs.

Re: Problem with tag

2004-02-20 Thread Kris Schneider
attributesText="<%= bean.getAttributes() %>" > > But when I have both string constant AND scriplet in attributesText it does > not work. > > -Alkuperäinen viesti- > Lähettäjä: Kris Schneider [mailto:[EMAIL PROTECTED] > Lähetetty

Re: Problem with tag

2004-02-20 Thread Kris Schneider
;%= bean.getAttributes("fieldName") %>" > > However this works with WLS: > attributesText='<%= bean.getAttributes("fieldName") %>' > > I do not know if this is a bug in WLS but anyhow it works differently in > Tomcat. > > Thanks!

Re: JSTL browser-based locale determination

2004-02-20 Thread Kris Schneider
er the impression > that > it's supposed to store this in session scope, but I'm only finding a > request.charset in session scope. > The spec isn't clear on this, does anyone know how I should get this > information > (I need it in an Action class). &g

RE: Using JSTL for the first time.

2004-02-23 Thread Kris Schneider
po on my part Wendy. It is > > WEB-INF in all places on my machine. > > Darn! That would have been easier to fix. My next suspect is the fact > that you've put the .jar files in both common/lib and WEB-INF/lib. Try > removing them from common/lib and running with a single

RE: Using JSTL for the first time.

2004-02-23 Thread Kris Schneider
d "standard-1.0" and "standard". "standard" is for Standard 1.1. Quoting [EMAIL PROTECTED]: > Jakarta really wants me to download the nightly builds. Does anyone know of > a stable folder? > > -Original Message- > From: Kris Schneider [ma

Re: question regarding xsl

2004-02-23 Thread Kris Schneider
I do not see any binaries in the download section. > Any idea where I can find that? > thanks, > Sohil -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSTL tlds

2004-02-24 Thread Kris Schneider
Do I really have to extract the tld files and enter their location in > web.xml or the tld directive? > > Thanks > Adam > -- > struts 1.1 + tomcat 5.0.16 + java 1.4.2 > Linux 2.4.20 Debian -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech

Re: JSTL tlds

2004-02-24 Thread Kris Schneider
ns. How does tomcat know where to find the tlds normally? > Obviously something in its JBoss configuration has upset it. > > Adam > > On 02/24/2004 01:49 PM Kris Schneider wrote: > > Remove the JAR files from any place other than WEB-INF/lib (e.g. "the JBoss > lib > >

Re: xalan extensions?

2004-02-26 Thread Kris Schneider
them and spews them out as is. Does anyone know of xalan > extensions for html JSTL tagilb and other tablibs or would I need to write > my own? > Thanks, > Sohil -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: taglib standard 1.0 in Tomcat

2004-02-26 Thread Kris Schneider
ggestions? > > -- > George Hester > __ > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > > -

RE: xalan extensions?

2004-02-26 Thread Kris Schneider
alue=""> > value=""> > > > there is no /> or for all of these at the end. > > I can get around this by writing code as however is > there a way this can be corrected or filed as a bug? > Thanks, > Sohil >

Re: Issue using x:transform

2004-02-27 Thread Kris Schneider
p://www.onjava.com/pub/a/onjava/excerpt/jsvltjspckbk_chap01/index.html?pa > ge=3 > > Any idea what may be incorrect in the code above? > > Thanks > > ..Tom > > = > Tom Kralidis > Systems Scientist > Environment Canada > Tel: +01-905-336-4409 > http://www.ec.gc.ca/cise/ -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

<    1   2   3   4   5   >