Re: How to pass Jstl param implicit Object to html:link

2005-06-22 Thread Jose María
Hi, Thanks for your replies but I have not get pass the Map to action, if have you any suggestion to re pass current parameters to another action in the same jsp, please send me. Thank you in advance¡¡ El mar, 21-06-2005 a las 12:48 -0400, Laurie Harper escribió: > 'params' is a JSTL implicit obj

[ANN] Reminder: JavaOne Social Gathering in San Francisco on 6/26 at 8pm

2005-06-22 Thread Van
Please join us for the third annual web developer gathering during JavaOne in San Francisco. After the JavaOne alumni reception at 8:00pm on Sunday evening, we will meet for drinks one short block from Moscone Center at the Thirsty Bear. All Java web developers are encouraged to participate in this

RE: Developing Struts application using Weblogic Workshop 8.1

2005-06-22 Thread Ibha Gandhi
Thanks for the information. Regards, Ibha > -Original Message- > From: Karr, David [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 9:36 PM > To: Struts Users Mailing List > Subject: RE: Developing Struts application using Weblogic Workshop 8.1 > > Building a pure Struts appli

Re: regarding javascript problem

2005-06-22 Thread Nitesh
You could use the onsubmit of the form tag as well... --- HTH Nitesh - Original Message - From: "Khan" <[EMAIL PROTECTED]> To: Sent: Thursday, June 23, 2005 10:30 AM Subject: regarding javascript problem Hi, I have problem in submiting my form through ja

Re: Indexed Values

2005-06-22 Thread Nitesh
indexed properties are probably used when you have a no of rows of the same set of properties. For eg. it would be like a collection of objects with one or more membersin each row. Eg: in case you have the object in the form bean ... or ... HTH Nitesh - Original Message - Fr

regarding javascript problem

2005-06-22 Thread Khan
Hi, I have problem in submiting my form through javascript by onclick event, it say that this property cant be supported. The form gets submitted by button, no prob. Any idea how to proceed but through javascript only. My code: function delete(){ if(condition){ checking some validations }

Re: Setting value at runtime in logic:equal

2005-06-22 Thread Nitesh
You are probably looking for... Nitesh - Original Message - From: "Brad Rhoads" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wednesday, June 22, 2005 7:25 PM Subject: Re: Setting value at runtime in logic:equal Nitesh wrote: You could use value="<%= val %>"> where

Re: validator and xdoclet

2005-06-22 Thread Nitesh
May be you could go to the URL get the required DTD and put the same in your WEB-INF Nitesh - Original Message - From: "roberto" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wednesday, June 22, 2005 6:14 PM Subject: Re: validator and xdoclet Unfortunately this solutio

RE: How to encode byte array as url parameter

2005-06-22 Thread David Erickson
Thanks Laurie that is useful information. -David > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper > Sent: Wednesday, June 22, 2005 8:39 PM > To: user@struts.apache.org > Subject: Re: How to encode byte array as url parameter > > Just to add to your op

Re: Navigation Problem

2005-06-22 Thread Michael Jouravlev
On 6/22/05, Michael Taylor <[EMAIL PROTECTED]> wrote: > Michael, > > It appears from your > articles that your solution depends upon tight integration with the > application model. There are two down sides to this. The obvious one > is writing more code, where it might be generated from a model.

Re: [Shale] How to code simple container-managed login form

2005-06-22 Thread Duong BaTien
Greetings: As promised, i report back my solutions and hope this may help others. It turns out that there is also some issues directly related to Shale Dialog due to its current interactions with Jsf. On Sat, 2005-06-11 at 08:47 -0600, Duong BaTien wrote: > On Fri, 2005-06-10 at 23:08 -0400, Fran

Re: How to encode byte array as url parameter

2005-06-22 Thread Laurie Harper
Just to add to your options ;-), here's another suggestion: convert the byte[] to an integer (store it in a BigInteger). BigInteger can give you a string representation in whatever base you want. Base 10 would give you a purely numeric but rather long string; base 16 (hex) would be more compact. Bu

Re: Validation & Anchoring

2005-06-22 Thread Laurie Harper
Oh, right, no... The browser doesn't see the new URL (and hence the anchor) with a forward. It'd work if you configured struts to redirect to the input view instead of forwarding, but then you have the same caveats about preserving state across the redirect... L. Dylan Stamat wrote: Oh, and

Re: Navigation Problem

2005-06-22 Thread Michael Taylor
Michael, Thanks. Your solution was very interesting. It is very similar to what I wound up building, although you took the time to generalize it and write some great articles. One thing that I didn't like about my previous attempts was dependence upon writing Java code to model the transit

Re: Navigation Problem

2005-06-22 Thread Michael Jouravlev
Just cannot help it; I am sorry, just cannot keep it inside ;) On the other hand, maybe not everyone knows about it yet? Homepage: http://www.superinterface.com/easywizard.htm Live demo: http://www.superinterface.com/wizard/signupWizard.do Now back to the regular programming (c) Frank ;-) P.S. T

