[FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2004-03-01 Thread Ted Husted
Last time, we asked contestants to recite the "jingle" from The Demolished Man by Alfred Bester and the "Fear" litany from Dune -OR- name two favorite changes, improvements, or new additions to theStruts Nightly Build since 1.1 was released (now known as Struts 1.2.0 ). The sought answers wer

RE: [OT] Jericho == Struts 2.0?

2004-03-15 Thread Ted Husted
The Apache convention is to give proposals a codename. Once a working implementation is available, then, and only then, do we start making decisions that might ultimately lead to assigning version numbers. Absolutely no one is saying that this proposal is going to be Struts 2.0. It's just a con

Re: [OT] Jericho == Struts 2.0?

2004-03-16 Thread Ted Husted
On Mon, 15 Mar 2004 13:07:10 -0800, Nadeem Bitar wrote: > > Which role will struts play when JSF matures, and JSF 2.0 is > released is what interests me more than the proposed name of struts > 2.0. Struts will be whatever the community needs it to be. The Struts-JSF taglib Craig put together demo

Re: Fundamental Struts Concept

2004-03-16 Thread Ted Husted
> The reason I ask is that since it is my understanding that either a > new Action Form is created when the user submits the form or if one > already exists it is "reset", how can the Action Form have all of > the original data, including the one or 2 fields the user just > submitted? The ActionF

RE: using Two struts-config

2004-03-16 Thread Ted Husted
On Tue, 16 Mar 2004 08:03:10 -0500, [EMAIL PROTECTED] wrote: > Frank is correct; we're doing it the same way, with nearly 20 > struts config files (and tiles def files) to help organize things. > > Try it without the space between the comma and the next entry, e.g.: > > /WEB-INF/struts-config.xml,/

Re: Again Action Chaining

2004-03-18 Thread Ted Husted
On Thu, 18 Mar 2004 15:24:25 +0300, AKostylev wrote: > How can I avoid action chaining in such situation... In my > application user can set "resolution" on some "demand". For > example, there two types of resolutions: "bug" and "not a bug". If > user selects "not a bug" option on form, then nothin

RE: version 1.2

2004-03-20 Thread Ted Husted
As Joe mentioned, we no longer use the "beta-beta-beta-final" versioning scheme. We now use an "immutable" versioning scheme, like that used by the Apache HTTPD project, Jakata Tomcat, and many others. Each release is a "point" release, meaning it's a three part number: major-minor-point. The m

Re: [OT] Need Free database

2003-11-25 Thread Ted Husted
mmands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/stru

Re: ACtion Form within an ACtion

2003-11-25 Thread Ted Husted
d then I want to forward to the JSP Can anybody Help Thanks gary - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Re: ActionForms+struts-config

2003-11-26 Thread Ted Husted
gram' pane. Is this recommended, or poor pratice? Thanks for your help J - Want to chat instantly with your online friends? Get the FREE Yahoo!Messenger -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <

[FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2003-11-26 Thread Ted Husted
hat is hard, or at least fun, to google, please send it to me. The first to suggest a question that we use also wins! -Ted. PLEASE be sure to reply to [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/boo

Re: Chain - not comatible

2003-11-28 Thread Ted Husted
scope. Another approach would be to use the ServletWebContext, so that any changes the Command makes to the Context are reflected in request scope. But, right now, both Struts-Chain and Commons-Chain are in the sandbox, mainly because we haven't finished doing the hello world examples :

Re: [FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2003-11-28 Thread Ted Husted
Ellison wrote the Star Trek episode that featured Joan Collins - entitled "City on the Edge of Forever", I believe. Of course, many people would argue whether Ellison is Science Fictoin or speculative fiction. Mainly short stories, so it's an easy commitment for the impatient reader. :) Edgar

Re: [FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2003-11-28 Thread Ted Husted
Not to worry. So now it's a raffle :) Andrew Hill wrote: How about a new question for those of us who didnt get our answer in before the result was prematurely revealed. (ie anyone who answered before Edgars post is still in the running but anyone after (like me :-< ) has to answer a new question)

Re: Where I can perform global tasks for application ?

2003-11-29 Thread Ted Husted
tasks for example or check for user is signin in. I do it via Filter Servlet now, but I think exists other method on the MVC framework for this job. In other words, how I can add some task, which Struts controller will perform for me for every http request. -- Ted Husted, Junit in Actio

Re: Disadvantages of Struts?

2003-12-04 Thread Ted Husted
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 initiative. At this point, it will probably be slated for Stuts 2.0. The other questions speak

Re: Dynamic assignment of tiles

2003-12-03 Thread Ted Husted
The XMLs files are just used to generate an object graph. If you want to change definitions dynamically, you'd want to look at changing the object graph rather than the XML script. Though, dynamic content is not usually dependant on the Tiles definition itself. Typically, dynamic content is p

Re: How to set action path from Action.

2003-12-09 Thread Ted Husted
The different entry points should each be represented by their own ActionForwards. The Action class decides to forward the user to "science" or "biology". The ActionForward supplies the page and directory. Generally, it is helpful to think of the ActionForwards as boxes on a flowchart. The Acti

Re: Have your Book: UserInRole question

2003-12-09 Thread Ted Husted
You said it. The database returns the user's various roles ... to the container, which also supplies the request from whence isUserInRole comes. HTH, Ted. Dave Yutzy wrote: I’ve been wracking the web to try and find out how to use the “request.isUserInRole()” functionality. I understand how t

Re: [OT] Log4J and Pre-Processor

2003-12-09 Thread Ted Husted
You might first run some load tests to see if the boolean statements do have a non-negligable performance impact. It's easy to loose something like this in the rounding, and there may be better places to spend your optimization dollars. As scientists, we should should more than "feel", we shoul

Re: ActionErrors without resource bundle.

2003-12-10 Thread Ted Husted
You can put a single entry in the bundle general.error={0} and use this with all your error messages. HTH, Ted. Antony Paul wrote: Hi, I want to display error messages saved in Action class using saveErrors without looking at resource bundle. Instead of the key provide message. Possible ?

Re: When HashMap will replace ActionForm ?

2003-12-10 Thread Ted Husted
As mentioned, you can use a map-backed ActionForm to store whatever fields you need without defining them elsewhere. http://tinyurl.com/ymkr You do need to code the forms a little differently, and your forms still need to know what properties/entries to ask for. Personally, I would strongly re

Re: logic tag using locale

2003-12-10 Thread Ted Husted
I'd suggest resolving this type of language choice in the Action. For example, there could be one product bean that is populated with whatever language is preferred by the client. The page could then just write whatever has been placed into the bean. HTH, Ted. Tsang, F (Fred) wrote: All, I'm

Re: dynamically sized form (mostly solved)

2003-12-11 Thread Ted Husted
I've lost track of the underlying use case for this thread, but if it's about populating input options on a form, you might consider using a second object for storing these types of options. For a time, some of us were starting to use the ActionForm to represent the input options along with the

Re: dynamically sized form (mostly solved)

2003-12-11 Thread Ted Husted
ies out of the request. Any thoughts on this? Nick Ted Husted <[EMAIL PROTECTED]To: Struts Users Mailing List <[EMAIL PROTECTED]> g> cc:

Re: PlugIn Interface implementation

2003-12-11 Thread Ted Husted
The purpose of the plugin interface is to give people a chance to initialize their own resources without subclassing ActionServlet or creating their own. Typically, you would not use the PlugIn class directly, but whatever resources it initialized (and then placed in Application scope under a

Re: Help URL Rewriting

2003-12-11 Thread Ted Husted
The container can't be sure that any given client supports cookies, so it will always use URL rewriting on the first request. -Ted. michel Van Asten wrote: Hi, I have a strut application running with ServletExec 4.1 (patch 20...) I want to manage my session with cookies... not url rewrinting ne

Re: Struts EL status

2003-12-16 Thread Ted Husted
What is supported and what is deprecated is totally up to the community. If there are people out there who want to use and maintain the original Struts tags, then there's no reason why they cannot remain current. All that has ever happened is that the current set of Committers are not using

Re: iBatis DAO + Hibernate?

2003-12-16 Thread Ted Husted
I haven't tried it, but I have used the DAO layer with mock implementations, and it works just fine. There's nothing in that part of it that is SqlMap specific. Clinton Begin says that it should work with Hibernate, or anything else, and I would agree. For the 2.0 release, I've been encouraging

Re: Struts EL status

2003-12-16 Thread Ted Husted
As a longtime Struts Committer, I can tell you that it *is* part of the main development tract. As Joe mentioned, the only reason it doesn't ship with the other taglibs is because it requires a 2.3/1.2 container. When a 2.3/1.2 container is in play, I do tell my own clients to prefer Struts EL

Re: .Net Struts?

2003-12-16 Thread Ted Husted
There's a similar framework called Maverick that has Java, .net, and PHP versions available. http://mav.sourceforge.net/ If you are more than just curious and were looking for something like Struts to use on .net today, Maverick is your best option. Several people are working on PHP versions

Re: iBatis DAO + Hibernate?

2003-12-16 Thread Ted Husted
You might be confiusing the iBATIS SqlMaps framework with the seperate and distict iBATIS DAO framework. Mixing and matching SqlMaps with Hibernate would probably be a bad idea, but the iBATIS DAO framework is a horse of a different color. The DAO framework is not linked to SqlMaps and should w

Re: [OT] I didn't know Struts was an "antipattern"

2003-12-17 Thread Ted Husted
Gus Heck wrote: Interesting, I'm not sure I agree, but the patch that he complains about not being added sounds useful... A lot of people have requested a history stack, and have also implemented it in their own applications. But I think we need to solve it in the larger context of a general sol

Re: ActionMapping - regexp pattern matching for path

2003-12-17 Thread Ted Husted
Not in 1.1, but you can use wildcards in the nightly build. http://jakarta.apache.org/struts/userGuide/building_controller.html#action_mapping_wildcards Sergey Proskurnya wrote: Hello to all, In Struts-1.1 it is possible to bind Actions to static URL path, but is it possible to bind Actions to

Re: Validate method in action form

2003-12-18 Thread Ted Husted
Another approach would be to create a base ActionForm with the properties, and then extend it for each validation instance. You can also use the came ActionForm class in multiple form-bean elements, and then use the Struts Validator to give each form-bean it's own validation suite. HTH, Ted.

Re: Application url , why it does not change?

2003-12-19 Thread Ted Husted
The Servlet API provides for an internal forward that happens server-side. The request does not go back to the client, and so the client has no clue that some other resource has responded. There is a redirect attribute in the forward element that causes a "round trip" with the client: it has th

Re: Accessing PlugIn config information

2003-12-19 Thread Ted Husted
Typically, you would have the PlugIn store an object in the Servlet scope under a known name, and then other objects could retrieve the information form there. So, the PlugIn does provide the service itself, it's a loader for the service provider. HTH, Ted. Andy Engle wrote: Hi all, I am wond

Re: Runtime Generation of DynaValidatorActionForms

2003-12-19 Thread Ted Husted
People often ask about this kind of use case, but, AFAIK, there's not a generic solution. (In fact, something similar came up on the DEV list yesterday.) What would be helpful is some type of simple example application that demonstrated the use case. A lot of haven't had to this sort of thing

Re: how to not insert javascript into forms

2003-12-19 Thread Ted Husted
I think that's only if you use the "focus=" attribute. [EMAIL PROTECTED] wrote: Hallo, when I use page. How I can disable it? Thanks, Jiri - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Test tiles attribute presence

2003-12-19 Thread Ted Husted
I think you would import the Tiles attribute into page scope, and then use the usual logic tags. -Ted. Franck wrote: Hi, In a tiles template I would like to test if a tiles attribute should be inserted or not : Example : I would like to code something like Something to remplace th

Re: Multiple struts-config.xml

2003-12-19 Thread Ted Husted
Just specify whatever files you want to use as a comma-delimited list in the web-xml. See the Struts Mailreader (struts-example) for a working example. HTH, Ted Sudhakar G wrote: Hi, Can any one give me a example how struts supports multiple struts-config.xml file? Thanks in advance.. cheers Su

RE: Problem with action chaining

2003-12-31 Thread Ted Husted
On Wed, 31 Dec 2003 12:36:33 -0500, Tim Lucia wrote: > So is it a bad design if you have > > > Action1 -> add CollectionOfObject1 to request > Action2 -> add Object2 request > > > And then chain them together to produce two request attributes? I > have some pages which display a list of Object1, a

Re: is there an eta for struts 1.2 beta?

2003-12-31 Thread Ted Husted
On Tue, 30 Dec 2003 15:52:03 -0500, John McGrath wrote: > we've been using a nightly build of 1.2, in order to be be able to > more easily put ActionMessages into the session object. we're a > little leery of putting it into production, though, until there's > at least an official beta... any idea

applyLocalizedPattern

2004-01-01 Thread Ted Husted
When is provided a pattern through the message resources, rather than as a tag attribute, the applyLocalizedPattern method is used. This method assumes the pattern is using a localized notation. Doe

RE: Problem with action chaining

2004-01-01 Thread Ted Husted
t various customer sites. > They need to know how to move tiles around (new layouts), and > understand basic struts tag libraries, and HTML [which they already > know]. By chaining actions, they can use the existing .class files > without us shipping the java sources and having them modi

Re: applyLocalizedPattern

2004-01-01 Thread Ted Husted
d.it/corsi/fi2ae- > docs/source/jdk1.1.7/src/java/text/resources/LocaleElements_fr.java > has > > > ",", /*decimal separator*/ > " ", /*group (thousands) separator*/ > > > where > http://www.dei.unipd.it/corsi/fi2ae- > docs/source/jdk1.1.7/src/java/text/res

Re: how many struts_config.xml

2004-01-02 Thread Ted Husted
It's not going to matter much to the framework. The files are read at startup and then dismissed. It's mainly a human engineering issue. If you are using multiple configs in the same module, and can be sure that the none of the element names collide across the files, then it's just a matter of p

[FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2004-01-03 Thread Ted Husted
east fun, to google, please send it to me. The first to suggest a question that we use also wins! -Ted. PLEASE be sure to reply to [EMAIL PROTECTED] -- Ted Husted,    Junit in Action  - <http://www.manning.com/massol/>,    Struts in Action - <http://husted.com/struts/book.html>,    JS

Re: struts vs. portal framework

2004-01-03 Thread Ted Husted
IMHO, Jetspeed isn't a framework per se (or wasn't last time I looked). It's an application that you can customize for your own use. You can write custom components for Jetspeed to use, but you're really plugging things into Jetspeed, the way you plug things into an IDE, like Eclipse or IDEA. A

Re: [OT] Canoe Webtest / HttpUnit

2004-01-07 Thread Ted Husted
I use WebTest a lot. I think you have turn cookies on via the HttpUnit config. http://lists.canoo.com/pipermail/webtest/2003q2/000735.html -Ted. On Wed, 07 Jan 2004 22:28:10 -0500, Edgar P Dollin wrote: > I have been struggling with these two testing tools for a while now > attempting to retrofi

[FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2004-02-07 Thread Ted Husted
to google, please send it to me. The first to suggest a question that we use also wins! -Ted.     PLEASE be sure to reply to [EMAIL PROTECTED] -- Ted Husted,    Junit in Action  - <http://www.manning.com/massol/>,    Struts in Action - <http://husted.com/struts/book.html>,    J

Re: [FRIDAY] YA Stuts In Action / JUnit in Action Trivia Quiz

2004-02-07 Thread Ted Husted
On Sat, 07 Feb 2004 10:04:10 -0600, Ted Husted wrote: > The contest will run until Thursday, January 15, 2004, 23:59:59, so > everyone has a chance to participate. Oops, forgot to update the date. :) The drawing will actually run until February 12, 2004, 23:59:59.

Re: The future of Struts...

2003-09-21 Thread Ted Husted
to take strategic decisions for my projects. Marco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Strut

Re: Wizard pages in Struts design question

2003-09-21 Thread Ted Husted
ation of the form done while chaining actions? Furthermore, is it so bad to redirect between actions? Thanks in advance, Erez - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted

Re: asp.net developer roadmap

2003-09-21 Thread Ted Husted
ent ones bach and forth. 3- i like reading books more than reading howto's. that's it!! Can you please tell me where to start and how to go? -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>,

Re: New Concept [SOLVED]

2003-09-22 Thread Ted Husted
n the list. It may be ready in the list. regards, Abhijeet Mahalkar. -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/obidos/ISBN=1861005512>. "

Re: how to change this logic into tags

2003-09-22 Thread Ted Husted
><%=spd.getSentCount()%> <% } } %> - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http:/

Re: [SCAFFOLD] Elegant way to expose more than one object using Proc essAction

2003-09-22 Thread Ted Husted
ommands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/obidos/ISBN=1861005512>. "Get Ready, We'

Re: Error : No Action Instance for path could be Created

2003-09-22 Thread Ted Husted
logy, Bachelor of Engineering, National Institute of Technology Karnataka, Surathkal. ( formerly KREC ) Get your own "800" number Voicemail, fax, email, and a lot more http://www.ureach.com/reg/tag --------- To un

Re: How to populate the 2nd action's FormBean in Action Chaining??

2003-09-22 Thread Ted Husted
a lot more http://www.ureach.com/reg/tag - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http:

Re: [FRIDAY] YA Stuts In Action Triva Quiz

2003-09-26 Thread Ted Husted
to me. The first to suggest a quote that we use also wins! -Ted. PLEASE be sure to reply to [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html&

Re: Reasons for using Struts

2003-09-28 Thread Ted Husted
round sound stereo system? As mentioned, there are several MVC/Model 2 frameworks. There's a nice round up here: http://barracudamvc.org/Barracuda/docs/landscape.html And there is also the WAFER project: http://www.waferproject.org/index.html -Ted. -- Ted Husted, Junit in Action -

Re: [POLL] ActionFrom vs DynaActionForm

2003-09-30 Thread Ted Husted
ipient, you should delete this message immediately. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Sit

Re: [Poll] action mappings

2003-09-30 Thread Ted Husted
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://

Re: [POLL] ActionFrom vs DynaActionForm

2003-10-01 Thread Ted Husted
I know you guys are used to joshing each other, but let's still observe the rule that while we might disrespect a technology choice, but we don't disrespect the person making the choice. Of course, anyone who knows Mark and Andrew knows this exchange is all in good fun, but all of this gets arc

Re: newbie: Best Practice Struts/Value-Objects?

2003-10-02 Thread Ted Husted
t utilization of Value-Objects with Struts? Again, I'm a newbie so any pointers, help, or examples would be great! thanky in advance! -D - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

Re: Master Detail: Problem committing Master while link to Detail

2003-10-03 Thread Ted Husted
form this way, the only recourse is to change the links so that they also submit the form, either through JavaScript or by making the links buttons. The Action can then save any changes to the form, and then forward on to the other detail page. HTH, Ted. -- Ted Husted, Junit in Action -

Re: EJB's vs. Hibernate vs. Torque vs. custom DTO's

2003-10-03 Thread Ted Husted
Joe Germuska wrote: I'm interested in the rapidly developing "microkernel" field (HiveMind, Keel, PicoContainer, Spring...) but haven't made the time to choose one of them. My own wild guess would be that HiveMind will be the next Maven ... You will be assimilated :) -T

Re: EJB's vs. Hibernate vs. Torque vs. custom DTO's

2003-10-03 Thread Ted Husted
--- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http:

Re: Newbie Struts Questions

2003-10-03 Thread Ted Husted
created under Tomcat/webapps/ e.g. Tomcat/webapps/mystrutsapp. Must I edit Tomcat's server.xml and add a new tag for this new directory Tomcat/webapps/mystrutsapp ? Or will Tomcat/Struts work it all out for me without me having to add a new context? Any help very much appreciated ! Thank

Re: [SCAFFOLD] ProcessAction - Merging properties from a session obje ct

2003-10-03 Thread Ted Husted
l: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/obidos/ISBN=1861005512>. &quo

Re: [SCAFFOLD] Future of Scaffold - alternative DAO

2003-10-03 Thread Ted Husted
AO package to Scaffold which fits in with Struts as smoothly (i.e. can be configured into the ActionMapping very intuitively)? Noam - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --

Re: EJB's vs. Hibernate vs. Torque vs. custom DTO's (EJBs are OK)

2003-10-04 Thread Ted Husted
Mike Duffy wrote: In the short term, a non-standard solution may be the only choice available. If so, the best thing to do is to design your code in a way that isolates the non-standard components. If you really think Hibernate or iBATIS is the way to go, then go through delegates to your data

Re: EJB's vs. Hibernate vs. Torque vs. custom DTO's (EJBs are OK)

2003-10-04 Thread Ted Husted
Mike Duffy wrote: > As someone who started out processing HTML forms with CGI and PERL, I > am very thankful for the contributions made by the Struts team. I > often wonder why the JCP didn't take in Struts as a standard and build > on that standard. Instead, it looks like they kidnapped one of t

Re: merging webwork and struts

2003-10-04 Thread Ted Husted
Dan Allen wrote: Maybe I am just a little naive about the topic, but I just read a tutorial on webwork2 and I see absolutely no reason why webwork has to exist. Of course there are great ideas in the implementation of webwork2, but I see no reason why they can't just be added to struts. Take inte

Re: newbie: Best Practice Struts/Value-Objects?

2003-10-05 Thread Ted Husted
ht down to the data access layer. -Ted. -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/obidos/ISBN=1861005512>. "Get Ready, We

Re: Must everything go through an action?...

2003-10-05 Thread Ted Husted
uess, am just looking for an assurance that I am implementing the view helper pattern the correct way according to struts. Any help you can provide would be much appreciated! Keith Pemberton - To unsubscribe, e-mail: [EMAIL PROT

Re: Losing images on redisplay of page.

2003-10-05 Thread Ted Husted
nsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/obidos/ISBN=1861005512

Re: [Article] SoftwareFashion (includes paragraph about Struts)

2003-10-07 Thread Ted Husted
[EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JavaServer Faces

2003-10-08 Thread Ted Husted
It's not an either/or decision. http://jakarta.apache.org/struts/faqs/kickstart.html#jsf Though, Struts is superior in the sense you can use it in a shipping application. JSF is still in early release. HTH, Ted. Horky Adam G A1C 805 CSPTS/SCBE wrote: Does anyone know enough about Struts and Ja

Re: Anyone still use the layout component ?

2003-10-08 Thread Ted Husted
ECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/ob

Re: Normal Application Flow?

2003-10-08 Thread Ted Husted
commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/obidos/ISBN=1861005512>.

Re: user roles in ActionConfig

2003-10-08 Thread Ted Husted
/docs/1.0/tutorial/doc/WebAppSecurity.html HTH, Ted. Horky Adam G A1C 805 CSPTS/SCBE wrote: I am looking for documentation or mentoring in implementing user roles via the ActionConfig. A1C Adam G Horky Application Development Programmer, SCBE (618)256-2300 -- Ted Husted, Jun

Re: No action instance for path /logoff could be created

2003-10-08 Thread Ted Husted
__ Instant message with integrated webcam using MSN Messenger 6.0. Try it now FREE! http://msnmessenger-download.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

Re: What Is Wrong With My web.xml File (Struts)

2003-10-08 Thread Ted Husted
/signin/logon.jsp?error=true Registered Members administrator advisor editor contributor // line 137 is here [/CODE] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Desi

Re: Tools for Testing

2003-10-09 Thread Ted Husted
layer and server pages, then JUnit and Canoo may be all you need. Though, complex Struts applications can still benefit from Struts TestCase. HTH, Ted. -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JS

Re: Under What Circumstances Would You Recommend the Use of EJB?

2003-10-09 Thread Ted Husted
n-EJB implementations just by changing a value in a properties file. Sweet. HTH, Ted. -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site D

Re: JavaServer Faces

2003-10-10 Thread Ted Husted
Craig R. McClanahan wrote: There is a functionality overlap in the core controller role, and for some people JavaServer Faces will be sufficient by itself. It's not unlike the situation with the JSTL SQL tags. For very simple Model 1 applications, these can be "sufficient unto the day". But, fo

Re: Struts 1.2 - When?

2003-10-10 Thread Ted Husted
I believe there's an issue with some of the tests right now. Once those are resolved, I believe someone might cut a 1.2.0 release to promote the latest release of the Commons Validator. -Ted. David Farell wrote: When we can expect Struts 1.2 Beta? (other then "when it’s ready", can we guess a m

Re: Struts 1.2 - When?

2003-10-10 Thread Ted Husted
ttp://jakarta.apache.org/struts/releases.html After that, all it takes is a vote of the Committers to make it an official Struts release that we can distribute from Apache/Jakarta. -T. -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 16:07 To: Struts Us

Re: JavaServer Faces

2003-10-10 Thread Ted Husted
Craig R. McClanahan wrote: Craig (who notes that it took Struts nearly three years to get a wide breadth of tools support) Though, the Struts tool explosion coincided with the more general Java tool explosion. If we have GUIs like today's Eclipse and IntelliJ three years ago, we would have seen

Re: [OT] Is Java Overkill?

2003-10-10 Thread Ted Husted
No matter how we decide to do something today, we'll be doing it differently ten years from now. (And, dammit, I *still* won't be eligible for retirement!) -Ted. -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.c

Re: OT - book on Java patterns

2003-10-11 Thread Ted Husted
lk lately of various official "patterns" has my brain hurting from the Unknown again. Can anyone recommend a good book on *patterns* - business delegate, visitor, dao, etc. etc. etc. Thanks, -Sasha -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action -

Re: Keeping Actions clean - separating actions from business model from persistence

2003-10-11 Thread Ted Husted
covery of the persistence mechanism as well... Any references to webpages/books would be appreciated. BTW, I've been shamelessly posting to this list questions that are probably better directed elsewhere. What would be a more appropriate list? Thank you, -Sasha -------

Re: Keeping Actions clean - separating actions from business mode l from persistence

2003-10-11 Thread Ted Husted
implementaton needs to know about the connection management, but still lets the business logic determine what constitutes a transaction (which is often a business decision). -Ted. -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.c

[FRIDAY] YA Stuts In Action Triva Quiz

2003-10-11 Thread Ted Husted
ance to participate. The lucky winner selected from the correct responses will receive a signed copy of Struts in Action. PLEASE be sure to reply to [EMAIL PROTECTED] If you have an interesting science fiction or computer science quote that is hard to google, please send it to me. The first to sugges

Re: communication between control layer & factory/model

2003-10-11 Thread Ted Husted
exactly elegant, since I have to tokenize it. Anybody got any better solutions? Adam -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.c

Re: Hi Ted, where is scaffold.ExistsAttributeAction??

2003-10-13 Thread Ted Husted
e other classes like this one. I noticed that scaffold's last update was about one year ago. Is scaffold still being working on? Sincerely, Bruce. -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP

Re: JavaServer Faces

2003-10-13 Thread Ted Husted
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted Husted, Junit in Action - <http://www.manning.com/massol/>, Struts in Action - <http://husted.com/struts/book.html>, JSP Site Design - <http://www.amazon.com/exec/obidos/ISBN=1861005512>. "Get R

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Ted Husted
" can help you Play Smart. +00 1 (708) 570-2772 Fax MSN: mickknutson ICQ: 316498480 ICQ URL: http://wwp.icq.com/316498480 --- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ted

  1   2   3   4   5   6   7   8   9   10   >