Re: Disadvantages of Struts?

2003-12-04 Thread Ted Husted
. - Original Message - From: Rick Hightower [EMAIL PROTECTED] To: 'Struts Developers List' [EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 6:24 PM Subject: RE: Disadvantages of Struts? Don't be silly. Struts is perfect. -Original Message- From: Robert H. Tran [mailto:[EMAIL PROTECTED

RE: Disadvantages of Struts?

2003-12-04 Thread John . Pitchko
BDY.RTF Description: RTF file - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Disadvantages of Struts?

2003-12-04 Thread Robert H. Tran
] To: [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 4:40 AM Subject: Re: Disadvantages of Struts? Yes, we should be passing an API context object instead of tucking things away here and there in the various contexts. We started work on one during the 1.1 march, but it was sidetracked by the module

RE: Disadvantages of Struts?

2003-12-04 Thread Turansky, Mark
04, 2003 1:45 PM To: Struts Users Mailing List Subject: Re: Disadvantages of Struts? Thanks, Ted. I agree that Struts is the best option available today. Like you said, there are areas that Struts can, and probably should, improve. I am delighted to hear that some of them will be addressed in 2.0

Re: Disadvantages of Struts?

2003-12-04 Thread Robert H. Tran
:55 AM Subject: RE: Disadvantages of Struts? I have to disagree with you on the first point. I find that there is just a small amount of necessary configuration required to build an Action class (most of my Action configurations have about a half dozen lines, even less if there is no associated

Re: Disadvantages of Struts?

2003-12-04 Thread Robert H. Tran
I think XDoclet is very nice. Thanks, Mark. - Robert. - Original Message - From: Turansky, Mark [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 10:56 AM Subject: RE: Disadvantages of Struts? Robert Tran, you were griping about config

Re: Disadvantages of Struts?

2003-12-04 Thread Martin Cooper
if any) goes where the code lives, modularity increases. IMHO, - Robert. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 6:55 AM Subject: RE: Disadvantages of Struts? I have to disagree with you on the first point. I find

Re: Disadvantages of Struts?

2003-12-04 Thread Robert H. Tran
, this can be done nice and easy, as I said with Eclipse. - Robert. - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 11:51 AM Subject: Re: Disadvantages of Struts? Robert H. Tran [EMAIL PROTECTED] wrote in message news

Re: Disadvantages of Struts?

2003-12-04 Thread Vic Cekvenich
in Struts, this can be done nice and easy, as I said with Eclipse. - Robert. - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 11:51 AM Subject: Re: Disadvantages of Struts? Robert H. Tran [EMAIL PROTECTED] wrote in message

RE: Disadvantages of Struts?

2003-12-04 Thread McClung, Brian
, 2003 2:18 PM To: [EMAIL PROTECTED] Subject: Re: Disadvantages of Struts? I disagree with you as well Robert. Having a confgiration nudges you toward design and separation, and everyone on the team know where to find things. In fact, when not doing Web apps, I use HiveMind, just so that I can

Re: Disadvantages of Struts

2003-12-04 Thread Ajay Patil
Hi, Has anyone compared the configuration of JSF vs Struts ? Struts has a good mechanism to specify the forwards for each Action. JSF has a different approach. In faces-config.xml, you can specify navigation rules. You can specify something a navigation rules like.. navigation-rule

RE: Disadvantages of Struts

2003-12-04 Thread Nick Faiz
for performing a comparison with another MVC framework. Nick Faiz -Original Message- From: Ajay Patil [mailto:[EMAIL PROTECTED] Sent: Friday, 5 December 2003 1:28 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Disadvantages of Struts Hi, Has anyone compared the configuration of JSF

RE: Disadvantages of Struts

2003-12-04 Thread Sandra Cann
You can see a spreadsheet comparison of some mvc2 frameworks at mvc2frameworks.org. Its was last updated for J1 and will need to be updated again but should give a decent idea. snip I'm still up for performing a comparison with another MVC framework.

RE: Disadvantages of Struts

2003-12-04 Thread Nick Faiz
Thanks Sandra, Good to see that such information exists. Nick -Original Message- From: Sandra Cann [mailto:[EMAIL PROTECTED] Sent: Friday, 5 December 2003 3:59 PM To: 'Struts Users Mailing List' Subject: RE: Disadvantages of Struts You can see a spreadsheet comparison of some

RE: Disadvantages of Struts?

2003-12-03 Thread Wendy Smoak
[Originally posted on struts-dev, answering on struts-user] I just wonder if Struts comes with any significant drawback. The main problem I'm always running up against is the lack of a go back where you came from mechanism in the framework. Everything goes forward, with the exception of

RE: Disadvantages of Struts?

2003-12-03 Thread Hookom, Jacob
:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2003 4:21 PM To: Struts Users Mailing List Cc: Robert H. Tran Subject: RE: Disadvantages of Struts? [Originally posted on struts-dev, answering on struts-user] I just wonder if Struts comes with any significant drawback. The main problem I'm always

RE: Disadvantages of Struts?

2003-12-03 Thread Wendy Smoak
I had to do something similar where I keep a Map in the session and allow the actionmappings/request specify a source, it's then up to the action code to specify what key to store it under. Then I can later look up the source as a forward. Care to elaborate? Do you have a Map of

Re: Disadvantages of Struts?

2003-12-03 Thread Manish Singla
Wendy Smoak wrote: [Originally posted on struts-dev, answering on struts-user] I just wonder if Struts comes with any significant drawback. The main problem I'm always running up against is the lack of a go back where you came from mechanism in the framework. Everything goes forward, with the

Re: Disadvantages of Struts?

2003-12-03 Thread Dynamic Systems
Hello all! That's my first intercourse on the list Does anyone use different languages? I've setup all the JSP with html:html locale=true and created the bla.properties, bla_en.properties and bla_pt.properties. So, when I access in my browser, independent of the selected language and order,

RE: Disadvantages of Struts?

2003-12-03 Thread Hookom, Jacob
To: Struts Users Mailing List Subject: RE: Disadvantages of Struts? I had to do something similar where I keep a Map in the session and allow the actionmappings/request specify a source, it's then up to the action code to specify what key to store it under. Then I can later look up

Re: Disadvantages of Struts

2002-09-23 Thread Peter A. J. Pilgrim
Michael Lee wrote: No real world examples and no good documentation describing those examples. This email list helps that. I'm also going to see if I can release some of my code here open source when I'm done for an example for just such a reason. This is an example of how the community can

RE: Disadvantages of Struts

2002-09-13 Thread struts user
I don't consider this as disadvantage because it adds more security to your site so that people cannot figure out what page you are actually using. Thanks, Lee From: Dan Cancro [EMAIL PROTECTED] Subject: Disadvantages of Struts Date: Thu, 12 Sep 2002 11:05:24 -0700 Content-Type: text/plain

RE: Disadvantages of Struts

2002-09-13 Thread Oliver Burn
One disadvantage of Struts is that it strives to maintain compatibility with the Servlet 2.2 specification. While some may consider this a strength, it does preclude the Struts framework using newer Servlet 2.3 features like Filters. The Servlet 2.3 features can greatly simplify implementations.

RE: Disadvantages of Struts

2002-09-12 Thread Martina Weise
Hi Raghu, in my opinion, for developing, struts is a huge help. The disadvantages are only in the administrative/costum-related parts (mainly if you want to support a long-lifing application). Martina Jesse Alexander (KADA 11) [EMAIL PROTECTED] schrieb: Disadvantages of Struts: ... thinking

RE: Disadvantages of Struts

2002-09-12 Thread Galbreath, Mark
Having to put up with me on this list? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 12:21 AM Hi All, Can any one tell me what are the disadvantages of Struts?. Your help is appreciated thanks and regards Raghu

RE: Disadvantages of Struts

2002-09-12 Thread Galbreath, Mark
:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 1:45 AM To: Struts Users Mailing List Subject: RE: Disadvantages of Struts Oh come on. Who best to get the bad points from than the users and developers themselves? Having a good critical look to identify weaknesses and problems

RE: Disadvantages of Struts

2002-09-12 Thread Andrew Hill
Did you see the Flash frontend to Petstore yet? http://www.macromedia.com/desdev/mx/blueprint/ -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 20:01 To: 'Struts Users Mailing List' Subject: RE: Disadvantages of Struts You left out

RE: Disadvantages of Struts

2002-09-12 Thread Andrew Hill
Hmm. Looks like mark isnt the only one who doesnt like Flash! snip Trend SMEX Content Filter has detected sensitive content. Place = Struts Users Mailing List; ; ; Struts Users Mailing List Sender = Andrew Hill Subject = RE: Disadvantages of Struts Delivery Time = September 12, 2002 (Thursday

RE: [BEER]Disadvantages of Struts

2002-09-12 Thread Jim.W.Berg
' cc: Subject:RE: Disadvantages of Struts Having to put up with me on this list? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 12:21 AM Hi All, Can any one tell me what are the disadvantages of Struts?. Your

RE: Disadvantages of Struts

2002-09-12 Thread Galbreath, Mark
:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 1:45 AM To: Struts Users Mailing List Subject: RE: Disadvantages of Struts Oh come on. Who best to get the bad points from than the users and developers themselves? Having a good critical look to identify weaknesses and problems

RE: Disadvantages of Struts

2002-09-12 Thread Galbreath, Mark
detected sensitive content. Place = Struts Users Mailing List; ; ; Struts Users Mailing List Sender = Andrew Hill Subject = RE: Disadvantages of Struts Delivery Time = September 12, 2002 (Thursday) 08:07:02 Policy = Blocking09042002b Action on this mail = Quarantine message Warning message from

Re: Disadvantages of Struts

2002-09-12 Thread Tim T. Young
Subject:Disadvantages of Struts

RE: Disadvantages of Struts

2002-09-12 Thread Dan Cancro
: Michael Lee [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 7:47 AM To: Struts Users Mailing List Subject: Re: Disadvantages of Struts No real world examples and no good documentation describing those examples. This email list helps that. I'm also going to see if I can release

RE: Disadvantages of Struts

2002-09-12 Thread Dan Cancro
, September 11, 2002 9:21 PM To: struts help Subject: Disadvantages of Struts Hi All, Can any one tell me what are the disadvantages of Struts?. Your help is appreciated thanks and regards Raghu -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

RE: Disadvantages of Struts

2002-09-12 Thread Joe Barefoot
Cancro [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:57 AM To: 'Struts Users Mailing List' Subject: RE: Disadvantages of Struts Here are some examples with source code I've seen mentioned on the list http://www.scioworks.com/jpetstore/jpetstore-camino.html http

Disadvantages of Struts

2002-09-11 Thread raghuramudu . v
Hi All, Can any one tell me what are the disadvantages of Struts?. Your help is appreciated thanks and regards Raghu Polaris Software Lab Ltd., MAIL DISCLAIMER :This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only

RE: Disadvantages of Struts

2002-09-11 Thread James Mitchell
:21 AM To: struts help Subject: Disadvantages of Struts Hi All, Can any one tell me what are the disadvantages of Struts?. Your help is appreciated thanks and regards Raghu -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: Disadvantages of Struts

2002-09-11 Thread Andrew Hill
- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 13:38 To: Struts Users Mailing List Subject: RE: Disadvantages of Struts You won't find it on this list. James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network http