Re: ActionForm Stringvariables

2006-03-16 Thread Julian Tillmann
ah, ok, well thanks, that was rather illuminating :) thanks a thousand Julian > --- Ursprüngliche Nachricht --- > Von: "Leon Rosenberg" <[EMAIL PROTECTED]> > An: "Struts Users Mailing List" > Betreff: Re: ActionForm Stringvariables > Datum: Thu, 16 Mar 2006 14:19:41 +0100 > > well, two re

Strategy for Controlling the Session Size

2006-03-22 Thread Julian Tillmann
Hi Can someone give me advice how to control and clean the amount of Collections (HashTables/ArrayList) that are stored in the session. My first consideration goes in the direction to use a naming-strategy for all lists to be used in a session (eg session.setAttribute("collection_name", and

Re: Strategy for Controlling the Session Size

2006-03-22 Thread Julian Tillmann
e Session Size > Datum: Wed, 22 Mar 2006 11:34:31 +0100 > > On 3/22/06, Julian Tillmann <[EMAIL PROTECTED]> wrote: > > Hi > > > > Can someone give me advice how to control and clean > > > > the amount of Collections (HashTables/ArrayList) > > > &g

Re: Strategy for Controlling the Session Size

2006-03-23 Thread Julian Tillmann
thanks for all your ideas and advice especially the one with the filter was very helpful. :) ciao 4 now Julian > --- Ursprüngliche Nachricht --- > Von: "Mark Lowe" <[EMAIL PROTECTED]> > An: "Struts Users Mailing List" > Betreff: Re: Strategy for Controlling the Session Size > Datum: Wed, 22 Mar

User Restriction in a web application?

2006-03-26 Thread Julian Tillmann
Hi, I'd like to implement the following: In a web application a function should only be used by ONE user and if another user comes along it should show him the first user's name and give him the choice whether to kick the first user out or not. Is there perhaps something like that in Java?

Replacing Validator 1.2 with 1.3?

2006-03-30 Thread Julian Tillmann
Hi again, just a quick question: what's your experience with replacing Validator V1.2 with V1.3, what problems did occur, what did you have to keep an eye on or did it just work fine? ciao 4 now Julian -- Bis zu 70% Ihrer Onlinekosten sparen: GMX SmartSurfer! Kostenlos downloaden: http://www.

Re: Replacing Validator 1.2 with 1.3?

2006-03-30 Thread Julian Tillmann
; It worked just fine - in fact it works better IMO because there are a > number of bugs fixed :-) > > Niall > > On 3/30/06, Julian Tillmann <[EMAIL PROTECTED]> wrote: > > Hi again, > > > > just a quick question: what's your experience with replacing V

"Valid when"-Example

2006-04-03 Thread Julian Tillmann
Hi, would someone be so kind to help me with the following problem: A date field should only be validated if another checkbox isn't selected. I'm not sure how to do it: Do I have to use validwhen or reiqired-if?? I cannot find any good examples or references concerning my problem. Here is my

Validwhen

2006-04-03 Thread Julian Tillmann
Hi I tried now for several hours to fix my validwhen-example. The property time should only be validated if the checkbox (property calculatingShift) Is not checked. How can help me? Thank you so much!

Any relation imaginable between Struts and HiveMind?

2006-04-06 Thread Julian Tillmann
Hi, today I stumbled across the jakarta project "HiveMind", where you can develop services, that work between your application code and the underlying J2EE. Has someone an idea on or any experience from practicing a combination between HiveMind and struts? I haven't got a clue on how I c

Extracting MessageResources from Struts

2006-04-24 Thread Julian Tillmann
Hi everyone, this question is not entirely a question about struts but just about a part of it, which I would like to extract from the rest of the framework. It's like this: I have my own framework for creating dynamic SVGs and in one Class I have tooltip-messages hardcoded in German. I don't w

Re: Extracting MessageResources from Struts

2006-04-24 Thread Julian Tillmann
essages, i suggest you > take a look at how ressource bundles are used for i18n in the sun java > documentations http://java.sun.com/docs/books/tutorial/i18n/index.html > > Please note basically the MessageResources is a front end to this > allowing configuration of ressources in st

How to create a Waiting Page for long requests?

2006-05-02 Thread Julian Tillmann
Hi I want to prevent a user from submitting long during database queries twice. Therefore I try to include a waiting page. Can someone name me an example or give me a tip how to implement it? Thanks a lot Julian -- "Feel free" - 10 GB Mailbox, 100 FreeSMS/Monat ... Jetzt GMX TopMail tes

Re: How to create a Waiting Page for long requests?

2006-05-03 Thread Julian Tillmann
D]> wrote: > > > > when a user submits anything on the jsp page you can try and disable the > > submit button and display a message for please wait. > > all this can be achieved with the help of java script. > > regards, > > Roy > > > > -Origin

Finalize back hitting the "back"-button?

2006-05-17 Thread Julian Tillmann
Hello my question is simple: is an action finalized when the user hits the "back" button of the browser? thanks & ciao 4 now Julian -- Echte DSL-Flatrate dauerhaft für 0,- Euro*! "Feel free" mit GMX DSL! http://www.gmx.net/de/go/dsl

RE: Finalize back hitting the "back"-button?

