Re: [OT] Need Free database

2003-11-25 Thread Phil Shrimpton
On Tuesday 25 November 2003 14:38, Ramachandiran, Karuna wrote: Hi, > Can any buddy suggest me Database which is free and has JDBC driver. If > possible get me the URL. www.firebirdsql.org Phil - To unsubscribe,

Re: Problem in deploying struts app in production environment. Pls help

2003-11-22 Thread Phil Steitz
nt to define the controller servlet, and a element to establish which request URIs are mapped to this servlet. Use the WEB-INF/web.xml file from the Struts example application for a detailed example of the required syntax." Phil --

Re: struts 1.1 validation problem / question

2003-11-16 Thread Phil
) { ActionErrors errors = new ActionErrors(); if (getName().length() < 1) { errors.add(ActionErrors.GLOBAL_ERROR, new ActionError("form.error.name.required")); } return errors; } HTH Phil - Original Message - From: "Andreas Wuest" <[EMAIL PROTECTED]>

Re: Request scope for FormBeans does not work??

2003-11-13 Thread Phil
, so you dont have to specify it. HTH, Phil - Original Message - From: "Voinea, Marina" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, November 13, 2003 8:42 PM Subject: Request scope for FormBeans does not work?

Re: action-mappings, action not working

2003-11-13 Thread Phil
, ActionForm form, ServletRequest request, ServletResponse response) throws Exception { HTH, Phil - Original Message - From: "Ajay Kalidindi" <[EMAIL PROTECTED]> To: <[EMA

Re: Trouble redirecting

2003-11-05 Thread Phil
Hi Marcella, in the struts api there is an entry about the path attribute: The URL to which this entry points, which must start with a slash ("/") character. Phil - Original Message - From: "Marcella Turner" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: Forward attribute vs. ForwardAction

2003-11-05 Thread Phil
Hi Rick, thanks for your answer. But if you defined the forward attribute no instance of the ForwardAction is created. I checked the source code of the RequestProcessor. Phil - Original Message - From: "Rick Reumann" <[EMAIL PROTECTED]> To: "Struts Users Mailing Li

Re: Forward attribute vs. ForwardAction

2003-11-05 Thread Phil
feature does not work with the forward attribute this would be very helpful to me. Phil - Original Message - From: "Hubert Rabago" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, November 05, 2003 5:39 PM S

Re: Forward attribute vs. ForwardAction

2003-11-05 Thread Phil
another. So you dont have to write your own Action class to achieve a simple forward between two pages. So, i am confused why there is a extra prebuild class, if you get the same effect by using the forward attribute. regards, Phil - Original Message - From: "Ashish Sinha" <[EM

Forward attribute vs. ForwardAction

2003-11-05 Thread Phil
you use: or: So what is the benefit of the ForwardAction class? Thanks, Phil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Validator : date

2003-07-17 Thread Phil Shrimpton
rnStrict ..it works. Also, according to the docs I have, you don't need to supply the datePattern, as it will default to the locales short date format Phil -- 2:02pm up 92 days, 2:55, 1 user, load average: 0.02, 0.04, 0.01 ICQ: 760757 AIM: p

Validator : date

2003-07-17 Thread Phil Shrimpton
es.xml for the date valadation, line 12 (datePattern.length > 0)) { Any ideas? Phil -- 12:56pm up 92 days, 1:49, 1 user, load average: 0.34, 0.13, 0.05 ICQ: 760757 AIM: pjshrimpton Y!: pjshrimpton ---

Re: Where to build dropdown lists?

2003-07-15 Thread Phil Shrimpton
On Tuesday 15 July 2003 12:52, [EMAIL PROTECTED] wrote: Hi, > Another thing that I noticed when playing with the JavaScript pop ups was > that all the validator JavaScript, whether used or not is included in the > JSP code. I ende up with hundreds of lines of JavaScript, including date, > email a

Re: Web Page acess to struts-user archive?

2003-06-03 Thread Phil Steitz
Leander Jedamus wrote: Hi! Try http://marc.theaimsgroup.com/?l=apache-httpd-users&r=1&w=2 I think you meant http://marc.theaimsgroup.com/?l=struts-user&r=1&w=2 This archive seems to get updated very quickly. Am Montag, 2. Juni 2003 16:47 schrieb José Fortunato H. Tomás: Hi! Is there any Web P

Re: LDAP client API?

2003-04-02 Thread Phil Steitz
the Netscape LDAP Java SDK which is freely available (with source) at http://www.mozilla.org/directory/ Novell has also contributed an SDK to OpenLDAP, which you can find at http://www.openldap.org/ hth, Phil _ Add photos

Re: Does a degree matter?

2003-03-29 Thread Phil Steitz
hat I look for when I hire people. So...bottom line is that I would recommend pursuing a CS degree if a) you have a genuine interest in CS and b) you find a program that focuses on the foundations/fundamentals to avoid the pitfalls that Craig mentions above. -Phil --

Re: Use messages from ApplicationResource.properties for an e-mail

2003-03-25 Thread Phil Steitz
Internal: 48194 Mobile: 079.726.14.26 _ -Original Message- From: Phil Steitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 6:05 AM To: Struts Users Mailing List Subject: Re: Use messages from ApplicationResource.properties for an e-mail Raible, Matt wrote: I have a

Re: Use messages from ApplicationResource.properties for an e-mail

2003-03-25 Thread Phil Steitz
Raible, Matt wrote: I have a requirement to send a notification e-mail when an item in my app is deleted. I was hoping to use a string (post-substitution) from ApplicationResource.properties to do this, but alas, it does not work like I hoped. Is this possible without loading it as a ResourceBund

Re: case study with security

2003-03-23 Thread Phil Steitz
ends on your application and b) whatever you use, it has to be unique. The app that I took the example from enforces this. Phil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: case study with security

