Re: login test in a jsp page - any suggestions

2003-08-27 Thread Emerson Cargnin
isn't it should be better to put his verification at actions? maybe a common super action could validade it, but I think that the jsp should be the last place to put it. Ideally, the jsp's are not even exposed to clients, making the access the view only through actions. David Thielen wrote:

RE: login test in a jsp page - any suggestions

2003-08-27 Thread Cezar Nasui
-Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 4:16 PM To: Struts-Users Subject: login test in a jsp page - any suggestions Hi; I want to put a test in every jsp page to see if the user is logged in. And if not, to forward them

Re: login test in a jsp page - any suggestions

2003-08-27 Thread David Thielen
a unique test and forward to. Any good ideas for this situation? thanks - dave - Original Message - From: Cezar Nasui [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 6:56 PM Subject: RE: login test in a jsp page - any suggestions Hi

RE: login test in a jsp page - any suggestions

2003-08-27 Thread Pady Srinivasan
I would do this using Servlet Filters. Thanks -- pady [EMAIL PROTECTED] -Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 11:03 PM To: Struts Users Mailing List Subject: Re: login test in a jsp page - any suggestions How can I set

RE: login test in a jsp page - any suggestions

2003-08-27 Thread Yee, Richard K,,DMDCWEST
on your forms. -Richard -Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 8:03 PM To: Struts Users Mailing List Subject: Re: login test in a jsp page - any suggestions How can I set things up so people can't get to a jsp page? I can set

Re: login test in a jsp page - any suggestions

2003-08-27 Thread Emerson Cargnin
Subject: Re: login test in a jsp page - any suggestions isn't it should be better to put his verification at actions? maybe a common super action could validade it, but I think that the jsp should be the last place to put it. Ideally, the jsp's are not even exposed to clients, making the access

login test in a jsp page - any suggestions

2003-08-26 Thread David Thielen
Hi; I want to put a test in every jsp page to see if the user is logged in. And if not, to forward them to login.jsp. Is there any way to do this other than putting java code in my jsp? I'm hoping there is some struts system like html:check app=MyAction/. (Yes, I can have everything be an

RE: login test in a jsp page - any suggestions

2003-08-26 Thread Pady Srinivasan
Why not use a servlet filter ? Thanks -- pady [EMAIL PROTECTED] -Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 4:16 PM To: Struts-Users Subject: login test in a jsp page - any suggestions Hi; I want to put a test in every jsp page

Re: Suggestions for Calendar Popup taglib?

2003-08-19 Thread Adam Hardy
On 08/19/2003 12:29 AM Edgar Dollin wrote: One of the problems I had with some struts tags, i.e. html:options, is that there is a repetitive download of the same text. In large pages, especially nested pages, the size of the html becomes excessive, which of course is aggravated by the tendency of

RE: Suggestions for Calendar Popup taglib?

2003-08-19 Thread Edgar Dollin
, August 19, 2003 2:01 AM To: 'Struts Users Mailing List' Subject: Re: Suggestions for Calendar Popup taglib? I'm not totally clear what you mean by 'multiple downloads' but with the validator html:javascript tag, you can set the static javascript to false and instead use a script link

AW: Suggestions for Calendar Popup taglib?

2003-08-19 Thread Ralf E. Stranzenbach
: Suggestions for Calendar Popup taglib? I'm going to have some free time soon and I plan to convert my calendar popup javascript (http://www.mattkruse.com/javascript/calendarpopup) into a tag lib to be easily used in struts apps. If anyone has suggestions on how it should work or features

Suggestions for Calendar Popup taglib?

2003-08-18 Thread Kruse, Matt
I'm going to have some free time soon and I plan to convert my calendar popup javascript (http://www.mattkruse.com/javascript/calendarpopup) into a tag lib to be easily used in struts apps. If anyone has suggestions on how it should work or features it should support, please let me know! Also

Re: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Vic Cekvenich
and I plan to convert my calendar popup javascript (http://www.mattkruse.com/javascript/calendarpopup) into a tag lib to be easily used in struts apps. If anyone has suggestions on how it should work or features it should support, please let me know! Also, should it be extending the struts

Re: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Sgarlata Matt
it comes to GUI widgets :) Matt Kruse, Matt wrote: I'm going to have some free time soon and I plan to convert my calendar popup javascript (http://www.mattkruse.com/javascript/calendarpopup) into a tag lib to be easily used in struts apps. If anyone has suggestions on how it should work or features

Re: Suggestions for Calendar Popup taglib?

2003-08-18 Thread vellosa
that are highlighted differently/disabled. from:Sgarlata Matt [EMAIL PROTECTED] date:Mon, 18 Aug 2003 16:35:30 to: [EMAIL PROTECTED] subject: Re: Suggestions for Calendar Popup taglib? I think that's a great idea... thanks :) I think it'd be cool if you included your color

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Paananen, Tero
I would also suggest that you make your classes very easy to extend so people can plug in their own calendar implementations. You know how it is, people are picky when it comes to GUI widgets :) +1 :) My #1 pet peeve about custom taglibs are that almost none of them have been designed with

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Kruse, Matt
When we implemented out calendar one of the things we needed to do was make holiday dates unchoosable. So I'm not allowd to make a booking on 25th Dec etc. It might be worth thinking of some way in which you can pass in a collection of dates that are highlighted differently/disabled.

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Yansheng Lin
to convert my calendar popup javascript (http://www.mattkruse.com/javascript/calendarpopup) into a tag lib to be easily used in struts apps. If anyone has suggestions on how it should work or features it should support, please let me know! Also, should it be extending the struts html:input

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Matt Raible
://www.mattkruse.com/javascript/calendarpopup) into a tag lib to be easily used in struts apps. If anyone has suggestions on how it should work or features it should support, please let me know! Also, should it be extending the struts html:input tag, or since those will one day go away

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Kruse, Matt
Does this mean it'll write JS for the popup calendar too? Yes, definitely. I might include the full JS source as a tag too, so you could just do mk:calendar-src/ at the top of your page and all the required library source would be written out. Or you could manually link to the libraries. Not

Re: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Sgarlata Matt
Ack! Too many Matts ;) More comments below... Matt Raible wrote: Cool Matt - I've always loved you pop-up calendar. Does this mean it'll write JS for the popup calendar too? I like the div version - which requires a hidden div and such - so I hope you'll incorporate this. Maybe something