Re: Navigation Problem

2005-06-22 Thread Michael Taylor
Alternatively, you can use one action form in session scope with a series of actions representing each page. Each page in the wizard would have a series of forward representing the transition links from that state to others, basically modeling a FSM with actions as states and forwards as trans

Re: Validation & Anchoring

2005-06-22 Thread Dave Newton
Dylan Stamat wrote: Thanks for your comments everybody I fiinally found the answer :) I'm still using the DynaValidatorForm, and basically just had to do what Laurie recommended in her 2nd point. I just need to check for messages on the JSP page using the messagesPresent logic tag...

RE: Navigation Problem

2005-06-22 Thread Abdullah Jibaly
I have not used it yet, but you may want to take a look at spring web flow, it is designed for these 'wizard' scenarios, and supposedly integrates well with struts. If you want to use Struts components only, one suggestion: 1 big action 1 big action form Several jsps The jsp form always posts

Navigation Problem

2005-06-22 Thread Clint Shank
We have a struts app that gathers data screen by screen and then processes the data at the end. On each screen is a previous and next button. The possible screens in the workflow depend on certain state: what things the user has chosen so far, the user's preferences and so on. My question is.

Re: Validation & Anchoring

2005-06-22 Thread Dylan Stamat
Oh, and Laurie, just so you know, putting an anchor on a mappings input JSP page won't work. That was tried in one of my 1000 attempts :) On 6/22/05, Dylan Stamat <[EMAIL PROTECTED]> wrote: > > Thanks for your comments everybody I fiinally found the answer :) > > I'm still using the D

Re: Validation & Anchoring

2005-06-22 Thread Dylan Stamat
Thanks for your comments everybody I fiinally found the answer :) I'm still using the DynaValidatorForm, and basically just had to do what Laurie recommended in her 2nd point. I just need to check for messages on the JSP page using the messagesPresent logic tag... ie: setTimeout('sel

RE: trouble passing multiple parameters using

2005-06-22 Thread Abdullah Jibaly
Try it step by step. Before passing a map, pass the values hardcoded: Click Here And make sure that works. If it does, put storeNo and storeName into the storeInfo bean (you dont have to use scriptlets): And test again (I probably have an error somewhere so make sure to check the syntax).

RE: How to encode byte array as url parameter

2005-06-22 Thread David Erickson
What I am doing is Ciphering a url parameter, so &m=(ciphered text here), and java's ciphering returns a byte[] to you, so I needed to convert it from byte[] to a string that I could set as a url parameter, then reverse everything when I get that url back. -David > -Original Message- > Fr

Re: trouble passing multiple parameters using

2005-06-22 Thread Laurie Harper
Are you sure stockingStoreSalesReviewForm.getStoreNumber() is returning valid data? L. Phani wrote: Here is my code in the JSP page: <% java.util.HashMap params = new java.util.HashMap(); params.put("storeNo",param1); params.put("storeName",param2); pageContext.setAtt

Re: How to encode byte array as url parameter

2005-06-22 Thread Martin Gainty
David Any reason why you're not constructing java.net.URL from string? and then using toExternalForm() to convert back to String? http://java.sun.com/j2se/1.5.0/docs/api/ ??? Martin- - Original Message - From: "David Erickson" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" Sent

Re: Validation & Anchoring

2005-06-22 Thread Laurie Harper
I'm not sure if you can tell the browser to scroll to an anchor from within the page (rather than in the URL). It would have to be done using Javascript, HTML doesn't provide this. Other than Javascript, I can think of two possibilities: 1) in your JSP, check for errors and, if they exist, ren

Re: How to encode byte array as url parameter