2003-03-23 Thread Phil Steitz
for admins -- is more flexible but a little more work to implement. hth, Phil Dan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Data driven struts application

2003-03-14 Thread Phil Steitz
essing the design of the "read-only view" are SQL properties files, how do you keep these consistent with the model expressed in the BOs/VOs for updates? I guess the best strategy depends on the expected lifetime and required extensibility of the application. Thanks again for the explana

Re: [Q] Use of DispatchAction with security concerns

2003-03-14 Thread Phil Steitz
Rick Reumann wrote: Someone e-mailed me privately the following question about security and the use of DispatchAction and a hidden variable. I'd appreciate any comments When using the dispatch action, you make use of a hidden variable to determine which method with be called. What happens

Re: Data driven struts application

2003-03-14 Thread Phil Steitz
I apologize if this has already been beaten to death, but I am still struggling with the implications of "dyna-stuff" on traditional OOD in struts applications. See interspersed. Craig R. McClanahan wrote: This is pretty much what RowSetDynaClass does for you, without the need to create clas

Re: [XEN] Simple question: forward and redirect

2003-03-14 Thread Phil Steitz
d into it) is not preserved. On the other hand, redirect gives you control over the destination URL. Search the archives for full discussion. hth, Phil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [THURSDAY] struts questions

2003-03-13 Thread Phil Steitz
Bueno Carlos M wrote: Hi, all -- I'm new to struts and I have a few questions. Since you are the experts I'm sure you will be able to help me. My boss wants to know how many people are using struts and how long it will take to build our application using struts as opposed to our current development

Re: [ANN] Struttin' With Struts beta (newbies esp. welcome)

2003-03-11 Thread Phil Steitz
Mark Zeltser wrote: Rick, Good job, somehow I can't unzip war files, I am getting corrupt zip file exception. Mark. Use jar -xf War files are jar files, not zips. Your JDK should include the jar utility in its /bin directory. Rick Reumann wrote: I created a web site that walks new Struts

Re: Session Management