2006-05-17 Thread Julian Tillmann
Hi I'm sorry, I wasn't being specific, I meant a struts action. You see, we've got some actions which get data from a database and sometimes it takes a while, so some of the users hit the back button and I'd like to know whether this ends the connection by itself (if implemented so in finalize) o

How to lock the access of methods within an action?

2006-05-30 Thread Julian Tillmann
Hello everyone, Within our struts web application in which we have edit-actions within a user can be busy editing data in the form for several minutes. The problem is, if another user is also editing the data at the same time, one of the is eventually going to overwrite the changes of the

Re: Re: How to lock the access of methods within an action?

2006-05-30 Thread Julian Tillmann
t is being edited and base access restrictions off of that. > However you have to be very carefull about making sure you don't get > any deadlock or race conditions. > > I suggest you delve into database world and read about how other > people have solved this problem. > >

Re: Re: Re: How to lock the access of methods within an action?

2006-05-30 Thread Julian Tillmann
action? >  > i think transaction manager will take care of this. > > On 5/30/06, Julian Tillmann <[EMAIL PROTECTED]> wrote: > > > > Thanks a lot for your answer! > > > > My thinking behind is the application level! > > > > I'm not sure but the goal

Re: Re: Re: Re: How to lock the access of methods within an action?

2006-05-30 Thread Julian Tillmann
ption e) { > > } finally { > sceneryLock.release(); > } > } > > Hope it helps ... > > []s > > Miguel > > On 5/30/06, Julian Tillmann <[EMAIL PROTECTED]> wrote: > > > > thx > > > > hmm, where can I find it, is it part

Form shared between 2 Action, how to change bool-value?

2006-05-31 Thread Julian Tillmann
Hello, I've two actions which share the same form in with session scope. In the first action one boolean value of the form will be set to false, but in the next action the form will be retireved an the value is still true. There is the error? I tried (int Action 1): form.setValue(false); and I

Extending Struts with Spring

2006-06-07 Thread Julian Tillmann
Hello, I've read that you can use Spring to make your Struts Actions thread safe. Is someone using this or has experience with it? Are there other arguments for using Spring with Struts like, for example an easy implemented Interceptor that might improve the application and is not as easily a

Re: Re: Extending Struts with Spring

2006-06-08 Thread Julian Tillmann
Thank you for your replies! When I understand this right: - Giving Actions a state using Spring makes no sence - It cannot be recommended to overwrite the request processor with Spring (we already have our own) - But the spring Context offers some new possibilites like IOC but to be honest I'

Re: Re: Extending Struts with Spring

2006-06-08 Thread Julian Tillmann
Thanks very much for all your answers, I'd be very keen to learn more about this soon. -- Echte DSL-Flatrate dauerhaft für 0,- Euro*! "Feel free" mit GMX DSL! http://www.gmx.net/de/go/dsl - To unsubscribe, e-mail: [EMAIL PR

Starting a Struts-Intranet Applikation from the Client

2006-06-20 Thread Julian Tillmann
Hello everyone, I was wondering whether it's possible to start a Struts application from a Client Progam made with Visual Basic , with a Link and how you could pass parameters via this link that are availible in the web-applikation. Has anybody done this before, can you give me some advice on

Using the c-tag with Struts?!

2006-07-05 Thread Julian Tillmann
Hi I’d like to use the c-tag of the core tag library as it seems to be powerful. For example "else if" is not implemented in Struts-logic and this is often needed. Are there any disadvantages of doing so or can also you recommend it? Thanks for your suggestions! Julian -- Der GMX Sm

Re: Re: Using the c-tag with Struts?!

2006-07-05 Thread Julian Tillmann
thanks for the good information :) Julian Original-Nachricht Datum: Wed, 5 Jul 2006 06:55:33 -0700 Von: Wendy Smoak <[EMAIL PROTECTED]> An: Struts Users Mailing List Betreff: Re: Using the c-tag with Struts?! > On 7/5/06, Julian Tillmann <[EMAIL PROTECTED]> wr

Short Validation Pattern Question

2006-07-06 Thread Julian Tillmann
Hi I hava two fields where a user should enter a time between 00:00 and 23:59. Is it right that HH:mm is the right pattern to check this? Thanks a lot Julian -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer -

Performance Tests on Action Level

2006-07-11 Thread Julian Tillmann
Hi everybody, we need a performance test on the actions level in our rather big Struts Application which contains many database queries. for example to find out which Action takes the longest or which actions might cause a high CPU usage .. Is there a tool how to implement it? Or is it possibl

Re: Re: Performance Tests on Action Level

2006-07-11 Thread Julian Tillmann
llProducers > > The project is (yet) rather bad documented (working on it) so ask me > directly if you have any questions :-) > > regards > Leon > > On 7/11/06, Julian Tillmann <[EMAIL PROTECTED]> wrote: > > Hi everybody, > > > > we need a perfor

Comparing beans

2006-07-26 Thread Julian Tillmann
Hi everyone, does someone know of a good way to check a java bean whether a certain value has already been added or not? thanks Julian -- Echte DSL-Flatrate dauerhaft für 0,- Euro*. Nur noch kurze Zeit! "Feel free" mit GMX DSL: http://www.gmx.net/de/go/dsl