RE: Struts & SSL (SSLEXT)

2005-08-13 Thread Albrecht Leiprecht
I will answer myself to have answers in the mailing list archive for the ones to come after me ;) >do I understand that correct, that in order to use SSLEXT, I have to use a >specialized Version of RequestProcessor? Yes, as this RequestProcesser checks in processPreprocess if the current request

Struts & SSL (SSLEXT)

2005-08-13 Thread Albrecht Leiprecht
Hi all, do I understand that correct, that in order to use SSLEXT, I have to use a specialized Version of RequestProcessor? What if I use Tiles? Or worse, what if I extended TilesRequestProcessor (processRoles)? Does that mean I'm screwed now? Any other ways/means of using SSL (selectively)?

Re: Configure URL

2005-08-13 Thread Nafise Dianatizade
http://localhost:8080/yourLoginActionName.do __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: actionForm class

2005-08-13 Thread Nafise Dianatizade
at the whole you need a DTO(Data Transfer Object) for transferring the student fetched data to the jsp page. So you could specify an object for this purpose or use your predefine actionForm object. you could use bean:write for both specified DTO and ActionForm object to display the information

RE: Displaying errors for all except one key

2005-08-13 Thread Chris Loschen
My Google research leads me to believe that I'm using old, deprecated constants here. I've known for a while that the app will eventually need to replace ActionError with ActionMessage and so on, but haven't had the time to work on it. Is that what validator is doing and perhaps that's why I'm seei

weird message problem

2005-08-13 Thread Werner Punz
Hi I am trying to add a simple error handler to a form with a message upon an error condition, so far it works, some kind of message arrives but I get a weird error, here are the relevant code snippets: the part where the error is added: ActionMessages errors = new ActionMessage

[OT] Reasonable implementation time guesstimates

2005-08-13 Thread Dave Newton
Heya, This is Struts-related because I'm using Struts, other than that it's more of a project management thing. I am not a project manager; I pretty much suck at anything smelling even slightly of management, and I hate most everything about project management. That said, I'm trying to figur

Converting Enums

2005-08-13 Thread Niall McLoughlin
I hope this is the right place to ask this question. Let's say I have the following class (using jdk 1.5): public enum UserType { MANAGER, SUPERVISOR, USER; } I can build a List of these types to display in an options tag easily enough: public List getUserTypes() thr

Displaying errors for all except one key

2005-08-13 Thread Chris Loschen
Hi all, The app I'm working on (using Struts 1.1) has handled errors pretty simply: they all used to display in one place. However, now we want to display some errors separately. We've already set up the errors we want to display separately with their own key, like this: errors.ad

Converting Enums

2005-08-13 Thread Niall McLoughlin
I hope this is the right place to ask this question. Let's say I have the following class (using jdk 1.5): public enum UserType { MANAGER, SUPERVISOR, USER; } I can build a List of these types to display in an options tag easily enough: public List getUserTypes() throws Exception { List i

Re: [OT] Struts and VoiceXML - Any stories to tell?

2005-08-13 Thread Ted Husted
Oops, subject imprecise: /s/XML/VoiceXML/ ... thanks for the replies so far, gang. On 8/12/05, Ted Husted <[EMAIL PROTECTED]> wrote: > A colleague is looking to add VoiceXML capabilities to their Struts > consumer-to-business application. > > I don't see any prior references to VoiceXML in t

Re: [OT] Struts and XML - Any stories to tell?

2005-08-13 Thread Rahul Akolkar
On 8/12/05, Ted Husted <[EMAIL PROTECTED]> wrote: > A colleague is looking to add VoiceXML capabilities to their Struts > consumer-to-business application. > > I don't see any prior references to VoiceXML in the archives, just > this one aside: > > * http://www.mail-archive.com/user@struts.apache

Re: actionForm class

2005-08-13 Thread Richard Yee
Balkan, The values retrieved from the database don't need to be put into an ActionForm. Just put the collection or bean as a session or request attribute in your Action class, forward to your second page, and then retrieve the values and display them. There is no need to have an ActionForm ass

Re: actionForm class

2005-08-13 Thread Sebastian Hennebrueder
Balkan Guler schrieb: >Hello. > There is something I could not understand with actionForms. > Suppose that I have 2 pages and a action. >In first page I want to take student number and call the business objects in >action to fetch the student details from database and show them in the >second p

actionForm class

2005-08-13 Thread Balkan Guler
Hello. There is something I could not understand with actionForms. Suppose that I have 2 pages and a action. In first page I want to take student number and call the business objects in action to fetch the student details from database and show them in the second page. there is a studentNumbe