2003-01-10 Thread Phil Steitz
Puneet Agarwal wrote: Session Management is required to achieve persistence. there are two manner in which persistence can be achieved. 1. storing the information in HTTP session (possibly in session scope) 2. Storing the information using stateful session beans. You can also use hidden fields

Re: Struts application & infrastructure choices

2002-12-14 Thread Phil Steitz
Craig R. McClanahan wrote: On Sat, 14 Dec 2002, David Graham wrote: Date: Sat, 14 Dec 2002 13:23:40 -0700 From: David Graham <[EMAIL PROTECTED]> Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: Struts application & infrastructure choices It should be

Re: Struts application & infrastructure choices

2002-12-14 Thread Phil Steitz
ce has been that all of the remote marshalling methods described above can deliver very fast performance, as long as your service interfaces are not ridiculous. Performance problems almost always trace back to model component implementation or back end resource (e.g. RDBMS) response time issues. -Ph

Re: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread Phil Steitz
David, Have you considered running some tests with Jmeter or some other testing tool that can tell you exactly how long it takes to deliver the HTML? This would enable you to determine whether the problem is on the server side or in the browser rendering. Regards, Phil -- To unsubscribe

Re: [OT] Memory Footprint of DynaX vs. BO

2002-11-02 Thread Phil Steitz
me applications. It certainly is. The point is that assuming best practices (e.g. efficient use of the framework and container, minimal server-side state, etc.) have been followed in design, it is generally best to focus first on optimizing throughput, IMHO. Regards, Phil Steitz You can

Re: How to add a pre-action

2002-10-21 Thread Phil Steitz
you link/forward to the pre-population action and then have the pre-population action set up the form bean and then forward to the input jsp. Hope this helps, Phil -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:s

Re: How to add a pre-action

2002-10-21 Thread Phil Steitz
tools available, I would recommend documenting your use cases and creating interaction diagrams similar to the ones in the article above. That way you will get a nice design and also a better understanding of the framework :-) hth, Phil type="com.hcl.smartmanage.web.

Re: How to add a pre-action

2002-10-20 Thread Phil Steitz
ng with your jsp. Check your container logs. I'm off to try harder... thanks! HM On 20 Oct 2002 at 10:10, Phil Steitz wrote: Howard Miller wrote: I think I'm seriously missing the point here! I have looked at the example application in some detail and it appears to add a parame

Re: How to add a pre-action

2002-10-20 Thread Phil Steitz
(automatically created) BookSearchForm for the book search input form (bookSearch.jsp) to use. The key concept is that instead of linking/forwarding to the input jsp directly, you link/forward to the pre-population action and then have the pre-population action set up the form bean and then forwa

Re: Struts Tag Request

2002-10-12 Thread Phil Steitz
Craig R. McClanahan wrote: > > On Fri, 11 Oct 2002, David Graham wrote: > > >>Date: Fri, 11 Oct 2002 11:15:06 -0600 >>From: David Graham <[EMAIL PROTECTED]> >>Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> >>To: [EMAIL PROTECTED] >>Subject: RE: Struts Tag Request >> >>I'm not s

Re: Alternative Datsource Hot-potatoing...

2002-09-06 Thread Phil Steitz
Starting to look a lot like JNDI...(pronounced "Gin-dy", sung to a familiar tune) Seriously, look again at Craig M's option 3 -- if your container supports it, the lookup and implementation abstraction can be handled for you. Craig Tataryn wrote: > > >> From: "Craig R. McClanahan" <[EMAIL P

Re: [OT] Request Certificates/Security

2002-09-06 Thread Phil Steitz
ill just push identity info to the browser. > > | -Original Message- > | From: Phil Steitz [mailto:[EMAIL PROTECTED]] > | Sent: Friday, September 06, 2002 2:41 PM > | To: Struts Users Mailing List > | Subject: Re: [OT] Request Certificates/Security > | > | Jacob, &g

Re: [OT] Request Certificates/Security

