RE: Can V in MVC be Swing in Struts?

2002-10-18 Thread Kevin A. Smith
should not mis-lead the people who asked the questions here. --- Kevin A. Smith [EMAIL PROTECTED] wrote: What do you hope to accomplish by badgering people? It seems to me that Craig answered your question in more than adequate detail. --Kevin -Original Message- From: Xue-Feng

RE: Can V in MVC be Swing in Struts?

2002-10-18 Thread Kevin A. Smith
What part of writing serialized VO objects to the raw ServletOutputStream is confusing to you? You still have to set the mime-type in the header correctly because you're using HTTP, but other than that, its pure serialized objects. --Kevin -Original Message- From: Xue-Feng Yang

RE: Can V in MVC be Swing in Struts?

2002-10-18 Thread Kevin A. Smith
What do you hope to accomplish by badgering people? It seems to me that Craig answered your question in more than adequate detail. --Kevin -Original Message- From: Xue-Feng Yang [mailto:just4look;yahoo.com] Sent: Thursday, October 17, 2002 1:52 PM To: Struts Users Mailing List Subject:

RE: [OT] Tomcat not extracting war

2002-10-18 Thread Kevin A. Smith
We had a very similar problem at my office. Turns out that Tomcat _really_ does not like WAR files that are missing their manifests. You might take a look at that. . . --Kevin -Original Message- From: Mark Silva [mailto:msilva;authenex.com] Sent: Friday, October 18, 2002 1:34 PM To:

RE: [OT] Getting a Collection's size in JSTL

2002-10-30 Thread Kevin A. Smith
This also seems like a good place to use a DynamicProxy. Since most all of the Java Collections package is interfaced base, this seems like it might be an elegant solution. --Kevin -Original Message- From: David Graham [mailto:dgraham1980;hotmail.com] Sent: Wednesday, October 30, 2002

RE: [OT] Getting a Collection's size in JSTL

2002-10-30 Thread Kevin A. Smith
] Sent: Wednesday, October 30, 2002 4:35 PM To: [EMAIL PROTECTED] Subject: RE: [OT] Getting a Collection's size in JSTL What is a DynamicProxy? We may be talking about the same pattern with different names. David From: Kevin A. Smith [EMAIL PROTECTED] Reply-To: Struts Users Mailing List

RE: [OT] Getting a Collection's size in JSTL

2002-10-30 Thread Kevin A. Smith
, CollectionInfo.class }, handler); request.setAttribute(collectionProxy, proxy); Which may not be horrible if you're using a servlet or Action, but how would you use it in a JSP-only situation? Quoting Kevin A. Smith [EMAIL

RE: [OT] Weblogic

2002-11-05 Thread Kevin A. Smith
Recompile your code with debug turned on javac -g and you'll get line numbers. --Kevin -Original Message- From: Gus Delgado [mailto:gdelgado;oceanobjects.com] Sent: Tuesday, November 05, 2002 1:51 PM To: Struts Users Mailing List Subject: Weblogic I have a weblogic question, How do I

RE: Struts in CMS ?

2002-11-19 Thread Kevin A. Smith
The Roller weblogging package uses Struts. Here's a couple of links: Project home page: http://www.rollerweblogger.org/page/project Develper Diary: http://rollerweblogger.org/page/roller --Kevin -Original Message- From: Fabrice FOUREL [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November

[OT] What's a CMS?

2002-11-19 Thread Kevin A. Smith
publishing as a CMS solution (well, at least 350 before I quite counting). Just a pet peave of mine - trying to inform, nothing more. FYI, James -Original Message- From: Kevin A. Smith [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 7:55 AM To: Struts Users Mailing List Subject

RE: [OT Flame War Warning] What's a CMS?

2002-11-19 Thread Kevin A. Smith
reported an insipid Flame War breakout in the Struts mailing list Jim Berg Sr. Software Specialist PSCI 610-270-4158 [EMAIL PROTECTED] Kevin A. Smith

RE: Editable/non-editable fields

2002-08-26 Thread Kevin A. Smith
Could you set the disabled attribute on the controls? This would still display the info to the user, but they wouldn't be able to edit it. On a previous project, we hacked some of the Struts tags to support this attribute, it wasn't that hard. Maybe a few days of work. -Original

RE: RE: Editable/non-editable fields

2002-08-26 Thread Kevin A. Smith
We went back and forth on this on my project, also. What was finally agreed upon was that it might be less confusing for the user to see an input field grayed out a la Windows, than to see input fields replaced with text strings, looking like field labels. Just my $0.02 worth . . . --Kevin

RE: RE: Editable/non-editable fields

2002-08-26 Thread Kevin A. Smith
PROTECTED]] Sent: Monday, August 26, 2002 10:08 AM To: 'Struts Users Mailing List' Subject: RE: RE: Editable/non-editable fields The grayed out feature does not work on all the web browsers though. Be careful with that. I think even Netscape does not support it. -Original Message- From: Kevin

