Client Side Caching

2002-08-29 Thread mhanel
Is there a possibility to use Client Side Caching? For example to Save a picture and reload it from the browsers cache, when nothing has changed. or A Page which contains contents from a Database and when nothing has changed on the DB reload the old page from the cache. Thanks Matthias --

html:error iterator

2002-07-23 Thread mhanel
Is there a possibility to iterate over an array of errormessages in struts1.0? I've an errorpage which displays all errors in an table. How can I write each error in a cell without having the and elements in my resources? Thanks Matthias --

Locale in FormBean

2002-07-19 Thread mhanel
I want to have the Locale of the Browser in my FormBean, so that I can format some dates and time in the get Methods. Till now I'm creating and setting the Bean in the previeous called action. Is there a better way to do it? (an automatic one?) Thanks in advance Matthias.

AW: html:errors

2002-07-11 Thread mhanel
Yes I know. Probably my question was wrong. Can I use the tag with some tags? like Do Some stuff for errors. -Ursprüngliche Nachricht- Von: Kamholz, Keith (corp-staff) USX [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 11. Juli 2002 14:31 An: 'Struts Users

html:errors

2002-07-11 Thread mhanel
How do I check on the jsp if some error occured? If an error occured I wanna display a Dialog with the errormessages inside when the page gets reloaded. Hanel Matthias Fachinformatiker (Anwendungsentwic

formating

2002-07-01 Thread mhanel
I've got a Bean which contains an array of Objects. Each of the containing objects has a datevalue. In the JSP I want to display the date localized. How do you solve this problem? Thanks in advance. Matthias

serially numbered table

2002-06-13 Thread mhanel
I want to have a serially numbered table. I have a formbean which contains an array of objects which I'm going to display. I don't want to save the numberes in these objects. So in the formbean I wrote a getId() and a setId(int i) method. The formbean holds a counter which gets increased when ca

how to use reset()?

2002-06-12 Thread mhanel
I'm having a formbean which contains data from some ejb (object containing some id's, descriptions and boolean values). In my actionclass I get this bean from the session and fill it with the data from the ejb. Then in my formular I'm just having checkboxes to edit the boolean values (means not al

AW: receive data from form newbie question

2002-06-10 Thread mhanel
f you have many rows? Pretty much in the servlet you get the ActionForm passed from the servlet. Then you can access the properties submitted. -Original Message----- From: mhanel [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 6:47 AM To: struts-user Subject: receive data from f

receive data from form newbie question

2002-06-10 Thread mhanel
I'm using struts 1.0.2 I've a table of records, where each record is in a row. Now the user can edit some textfields and checkboxes for all of the records. When I'm pressing submit, how do I get all the data back? And how do I notice which data belongs to which recordset? thanks matthias -

AW: bean:write

2002-06-05 Thread mhanel
but isn't this a bad design then? Mixing up Struts tags and standard JSP. -Ursprüngliche Nachricht- Von: Jonathan Fuerth [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 3. Juni 2002 16:53 An: Struts Users Mailing List Betreff: Re: bean:write On Mon, Jun 03, 2002 at 02:58:45PM +0200, [EMAI

bean:write

2002-06-03 Thread mhanel
Is there a possibility to write some values from the session to the jsp, without having a bean for this value? Hanel Matthias Fachinformatiker (Anwendungsentwicklung) in Ausbildung Logistik World GmbH

multiple frames

2002-06-03 Thread mhanel
I want to work with multiple frames. I have a file index.html that contains two frames. When the "submit" button on this index.html page is pressed, both these frames should be refreshed; should display the newest data from the database. When I call the index.html how do I specify that the data

ResoruceClass instead of Propertiesfile

2002-05-29 Thread mhanel
Is there a possibility to use ResourceClasses instead of ResorucePropertiesfieles? Thanks Matthias Hanel Matthias Fachinformatiker (Anwendungsentwicklung) in Ausbildung Logistik World GmbH Fon:

multiple languages.

2002-05-27 Thread mhanel
I want the user to select one language during login. How do I set this Language in struts? So that struts doesn't automatically detect the defaultlanguage of the browser. It should take the one I set. thanks in advance. ---

How to chain Actions

2002-05-27 Thread mhanel
How do I best chain Actions? For example one to save data from a formular and one for getting the data for the new page. Or is it better to have just one action which can do both jobs? Is there any good article on the web?

NoClassDefFound Error

2002-05-23 Thread mhanel
Im using struts 1.0.2 with Tomcat 4.0.1 and Weblogic6.1 SP2 All the time I get an java.lang.NoClassDefFoundError: org/apache/struts/action/ActionMessages But I'm never using this class. The error occoures only if I'm using the tag. The next is that this class doesn't even exist in the struts.j

NoClassDefFoundError WLS6.1

2002-05-22 Thread mhanel
I'm using struts1.0.2 and Weblogic Server 6.1. Almost everything in my small testpages works. Excep when I'm using the html:form tag. ... when I'm opening this page on my browser I get an NoClassDefFoundError. java.lang.NoClassDefFoundError: org/apache/struts/action

queue actions

2002-05-17 Thread mhanel
I Want to que some actions. For example I've an action checkLogin, an action loadData and an action display. I want that checkLogin gets executed bevore loadData. So in the display action in the struts-config.xml I define a froward "checkLogin" with the path "/checkLogin.do" And In the check

AW: problems with int

2002-05-17 Thread mhanel
Thanks for the hint it works good now. -Ursprüngliche Nachricht- Von: Victor Hadianto [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 17. Mai 2002 09:10 An: Struts Users Mailing List Betreff: Re: problems with int > > javax.servlet.ServletException: No getter method for property iOu_id of

problems with int

2002-05-16 Thread mhanel
I want to display data for ControlUnits in a table of my Main.jsp I filled the datatypes in an ArrayList and put it with the name "list" into the request. When I just want to display strCu_dc which is from type String everything works fine and I get the table displayed. But when I also want to

Is there any known miss behaviour according with Weblogic Server 6.1

2002-04-18 Thread mhanel
I need to write a webapplication for my company. So I looked at some frameworks and ended up at Struts. For the servlet's I wrote bevore I used xmlc. But they did'n work with WLS 6.1 and I want to avoid such problems.