2002-09-06 Thread Phil Steitz
your tokens are valid for an hour, then privilege revocation can take up to an hour to become effective. hth, Phil Jacob Hookom wrote: > I know I beat security like a dead horse, but > > If my app generates a menu specific to the user, i.e., a project list > that they bel

Re: how do I integrate struts with container managed security?

2002-09-05 Thread Phil Steitz
administrator reader In struts-config: ls hth, Phil > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROT

Re: How to Build error messages dynamically??

2002-08-25 Thread Phil Steitz
referenced in your jsp and there are no other problems in the jsp 2. Add some logging to verify that the ActionErrors constructor is getting the actual parameters that you think it is getting 3. Add logging to verify that the saveErrors is getting executed hth, Phil -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: forms, security,read only fields,autopopulation

2002-08-03 Thread Phil Steitz
main point -- the set of accounts associated with a logged in user should in no case (other than account enrollment) be modifiable by the user. Just my -- admitedly conservative -- opinion. Phil Steitz > > > >-- >To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> >For addi

Re: architecture question

2002-08-02 Thread Phil Steitz
you can either cultivate the necessary resources in-house or get outside help. Check out http://jakarta.apache.org/struts/resources/consultants.html. hth, Phil Steitz > > >On Sat, 10 Nov 2001, Sandeep Takhar wrote: > >>Date: Sat, 10 Nov 2001 07:36:36 -0800 (PST) >>F

Re: problem

2002-06-20 Thread Phil Steitz
Look at your servlet engine log (servlet.log if you are using Tomcat with the default setup). Most likely the ActionServlet associated with your web app is not loading because the data source initialization is failing. The mappings aren't there because the initialization failed. The error messa

RE: You suck! No, You suck!

2002-05-02 Thread HERSHKOWITZ,PHIL (A-Sonoma,ex1)
Craig & All, The fragment below from Craig is a great clear answer - and it came out of Craig's knowledge, AND James's knowledge and Micael's stubbornness - altogether a good team effort. How about a beer and a group hug :) Regards, Phil > I don't know anything sp

RE: Automatic way of transferring to login screen - Ryan Norman