RE: Editable/non-editable fields

2002-08-26 Thread Kevin A. Smith
Gilles - This is the was the hacking my project team had to do. The html tags don't support this attribute so it doesn't show up in the final rendered HTML. We had to hack the tag code to add support for this. --Kevin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: Editable/non-editable fields

2002-08-26 Thread Kevin A. Smith
? Gilles Vandaele 0498 52 64 12 [EMAIL PROTECTED] Kevin A. Smith [EMAIL

RE: what does [RT Expr] mean in struts documentation

2002-08-26 Thread Kevin A. Smith
RT Expr = RunTime Expression -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 4:08 PM To: Struts Users Mailing List Subject: what does [RT Expr] mean in struts documentation A$HI$H - Do You Yahoo!?

RE: Outputting from a taglib in struts

2002-08-27 Thread Kevin A. Smith
If you can lay your hands on it, I *highly* recommend the O'Reilly JavaServer Pages book. It has two chapters that are extremely useful to first-time and experiences taglib authors. --Kevin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27,

RE: [OT] conn pooling - what next?

2002-08-27 Thread Kevin A. Smith
If the DBA is manually killing off your connections, then the pool needs to be paranoid about checking to see if the connection is available before each operation. So this adds overhead to using the pool. In addition, consider this code: Connection cn = pool.allocate(); Statement stmt =

RE: Re[2]: [OT] conn pooling - what next?

2002-08-27 Thread Kevin A. Smith
If you're not concerned about these other errors, then Poolman (if you can still find it) might be a good fit. If I remember correctly, you could specify a SQL statement for it to execute (select 1 from dual) before allocating a connection from the pool. If it got a SQLException, it would

RE: bean:write .../

2002-08-28 Thread Kevin A. Smith
Where are you storing this User object? In the request/session/etc? -Original Message- From: struts user [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 9:44 AM To: Struts Users Mailing List Subject: RE: bean:write .../ Thank you, Sri! I misspelled my address in the form.

RE: bean:write .../

2002-08-28 Thread Kevin A. Smith
, --Kevin -Original Message- From: struts user [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 9:53 AM To: Struts Users Mailing List Subject: RE: bean:write .../ I am storing it in a session. Thank you!!! Thanks, Lee --- Kevin A. Smith [EMAIL PROTECTED] wrote: Where

RE: struts-config windows 2 unix?

2002-08-28 Thread Kevin A. Smith
DOS (aka Windows) and Unix use different line-termination sequences. In Microsoft land, lines are terminated with a CR/LF pair. In Unix land, lines are terminated with LF. When you view a Windows created file on Unix, the extra CR displays as a control character. --Kevin P.S. CR == carriage

RE: struts-config windows 2 unix?

2002-08-28 Thread Kevin A. Smith
' Subject: RE: struts-config windows 2 unix? To convert a windows file into a unix format you can use the dos2unix command under unix. It will get rid of all the ^M caracters that you see under vi. Nicolas -Original Message- From: Kevin A. Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: JSP thread safety

2002-08-28 Thread Kevin A. Smith
Not sure about the taglib class variables (but I'd really like the answer to that one also). With respect to JSP thread safety, my understanding was that any variables declared in the page were only in scope during the execution of the page, much like variables in method scope. If the pages

RE: struts-config windows 2 unix? No Action Instance

2002-08-28 Thread Kevin A. Smith
Here's a silly question that's bit me a few times: are you sure that the .class file is physically packaged in the webapp? -Original Message- From: slickdev [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 2:02 PM To: Struts Users Mailing List Subject: Re: struts-config

RE: struts-config windows 2 unix? No Action Instance

2002-08-28 Thread Kevin A. Smith
the sun tomcat server, and it works OK... but not my app. - Original Message - From: Kevin A. Smith [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, August 28, 2002 1:03 PM Subject: RE: struts-config windows 2 unix? No Action Instance Here's a silly

RE: First time penatly

2002-08-29 Thread Kevin A. Smith
begin-quote This has nothing to do with Struts. This is a web container issue. Read your web container docs. /end-quote --Kevin -Original Message- From: Billy Ng [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 2:20 PM To: Struts Users Mailing List Cc: [EMAIL PROTECTED]

RE: [Buttons] How do i code this in struts

2002-08-30 Thread Kevin A. Smith
Take out the space between %= and proc.getBigBrotherReport(). -Original Message- From: Susmita Pati [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 2:54 PM To: 'Struts Users Mailing List' Subject: RE: [Buttons] How do i code this in struts I had used html:button

RE: Struts advantages, Struts alternatives

2002-09-04 Thread Kevin A. Smith
Although the bulk of my experience is with Struts (which is a really cool, very productive framework IMHO), I've always wanted to give Tapestry a spin. It looks very intriguing. http://tapestry.sf.net --Kevin -Original Message- From: Sullivan, Sean C - MLG [mailto:[EMAIL PROTECTED]]

RE: Struts advantages, Struts alternatives

2002-09-04 Thread Kevin A. Smith
And a quick check of the Tapestry user list archives shows much lower participation levels than on this esteemed list (not counting the [OT] stuff :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 04, 2002 1:33 PM To: [EMAIL PROTECTED]

RE: Java Script help with client side validation

2002-09-06 Thread Kevin A. Smith
Kind of a WAG, but couldn't you iterate thru all the forms in the document except for the first one (forms[0]). That way you don't process A FORM (which I assume is the first form on the page), but you do evaluate the remaining ones. --Kevin var frmCount = Document.forms.length; for(x = 1; x

RE: [OT][ALT-TECH] Apple Web Objects

2002-09-11 Thread Kevin A. Smith
Smalltalk, eh? I think that more than a few of the top Java names (Steele, Gosling) have a Lispish background, too. -Original Message- From: Brian Hickey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 8:51 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re:

RE: Question for using struts as our standard MVC framework

2002-09-11 Thread Kevin A. Smith
But Struts is not yet a standard for which J2EE product providers can interoperably and reliably create tools. Jayaraman - I'd be interested to hear what your suggestion would be for a standard framework would be. JSF? That's still in committee and won't be in wide circulation before next

RE: Backtracking Breadcrumbs

2002-09-19 Thread Kevin A. Smith
Seems like the ClickStream stuff from OpenSymphony might be able to be hacked into a breadcrumb manager component: http://www.opensymphony.com/clickstream/ Of course, I've not seriously investigated it. Might be worth looking at... --Kevin -Original Message- From: Howard Miller

RE: html:form frustration

2002-09-19 Thread Kevin A. Smith
That just associates a logical form name with the underlying Java implementation. You still need to tell Struts which form bean the action uses. --Kevin -Original Message- From: Jonathan Kovacs [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 3:35 PM To: Struts Users

RE: Request for additional link on struts docs[Suggestion]

2002-09-20 Thread Kevin A. Smith
What about http://marc.theaimsgroup.com? This is the archive I normally use for my searches. --Kevin -Original Message- From: Michael Lee [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 3:16 PM To: Struts Users Mailing List Subject: Request for additional link on struts

RE: [Cust-Taglibs] How to mark a option using html:select?

2002-09-27 Thread Kevin A. Smith
I think you can. In the TLD you set rtexprvalue to true for that tag attribute and it should work. --Kevin -Original Message- From: Ravi Kora [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 8:09 AM To: 'Struts Users Mailing List' Subject: RE: [Cust-Taglibs] How to mark a

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Kevin A. Smith
I think it stands for Your Mileage May Vary. AFAIK ;) -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 10:56 AM To: Struts Users Mailing List Subject: RE: [FRIDAY] [OT] Best misunderstanding of an acronym? ummm.. So what does it actually

[FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Kevin A. Smith
The one that always baffles me is TANSTAAFL. A quick Google search reveals There Aint No Such Thing As A Free Lunch. --Kevin -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [OT] Should I use a persistence layer?

2002-10-03 Thread Kevin A. Smith
I've been playing around with Hibernate (http://hibernate.sourceforge.net) on personal project and it seems to be pretty easy to work with and has good performance. --Kevin -Original Message- From: Chen, Dean (Zhun) [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 3:25 PM

RE: Searching the Archives...

2002-10-10 Thread Kevin A. Smith
What about the mail archive at marc.theaimsgroup.com? URL for the struts-user list is: http://marc.theaimsgroup.com/?l=struts-userr=1w=2 While they're search functionality isn't out of this world, I think it is better than mail-archive. --Kevin -Original Message- From: Sri Sankaran

RE: [OT] which object-relational mapping framework?

2002-10-10 Thread Kevin A. Smith
I used Castor on a previous project, about 4 months ago. Overall it is a very solid tool with an active user and developer community. HOWEVER, I ran into a few quirks retrieving dependent objects (think parent-child relationship) and its OQL support is not complete which can be a pain.

RE:[OT] Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-10-15 Thread Kevin A. Smith
I've experienced a very similar problem with WL (I can't remember the version number but I think it was in the 6.x series) on W2K and WinNT. The short version is that not shutting down the WebLogic server cleanly causes this problem. The operating system socket resources are not being