2005-06-22 Thread Dave Newton
David Erickson wrote: I took a look at that commons encoder and for encoding a byte[] it returns a byte[].. seems pointless to me? Or use String encode(new String(byte[])). Or look at the second reference; all you have to do is put %HH where HH is the hex ASCII rep of the character in ques

Re: trouble passing multiple parameters using

2005-06-22 Thread Roberto
Phani wrote: In the Action class: String storeNumber = (String)request.getParameter("storeNo"); I am getting null in the storeNumber. What went wrong!! Any help appreciated... But you give at the Action a java.util.HashMap not a String and its name is "storeInfo" not "storeNo". am I mi

RE: How to encode byte array as url parameter

2005-06-22 Thread David Erickson
I took a look at that commons encoder and for encoding a byte[] it returns a byte[].. seems pointless to me? -David > -Original Message- > From: Dave Newton [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 1:41 PM > To: Struts Users Mailing List > Subject: Re: How to encode byte

RE: How to encode byte array as url parameter

2005-06-22 Thread David Erickson
Thanks the base64 combined with URLEncoder should work great. -David > -Original Message- > From: Michael Jouravlev [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 1:36 PM > To: Struts Users Mailing List > Subject: Re: How to encode byte array as url parameter > > Base64 will n

Re: Validation & Anchoring

2005-06-22 Thread Michael Jouravlev
On 6/22/05, Mark Galbreath <[EMAIL PROTECTED]> wrote: > Validator is crap...and always has been. If you look in the archive, you > will see more complaints about Validator working over the past 3 years and > any other 2 subjects combined. Risking to start offtopic here, I would say that the wh

Re: How to encode byte array as url parameter

2005-06-22 Thread Dave Newton
David Erickson wrote: Hi I am wondering how I can take a byte[] and use it as a URL parameter? I have tried converting it to a string using varying character sets, but when I call string.getbytes I never get back my original array. Any help would be greatly appreciated. Googled "url encode

Re: How to encode byte array as url parameter

2005-06-22 Thread Michael Jouravlev
Base64 will not work, because its charset includes + and / ASCII characters. So you might write something like strToHex() (or whatever its name is), for example see Cryptix library, Hex utility class. Or you can just use that class directly. On the other hand, you may use Base64, and then URLEncod

RE: Validation & Anchoring

2005-06-22 Thread Mark Galbreath
Validator is crap...and always has been. If you look in the archive, you will see more complaints about Validator working over the past 3 years and any other 2 subjects combined. ~mark Rick -> byte me -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, June

How to encode byte array as url parameter

2005-06-22 Thread David Erickson
Hi I am wondering how I can take a byte[] and use it as a URL parameter? I have tried converting it to a string using varying character sets, but when I call string.getbytes I never get back my original array. Any help would be greatly appreciated. Thanks David

Re: Eclipse plug-in for Struts

2005-06-22 Thread Yaakov Chaikin
Take a look at www.m7.com. They have a free Eclipse plugin for JSP editing (I doubt anything beats it: it's almost like Dreamweaver.) They also have NitroX (a Struts plugin) for Eclipse. It's pretty expensive though, but it's very nice. Yaakov. On 6/22/05, Tony Smith <[EMAIL PROTECTED]> wrote: >

Re: Validation & Anchoring

2005-06-22 Thread Dave Newton
Dylan Stamat wrote: Yeah, I could... however this would defeat the purpose (convenience) of using a DynaValidatorForm. Apparently it isn't all that convenient for you as it is, either. The main purpose of using a dyna form, at least for me, is that I don't have to write a class and the get

Re: Validation & Anchoring

2005-06-22 Thread Dylan Stamat
Yeah, I could... however this would defeat the purpose (convenience) of using a DynaValidatorForm. On 6/22/05, Dave Newton <[EMAIL PROTECTED]> wrote: > > Dylan Stamat wrote: > > >The problem I'm running into is that since I'm using a > DynaValidationForm, > >and errors are found, I'm never ev

Re: Validation & Anchoring

2005-06-22 Thread Dave Newton
Dylan Stamat wrote: The problem I'm running into is that since I'm using a DynaValidationForm, and errors are found, I'm never even reaching my Action... so, the setting of the anchor in the request wouldn't work. I would somehow need to determine if there "were" errors on the JSP page itsel

Re: Validation & Anchoring

2005-06-22 Thread Dylan Stamat
Thanks Wendy ! The problem I'm running into is that since I'm using a DynaValidationForm, and errors are found, I'm never even reaching my Action... so, the setting of the anchor in the request wouldn't work. I would somehow need to determine if there "were" errors on the JSP page itself (like

Re: Validation & Anchoring

2005-06-22 Thread Wendy Smoak
From: "Dylan Stamat" <[EMAIL PROTECTED]> > When validation finds that there are errors, and returns to the form page > with displayed errors... I want to anchor to the lower part of the large > form page... so, only the errors and the form shows... not the text above. > Anybody have any ideas on ho

trouble passing multiple parameters using

2005-06-22 Thread Phani
Here is my code in the JSP page: <% java.util.HashMap params = new java.util.HashMap(); params.put("storeNo",param1); params.put("storeName",param2); pageContext.setAttribute("storeInfo", params); %> Click Here In the Action class: String storeNumber = (String)request

Re: Eclipse plug-in for Struts

2005-06-22 Thread Aleksandar Matijaca
I am happily using MyEclipseIde.com product - for $30/YEAR, you can't go wrong... I have succeessfuly used it with Jboss (and Tomcat 5.x) and Weblogic. a.m. On 6/22/05, Tony Smith <[EMAIL PROTECTED]> wrote: > > Is there an Eclipse plug-in for Struts or Tomcat so > th

Validation & Anchoring

2005-06-22 Thread Dylan Stamat
I'm using a simple DynaValidationForm, and have the "input" in the struts-config mapping pointing to the same page the form resides on. When validation finds that there are errors, and returns to the form page with displayed errors... I want to anchor to the lower part of the large form page...

Re: Eclipse plug-in for Struts

2005-06-22 Thread Lee Harrington
I like MyEclipse -- http://www.myeclipseide.com Lee On 6/22/05, Tony Smith <[EMAIL PROTECTED]> wrote: > Is there an Eclipse plug-in for Struts or Tomcat so > that I can develop, debug, and test my web app all in > Eclipse? Right now, if I want to change something I > have to write my program in E

Re: Error: FormTag does not have a setter for "name"

2005-06-22 Thread Dave Newton
Sher, Allen - BLS CTR wrote: I got this error complaning that FormTag does not have a setter for "name". Is this related to some kind of mismatch between the TLD and struts.jar? No, it's because there's no "name" attribute in the html:form tag. http://struts.apache.org/userGuide/struts-html

Re: Eclipse plug-in for Struts

2005-06-22 Thread Andrew Thorell
I use myEclipse http://www.myeclipseide.com I'm not a big fan of buying development software, but this plug in is worth the $30/yr it makes my whole development life easier. I think they even offer a 30 day trial to test it out. It allows you to right click in the outline view when editing your st

Re: Eclipse plug-in for Struts

2005-06-22 Thread Frank W. Zammetti
Wow, that's painful! I use UltraEdit only... I click a single button and Tomcat is stopped, my app is compiled (including JUnit tests and static analysis runs), packaged, deployed, Tomcat restarts and IE pops up to the start page. All it took was an Ant script assigned to a key. I would bet you

RE: Eclipse plug-in for Struts

2005-06-22 Thread Barnett, Brian W.
http://www.sysdeo.com/sysdeo/eclipse/tomcatplugin -Original Message- From: Tony Smith [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 10:59 AM To: Struts Users Mailing List Subject: Eclipse plug-in for Struts Is there an Eclipse plug-in for Struts or Tomcat so that I can develo

Error: FormTag does not have a setter for "name"

2005-06-22 Thread Sher, Allen - BLS CTR
I got this error complaning that FormTag does not have a setter for "name". Is this related to some kind of mismatch between the TLD and struts.jar? /taglibs.jsp(7): Error in using tag library uri='/WEB-INF/struts-html.tld' prefix='html': The Tag class 'org.apache.struts.taglib.html.FormTag' has

Re: Eclipse plug-in for Struts

2005-06-22 Thread Brad Balmer
Have you tried looking at: http://eclipse-plugins.2y.net/eclipse/index.jsp Tony Smith wrote: Is there an Eclipse plug-in for Struts or Tomcat so that I can develop, debug, and test my web app all in Eclipse? Right now, if I want to change something I have to write my program in Eclipse, write

Eclipse plug-in for Struts

2005-06-22 Thread Tony Smith
Is there an Eclipse plug-in for Struts or Tomcat so that I can develop, debug, and test my web app all in Eclipse? Right now, if I want to change something I have to write my program in Eclipse, write my jsp in another text editor, export the jar file from Eclipse to web-inf/lib, restart Tomcat, an

Re: How to use multiple tiles definitions files for multi channel

2005-06-22 Thread Laurie Harper
Michael Mattox wrote: The text I quoted above was from the tiles documentation, which claims Tiles *is* able to do this. I just can't figure out how. I'm now wondering if this text is incorrect and tiles does not offer this. Hmm, I had a quick look and saw the section you quote; there doesn't

Indexed Values

2005-06-22 Thread Ciaran Hanley
Can somebody please explain why properties of a bean appear on a JSP like this when the indexed="true" property is set org.apache.struts.taglib.html.BEAN[0].propertyName org.apache.struts.taglib.html.BEAN[1].propertyName org.apache.struts.taglib.html.BEAN[2].propertyName instead of propertyName[0

java.lang.IllegalArgumentException: No bean specified , when I submit using nested:tags

2005-06-22 Thread Kothari, Rahul
Each CpExternalCreditRating object has another object inside it which I access from the front end using nested:tags as follows... The display works fine but I get the exception when I try to submit the page. Here is my struts

RE: Developing Struts application using Weblogic Workshop 8.1

2005-06-22 Thread Karr, David
Building a pure Struts application in Workshop 8.1 isn't practical. If you're building a pageflows app, however, which uses Struts internally, then Workshop is the way to go. > -Original Message- > From: Ibha Gandhi [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 7:47 AM > To:

RE: Developing Struts application using Weblogic Workshop 8.1

2005-06-22 Thread Braun, James F
You can go to the BEA dev2dev site http://dev2dev.bea.com/wlworkshop/ and download the workshop, server, and developer's license. However, I tried to make it work several times and finally gave up. Instead of starting with a Hello World app and working up the tutorials started with a full blown ap

Developing Struts application using Weblogic Workshop 8.1

2005-06-22 Thread Ibha Gandhi
Hi All, Has anyone developed Struts application using Weblogic Workshop. Are there any plugins that I need to download for that? Is there any tutorial which I can read about Struts and Weblogic Workshop. Thanks, Ibha

Re: Setting value at runtime in logic:equal

2005-06-22 Thread Brad Rhoads
Nitesh wrote: You could use value="<%= val %>"> where you can set val depending on any conditions, input at runtime! That's exactly what I *want* to do. orderObj is a collection that I'm iterating through. How do I get val to come from the "current" iteration? HTH Nitesh - Original

Re: How to set "autocomplete" attribute in

2005-06-22 Thread Ed Griebel
Néstor, Wow, I didn't know that existed, thanks for the link. Since it's not a standard Struts attribute, here's a couple of ideas: - creating a custom tag library that extends the standard HTML tag lib and tld, but this seems like overkill. - If you want to turn autocomplete on for every text fie

Re: validator and xdoclet

2005-06-22 Thread roberto
Unfortunately this solution not resolve my problem. I work with jboss in localhost therefore when I deploy my appication the server respond wiht the exception "java.net.UnknownHostException: jakarta.apache.org" and the form not works. thank's for fast reply. Roberto --- Nitesh <[EMAIL PROTECTED

Re: How to set "autocomplete" attribute in

2005-06-22 Thread Ed Griebel
Hi! There's a lot of information available on the Internet. A good place to start is http://java.sun.com/developer/technicalArticles/J2EE/AJAX/ and there's a lot of links other people have found at the "social bookmarking" website del.icio.us, http://del.icio.us/tag/ajax and http://del.icio.us/tag

RE: Storing data in session scope

2005-06-22 Thread Pilgrim, Peter
> -Original Message- > From: Adam Hardy [mailto:[EMAIL PROTECTED] > Sent: 22 June 2005 11:54 > To: Struts Users Mailing List > Subject: Re: Storing data in session scope > > > On 22/06/05 08:54 Pilgrim, Peter wrote: > >> What data do I need to store???. Data that it has to be updated if

Re: How to use multiple tiles definitions files for multi channel

2005-06-22 Thread Nitesh
This javaworld article might help http://www.javaworld.com/javaworld/jw-02-2002/jw-0201-strutsxslt.html HTH Nitesh - Original Message - From: "Nitesh" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" ; <[EMAIL PROTECTED]> Sent: Wednesday, June 22, 2005 4:39 PM Subject: Re: How to u

Re: validator and xdoclet

2005-06-22 Thread Nitesh
You could use "-//Apache Software Foundation//DTD Commons Validator Rules Configuration 1.1.3//EN" "http://jakarta.apache.org/commons/dtds/validator_1_1_3.dtd";> Better still you could get the latest struts jar from Jakarta struts and use the vlaidator-rule bundled with that.

validator and xdoclet

2005-06-22 Thread roberto
Hi people, I'm an italian student and i have a problem with struts validator. I'm working in a universitary project based on standard j2ee for a web applicaton. This project works on jboss with struts, ejb, all handled with xdoclet. The deployment is made by Ant. I have a form written to works wit

Re: JSTL tag libs

2005-06-22 Thread Martin Gainty
The tutorial link provided is actually quite helpful If you copy the JSTL JAR files from the lib directory where you installed the Standard Taglib to your webapp's WEB-INF\lib then the first line your jsp contains the taglib declaration <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"

Re: How to use multiple tiles definitions files for multi channel

2005-06-22 Thread Nitesh
Tageting multiple channels is definitely possible with Struts... Tiles coudl aid you doing this. But times is not the prime technology involved... Your UI components need to be XML-based rather than JSP based for this. You could use plug-ins to fomat your xmls for the channel intended. There are

Re: How to use multiple tiles definitions files for multi channel

2005-06-22 Thread Michael Mattox
>> In the tiles documentation webapp, it's stated: >> >> "A mechanism similar to Java properties files is used for definitions >> files : you can have one definition file per key. The appropriate >> definition is loaded according to the key." >> >> I'd like to use this to have different tiles for w

Re: Storing data in session scope

2005-06-22 Thread Adam Hardy
On 22/06/05 08:54 Pilgrim, Peter wrote: What data do I need to store???. Data that it has to be updated if the user goes to a module which update that data but in database. So If the user updates the data, it has to be updated automatically in the application scope. This is different kettle o

Re: Accessing message resource from in validate method

2005-06-22 Thread Arash Bijanzadeh
Thank you Jana! On 6/21/05, Jana Parvanova <[EMAIL PROTECTED]> wrote: > > Try this: > > MessageResources resources= (MessageResources) > request.getAttribute(Globals.MESSAGES_KEY); > Locale loc = getTheLocale(request); > String value = resources.getMessage(loc, your_key_for_bert) ; > > You coul

Re: [OT] Convert Java Object into XML. Is there a simple tool in Jakarta projects or elsewere

2005-06-22 Thread Nanne Baars
Check out Betwixt (http://jakarta.apache.org/commons/betwixt). Nanne On 6/20/05, Haroon Rafique <[EMAIL PROTECTED]> wrote: > Hi David, > > See my response below: > > On Saturday at 8:08am, DG=>David Gagnon <[EMAIL PROTECTED]> wrote: > > DG> Hi all, > DG> > DG> Sorry for this OT. I'm looking

AW: JSTL tag libs

2005-06-22 Thread Martin Kindler
Like Alan I was wondering about the difference and now see a bit clearer. BUT: Now I am a bit confused. I used to use the rt-TLDs in my project (it simply works with EL expressions, possibly because the container, Tomcat 5.x, handles it ?). After the information supplied here I should use the c (

RE: Storing data in session scope

2005-06-22 Thread Pilgrim, Peter
> -Original Message- > From: Rafael Taboada [mailto:[EMAIL PROTECTED] ==== > I am suprise that no body mention a ServletFilter as also another possibility. > > I really appreciate ur help, thanks to everybody for ur reply. > In my web.xml file I have: > > /index.jsp > > So when

RE: Newbie questions

2005-06-22 Thread Pilgrim, Peter
> -Original Message- > From: Wendy Smoak [mailto:[EMAIL PROTECTED] ==== > > > From: "C.F. Scheidecker Antunes" <[EMAIL PROTECTED]> > > > What I would like to learn right now is how to get > information from a > > Select statement from a database and display it on a HTML > table. T