2002-03-28 Thread HERSHKOWITZ,PHIL (A-Sonoma,ex1)
Hi Ryan, Check out the example application struts-example.war which is in the current struts distribution. Each JSP page uses the custom tag to determine if a user is logged in. If not, the user is redirected to a login page. Phil > -Original Message- > From: Ryan Norman [

RE: How to Pre-fill a formbean - correction

2002-03-15 Thread HERSHKOWITZ,PHIL (A-Sonoma,ex1)
vac] [javac] [javac] [javac] 36. mainForm.setProperty1("Dog"); [javac]<---> [javac] [javac] *** Syntax: Unexpected symbol ignored Phil > -Original Message- > From: HERSHKOWITZ,PHIL (A-Sonoma,ex

RE: How to Pre-fill a formbean

2002-03-15 Thread HERSHKOWITZ,PHIL (A-Sonoma,ex1)
Form.setProperty1("Dog"); [javac]<---> [javac] [javac] *** Syntax: Unexpected symbol ignored Am I missing something obvious in struts or am I missing something obvious about java (or more likely both :) What code do I have to include to "trig

RE: How to Pre-fill a formbean

2002-03-14 Thread HERSHKOWITZ,PHIL (A-Sonoma,ex1)
Hi, >From the loginAction, I am calling the database to retrieve default values for some of the fields the use must fill out on mainAction.jsp. The default values depend on the user ID. Phil > -Original Message- > From: John Menke [mailto:[EMAIL PROTECTED]] > Sent: Thursd

RE: How to Pre-fill a formbean

2002-03-14 Thread HERSHKOWITZ,PHIL (A-Sonoma,ex1)
mainForm. Thanks, Phil > -Original Message- > From: Jay sissom [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 14, 2002 6:12 PM > To: Struts Users Mailing List > Subject: Re: How to Pre-fill a formbean > > > The form bean has already been created by the time yo

RE: Newbie question. Can action mappings intercept requests that are not part of forms?

2002-03-08 Thread Phil Rice
Thank you, that solved the problem Phil Rice -Original Message- From: Kanoza, Douglas (NCI) [mailto:[EMAIL PROTECTED]] Sent: 07 March 2002 21:23 To: 'Struts Users Mailing List' Subject: RE: Newbie question. Can action mappings intercept requests that are not part of forms?

Newbie question. Can action mappings intercept requests that are not part of forms?

2002-03-07 Thread Phil Rice
a way to intercept a hypertext link, rather than a post? Thanks Phil Rice

bean:message as content of template:put tag

2002-02-26 Thread Phil Miller
nd to this problem? index.jsp. 1. <%@ taglib uri='/WEB-INF/struts-template.tld' prefix='template' %> 2. <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> 3. 4. 5. 6. 7. 8. Any help would be greatly appreciated, Phil

RE: ActionError problem

2002-01-29 Thread Phil Maher
Do you have error.noCurrentObject in your ApplicationResources.properties file? In your struts config, if there is a validate=true then there needs to be and input= cheers, Phil Maher -Original Message- From: Bryan P. Glennon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002

Anyone using STUTS with Webgain's Visual Cafe?

2002-01-04 Thread Phil Jackson
Just wondering if anyone has setup a STRUTS project template in Visual Cafe? Thanks! Phillip Jackson Programmer/Analyst Enterprise Data Warehouse -- To unsubscribe, e-mail: For additional commands, e-mail:

Tiles, ActionComponentServlet, WebLogic 6.0sp1, NoSuchMethodError

2001-11-13 Thread Phil Maher
I'm having a problem replacing the struts 'ActionServlet' with tiles 'ActionComponentServlet', I keep getting this exception (using WebLogic 6.0sp1) : -=-=- Error loading servlet: 'action' java.lang. NoSuchMethodError at org.apache.commons.digester.Digester.getReader(Digester.java:527) at org.ap

Imbedding tags in a tag

2001-07-12 Thread Phil Maher
Hi, I've having the problem of embedding tags in a tag. For example, If I have the line: " /> Where the below is in ApplicationResources.properties: project.nsync.Header.alt=Welcome Header Logo Does anyone know how to do this?

RE: resin and struts example

2001-04-26 Thread Phil DiCorpo
you mentioned.   Thanks, Phil     Phillip DiCorpoSoftware Engineer  SkyGo, Inc.1235 Radio Road1st FloorRedwood City, CA 94065    (650) 232-1192 Direct(650) 232-1100 Main(650) 232-1200 Fax[EMAIL PROTECTED]   -Original Message-From: Tharw

resin and struts example

2001-04-26 Thread Phil DiCorpo
(Thread.java:484) It seems like this should be a no brainer to get the web app example working. Can anyone point me in the right direction?Thanks,Phil   Phillip DiCorpoSoftware Engineer  SkyGo, Inc.1235 Radio Road1st FloorRedwood City, CA 94065    (650) 232

Jetspeed on Struts? Sillly question?

2000-11-22 Thread Phil Grimm
eases from the Jetspeed team could be done easily? Some portability hooks? Would the struts team be willing to consider adjusting struts to facilitate this? Anyone know of any alternative Portal capability that can be run on struts? Thanks, Phil Grimm

RE: newbie question regarding performance

2000-10-26 Thread Phil Grimm
Scott, Even though you have one servlet, each request is serviced in the context of a seperate thread. So, I don't see any reason why having multiple servlets would help you with scalability. Phil -Original Message- From: Sayles, Scott SAXONHQ [mailto:[EMAIL PROTECTED]] Sent: Thu

Re: can't create action instance

2000-10-20 Thread Phil Windley
ontexts. Will I see more of an error message than the one listed below if there's a run time error in the action class? --phil-- On Fri, 13 Oct 2000 23:26:27 -0400 Robert Leland writes + | Welcome to the club ! :( I think I have found atleast 8 | different ways to mess