Re: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Robert Leland
Paananen, Tero wrote: I would also suggest that you make your classes very easy to extend so people can plug in their own calendar implementations. You know how it is, people are picky when it comes to GUI widgets :) +1 :) My #1 pet peeve about custom taglibs are that almost none of them

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Kruse, Matt
PROTECTED] Sent: Monday, August 18, 2003 9:56 AM To: Struts Users Mailing List (E-mail) Subject: Suggestions for Calendar Popup taglib? Importance: High I'm going to have some free time soon and I plan to convert my calendar popup javascript (http://www.mattkruse.com/javascript

Re: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Emerson Cargnin
to me, if anyone can point me somewhere. Thanks! Matt -Original Message- From: Kruse, Matt [mailto:[EMAIL PROTECTED] Sent: Monday, August 18, 2003 9:56 AM To: Struts Users Mailing List (E-mail) Subject: Suggestions for Calendar Popup taglib? Importance: High I'm going to have some free time

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Edgar Dollin
: Kruse, Matt [mailto:[EMAIL PROTECTED] Sent: Monday, August 18, 2003 10:56 AM To: 'Struts Users Mailing List (E-mail)' Subject: Suggestions for Calendar Popup taglib? I'm going to have some free time soon and I plan to convert my calendar popup javascript (http://www.mattkruse.com/javascript

RE: Suggestions for Calendar Popup taglib?

2003-08-18 Thread Craig R. McClanahan
On Mon, 18 Aug 2003, Kruse, Matt wrote: Date: Mon, 18 Aug 2003 17:09:16 -0400 From: Kruse, Matt [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: Suggestions for Calendar Popup taglib? In working

Starting point for a little test app (was: Suggestions for Calendar Popup taglib?)

2003-08-18 Thread Van Riper, Mike
In working on this, I've come up with a couple of things that would be very handy to have: 1) A simple dummy struts app which would be ready for me to plugin my taglib to test. I know that creating a little app won't take long, but a nice little starting point would be convenient.

Suggestions

2003-07-21 Thread Saman Ghodsian
-Original Message- From: Saman Ghodsian [mailto:[EMAIL PROTECTED] Sent: Saturday, July 19, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: Suggestions Hi everyone, I just completed phase one of my project which is the development and testing of my business model. some

Re: Suggestions

2003-07-21 Thread Jing Zhou
] To: [EMAIL PROTECTED] Sent: Monday, July 21, 2003 11:59 AM Subject: Suggestions -Original Message- From: Saman Ghodsian [mailto:[EMAIL PROTECTED] Sent: Saturday, July 19, 2003 10:43 AM To: 'Struts Users Mailing List' Subject: Suggestions Hi everyone, I just completed phase

Suggestions

2003-07-19 Thread Saman Ghodsian
Hi everyone, I just completed phase one of my project which is the development and testing of my business model. some 120 classes, now I'm evaluating options to implement my front end. I've been looking at struts as an option, but I still have some concerns about how to go about it. I'm

Re: Representing a 1-m relationship. Any suggestions to the best ap proach?

2003-07-02 Thread Sandeep Takhar
determines whether to call insert() or update() on my persistence layer. I think I need a Workflow type class where a method Save() will determine whether to call insert() or update(). So, any comments of my current approach? Suggestions for improvements? Thanks Shane Shane Mingins

Re: Representing a 1-m relationship. Any suggestions to the best approach?

2003-07-02 Thread gfaerman
] 02/07/2003 04:34 p.m. Please respond to Struts Users Mailing List [EMAIL PROTECTED] To Struts Users Mailing List [EMAIL PROTECTED] cc Subject Re: Representing a 1-m relationship. Any suggestions to the best ap proach? I would suggest getting a copy of Struts in Action and reading about

Representing a 1-m relationship. Any suggestions to the best approach?

2003-07-01 Thread Shane Mingins
classes that I do not like, for example the Save determines whether to call insert() or update() on my persistence layer. I think I need a Workflow type class where a method Save() will determine whether to call insert() or update(). So, any comments of my current approach? Suggestions

Re: Representing a 1-m relationship. Any suggestions to the best ap proach?

2003-07-01 Thread Martin Naskovski
() or update() on my persistence SM layer. I think I need a Workflow type class where a method Save() will SM determine whether to call insert() or update(). SM So, any comments of my current approach? SM Suggestions for improvements? SM Thanks SM Shane SM Shane Mingins SM Analyst Programmer SM Assure

application configuration suggestions

2003-03-09 Thread Rob
I have a number of variables I would like to specify to my application at startup time. I was wondering what the best method to do this is? Does struts provide any facilities related to this? An example of a configuration value would be that I want to be able to specify the location of a set of

AW: application configuration suggestions

2003-03-09 Thread Roland Berger
- Von: Rob [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 9. März 2003 13:23 An: [EMAIL PROTECTED] Betreff: application configuration suggestions I have a number of variables I would like to specify to my application at startup time. I was wondering what the best method to do this is? Does struts

RE: Any good suggestions on implementing Security

2003-02-13 Thread Tony Baity
Feb 2003 09:57:38 -0600 From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List To: Struts Users Mailing List Subject: RE: Any good suggestions on implementing Security Depending on the container, your groups and group memberships can be dynamically mapped to roles, with declarative

RE: Any good suggestions on implementing Security

2003-02-13 Thread Rob Kischuk
good suggestions on implementing Security Craig, Would you by any chance know anyone/anyproduct that instead of using JDBCRealm has create a SOAPRealm where the user data is available via a web service instead of a database? Craig R. McClanahan [EMAIL PROTECTED] wrote: On Wed, 12 Feb 2003

RE: Any good suggestions on implementing Security

2003-02-13 Thread Mark Galbreath
Get a Pit Bull. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Any good suggestions on implementing Security

2003-02-13 Thread Dan Tran
This cracks me up and it is not Friday yet!!! Thanks to Mark - Original Message - From: Mark Galbreath [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, February 13, 2003 9:04 AM Subject: RE: Any good suggestions on implementing Security Get a Pit

Re: Any good suggestions on implementing Security

2003-02-13 Thread Aaron Oathout
] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, February 13, 2003 9:04 AM Subject: RE: Any good suggestions on implementing Security Get a Pit Bull. - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: Any good suggestions on implementing Security

2003-02-12 Thread Rob Kischuk
+1 on the ServletFilter approach. Even better if you can get container managed security to meet your needs. Depending on the container, your groups and group memberships can be dynamically mapped to roles, with declarative specification of what resources can be accessed. This approach is optimal

RE: Any good suggestions on implementing Security

2003-02-12 Thread Jeff_Mychasiw
Depending on the container, your groups and group memberships can be dynamically mapped to roles, with declarative specification of what resources can be accessed. Is this the case with tomcat? I did not think so. Our needs our very similar. The users with a admin page that allows them to

RE: [OT] Any good suggestions on implementing Security

2003-02-12 Thread Rob Kischuk
Depending on the container, your groups and group memberships can be dynamically mapped to roles, with declarative specification of what resources can be accessed. Is this the case with tomcat? I did not think so. Our needs our very similar. The users with a admin page that allows them to

RE: Any good suggestions on implementing Security

2003-02-12 Thread Mingfai Ma
Is there an area I can look that suggests how to implement this type of dynamic security with a servlet filter? i think the best source of reference material is Chapter 12 (Security) of the Servlet specification. There should be many other source of information on web, just go to google to

RE: Any good suggestions on implementing Security

2003-02-12 Thread Donald Dwoske
look at the code as a domain example. -Original Message- From: Mingfai Ma [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 11:25 AM To: Struts Users Mailing List Subject: RE: Any good suggestions on implementing Security Is there an area I can look that suggests how

RE: Any good suggestions on implementing Security

2003-02-12 Thread Craig R. McClanahan
On Wed, 12 Feb 2003 [EMAIL PROTECTED] wrote: Date: Wed, 12 Feb 2003 09:57:38 -0600 From: [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: Any good suggestions on implementing Security Depending

Suggestions/best practices for accessing the same page/view from different locations within the application/workflows...

2003-02-10 Thread Davide Bruzzone
Greetings all... I just wanted to find out if anyone has any suggestions or best practices gained from experience with regard to accessing the same page from different locations within the application/workflows... Here's the scenario: 1) I have a page called MyPage. 2) Its possible to access

RE: Suggestions/best practices for accessing the same page/view from different locations within the application/workflows...

2003-02-10 Thread Joe Barefoot
To: 'Struts Users Mailing List' Subject: Suggestions/best practices for accessing the same page/view from different locations within the application/workflows... Greetings all... I just wanted to find out if anyone has any suggestions or best practices gained from experience with regard

Re: suggestions for multiple entries - One submit?

2002-02-12 Thread STEVE WILKINSON
Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: suggestions for multiple entries - One submit? Date: Mon, 11 Feb 2002 10:07:22 -0700 Hello everyone. I have a JSP page that allows the user to entry multiple rows of information, for example: Employee

suggestions on tracking user activity

2001-10-18 Thread Bill G
Hi, Given that each user in the application has a unique ID and each link, button, etc. on every page also has a uniques ID, what would be a good way to track all user activity with MANY simultaneous users in a Struts/EJB environment ? Bill G...

RE: suggestions on tracking user activity

2001-10-18 Thread Mikkel Bruun
You should probably look into the new servlet filters (spec2.3)..been toying with them for a months... using a filter should easily solve your problem... mikkel -Original Message- From: Bill G To: [EMAIL PROTECTED] Sent: 18-10-2001 21:01 Subject: suggestions on tracking user activity

Any suggestions Prob with validation be passing to db

2001-09-25 Thread Chuck Amadi
When the Submit.jsp form is complete it is passed to the ProcessForm.jsp (Inserted to db) Thus i have created a UserInfoValid.jsp as below. I now that i should'nt use script albeit i need something to demostrate my keep. jsp:useBean id=planBean scope=session class=PlanBean / jsp:setProperty

Re: Ant problem - but getting closer any suggestions on snippet

2001-07-16 Thread Chuck Amadi
to place the build.xml file in my Netbeans dir as apparently the -find option will look for the build.mxl file in thecurrent directory and thus towards the root dir. Thus my dos-prompt does not have a build.xml file eventhough there is a build file in the same folder. Any Suggestions cheers Chuck

RE: Ant problem - but getting closer any suggestions on snippet

2001-07-13 Thread Matthew Osborn
. Ant is awfully cool. Have fun. Matthew Osborn -Original Message- From: Chuck Amadi [mailto:[EMAIL PROTECTED]] Sent: Friday, July 13, 2001 5:26 AM To: [EMAIL PROTECTED] Subject: Ant problem - but getting closer any suggestions on snippet Hi , getting closer i cd to C:\cd:\ant C:\antant

RE: Any more suggestions (Action Classes) WON'T COMPILE.

2001-07-10 Thread Gogineni, Pratima
CTED]]Sent: Tuesday, July 10, 2001 7:31 AMTo: Craig R. McClanahanSubject: Any more suggestions (Action Classes) WON'T COMPILE.Hi all , well i have tried everthing in the book/doc's to no avail, I would like to know that say for instance if one declare a full classpath name i.e package c

Re: Any more suggestions (Action Classes) WON'T COMPILE.

2001-07-10 Thread Peter Alfors
It looks as though you named the file ActionMapping.java when it should be ApplicationMapping.java. The file name must be the same as the class name. HTH, Pete Chuck Amadi wrote: Hi all , well i have tried everthing in the book/doc's to no avail, I would like to know that say for

problems with dbtags any suggestions!!

2001-06-12 Thread Chuck Amadi
Hi , can anyone desiphon this error message i have explored all the config's ie tld's,taglib> xml and declartions.Any suggestions .The jsp in questions as below not that i have exstablished a connection but the package was beaneath my tomcat container /WEB-INF.as opposed to my struts-bbnpa (

RE: problems with dbtags any suggestions!!

2001-06-12 Thread Darryl Pentz
: [EMAIL PROTECTED]Subject: problems with dbtags any suggestions!!Hi , can anyone desiphon this error message i have explored all the config's ie tld's,taglib xml and declartions.Any suggestions .The jsp in questions as below not that i have exstablished a connection but the package

Re: problems with dbtags any suggestions!!

2001-06-12 Thread Chuck Amadi
Cheers Darryl . Darryl Pentz wrote: Part 1.1Type: Plain Text (text/plain) Encoding: 8bit -- The views expressed by the sender of this message don't necessarily represent those of Brecon Beacons National Park Authority. This message is intended for the addressee(s) only and

Re: problems with dbtags any suggestions!!

2001-06-12 Thread Chuck Amadi
Hi , my original attempt i placed the dbtags.jar in the /WEB-INF/lib of tomcat containers webapps(application server) and this worked fine albiet my struts-bbnpa is my working web application that is beneath web apps as described and i have all my prototype's jsp's , css etc and is getting to

Re: problems with dbtags any suggestions!!

2001-06-12 Thread Chuck Amadi
Hey this so called struts.jar or dbtags.jar should be copied into the /WEB-INF/lib dir of my web applicatio but what if im hosting a few struts based app's on to same tomcat (servlet) container i have read this can cause the ClassNotFoundException problem unless all my application classes are

Suggestions for Struts 1.1 TODO LIST ---- Request Filtering technology for Struts

2001-05-23 Thread Nanduri, Amarnath
indicates that no filtering is to be implemented. Any comments / suggestions are welcome. cheers, Amar..

Workflow Status and suggestions

2001-02-19 Thread Don Elliott
Hi Struts Users, I'm wondering how development of the 1.1 release of struts is coming along, specifically the enhancements to actions.xml / dtd to allow workflow processing ? (do we have a dtd / sample xml file, etc) I've been thinking about this from an internationalization perspective

Re: Workflow Status and suggestions

2001-02-19 Thread Craig Tataryn
Hi Don. Nic Hobbs and I have stepped forward to head up the work flow processing enchancements to struts. Serious work on this (as far as implementation goes) will probably not start until mid to late April (that's when my schedule allows for it), but planning and design will be going on in the

Re: Workflow Status and suggestions

2001-02-19 Thread Maya Muchnik
Don, You can find an example how to use different JSP-files corresponding to different languages (changed on-line) in a component project (http://www.lifl.fr/~dumoulin/components/). Maya Craig Tataryn wrote: Hi Don. Nic Hobbs and I have stepped forward to head up the work flow processing