Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread Adam Hardy
I've never been a fan of having SQL tags (especially the updating ones) in JSTL, for all the obvious reasons. However, there are a whole bunch of developers in the world who are used to model 1 style development (VB, PHP, PERL, Cold Fusion, ...), and it would not be fair for expert groups to ignor

Struts and Workflow

2003-07-10 Thread Mike Duffy
I think that Struts and the MVC architecture could be used to create a basic workflow system. A "WorkflowState" object would represent the state of items in the workflow (current assignment, current status, and other attributes). A "WorkflowRights" object would represent a user's right to view or

Re: Properties named "id" under WAS 4.0.1

2003-07-10 Thread Tin Pham
I recommend using at least WAS 4.0.5 if you want to use struts. I actually use WAS 4.0.4 but with the SSL fix. If you use SSL without that patch large pages don't finish rendering. I ran into quite a few problems. "José Ventura" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi, Ha

Re: JSTL Book

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, David Geary wrote: > > > And keep in mind that Craig doesn't always recommend > > the BEST book, but the book his friends have written. > > I'd like to think Craig is my friend. 8-] > Definitely ... and I like to think it works in the the reverse direction as well :-). >

[FRIDAY] Old news already but amusing...

2003-07-10 Thread Andrew Hill
http://www.wired.com/news/politics/0,1283,59305,00.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSTL Book

2003-07-10 Thread David Geary
On Thursday, Jul 10, 2003, at 17:14 America/Denver, Mark Galbreath wrote: Craig's recommendation notwithstanding, I think the best JSTL book on the market right now is David Geary's "Core JSTL: Mastering the JSP Standard Tag Library," (Sun/Prentice-Hall 2003). It is a really good read and has

Re: large scale deployments

2003-07-10 Thread Darren Spurgeon
Check out one of the recent JavaOne presentations, linked from JavaPerformanceTuning.com. It describes a large-scale implementation using Struts. Case Study of a High-Volume Account Servicing Application Using J2EE Technology http://servlet.java.sun.com/javaone/resources/content/sf2003/conf/sessi

Re: 答复: Reusable Components

2003-07-10 Thread Craig R. McClanahan
On Fri, 11 Jul 2003, Yu Baofeng wrote: > Date: Fri, 11 Jul 2003 09:04:29 +0800 > From: Yu Baofeng <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> > Subject: [gb2312] 答复: Reusable Components > > maybe portlet is b

Re: JSTL Book

2003-07-10 Thread Martin Cooper
I enjoyed Shawn's book a great deal. The writing style makes the book fun to read, and it really is very well written, too. I learned a lot reading it. Disclaimers: 1) I did the tech proof of this book, so I had to read it in great detail, but it was still fun. ;-) 2) I haven't actually read any o

Re: JSTL Book

2003-07-10 Thread Kris Schneider
Keep in mind that I only recommend books that Craig has already recommended. So, with that out of the way, I'd also recommend Shawn's book. One of the reasons I spent my money on it was that Shawn was very active on the taglibs-user list and it wasn't just to say, "Hey, if you'd only buy my boo

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread Jing Zhou
- Original Message - From: "Craig R. McClanahan" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, July 10, 2003 5:37 PM Subject: Re: Using JSTL tags instead of Struts tags > > > On Thu, 10 Jul 2003, David Geary wrote: > > > Date: Thu, 10 Jul 2003 1

RE: best way to build a wizard

2003-07-10 Thread Rodney Paul
Well with the LookupDispatchAction class you can name a parameter to be used to determine what method to execute. In this instance The "Next" and "Previous" buttons would point to a same parameter to be used. eg. Now the code in the Lo

Re: best way to build a wizard

2003-07-10 Thread Michael Muller
I'm not sure that really solves my problem. What do I put as the "input" for this action? I can't use the same action; whatever attribute I used to indicate that I want to move to the next page would still be in the system, so validation failures would bring me to the next page rather than th

RE: [FRIDAY] Burnt Ashes

2003-07-10 Thread Sri Sankaran
Funny story but a hoax. See http://www.snopes.com/crime/clever/cigarson.asp. Sri -Original Message- From: Joel Wickard [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 9:23 PM To: Struts Users Mailing List Subject: Re: [FRIDAY] Burnt Ashes > > >This is a true story and was the 1

Re-Population of form parameters after nn error has occured

2003-07-10 Thread Rodney Paul
Hi All, Im currently experiencing a problem with the Struts framework, in that form values are not being re-populated after a validation error has occured within a ActionForm class. I also get this problem when saving validation errors within a LookupDispatchAction class. Could someone please g

RE: [FRIDAY] Burnt Ashes

2003-07-10 Thread Shane Mingins
I think Caveat Emptor :-) -Original Message- From: Joel Wickard [mailto:[EMAIL PROTECTED] Sent: Friday, 11 July 2003 1:23 p.m. To: Struts Users Mailing List Subject: Re: [FRIDAY] Burnt Ashes > > >This is a true story and was the 1st place winner in the recent Criminal >Lawyers Award Cont

Re: [FRIDAY] Burnt Ashes

2003-07-10 Thread Joel Wickard
This is a true story and was the 1st place winner in the recent Criminal Lawyers Award Contest. ONLY IN AMERICA Shane Mingins Analyst Programmer Assure NZ Ltd Ph 644 494 2522 Do you have any supporting documentation that it's a true story, I looked for newspaper articles, but all I came up wi

RE: Problem with DynaActionForms

2003-07-10 Thread Tan Khay Ong
You are using the Dynamic form. It doesn't create java class for loginForm. All values are stored in the Map of DynaValidatorFrom. You can retrieve form value as below. DynaValidatorForm dyform = (DynaValidator) form; String userName = (String) dyform.get("userName"); String password = (String) dy

RE: best way to build a wizard

2003-07-10 Thread Rodney Paul
Check out the lookupDispatchAction classes. These classes were designed specifically for Actions which require more than one execute method (in this instance a method for back and next). That is what I have used, and is perfect for use when developing wizard applications. Cheers Rodney -Origi

Problem with DynaActionForms

2003-07-10 Thread Richard Stack
I'm implementing DynaActionform for the first time. I'm defining them in struts-config.xml. name="loginForm" dynamic="true" type="org.apache.struts.validator.DynaValidatorForm"> The problem seems to be when I try to reference the form in the Action class's exe

答复: Reusable Components

2003-07-10 Thread Yu Baofeng
maybe portlet is better! -邮件原件- 发件人: Craig R. McClanahan [mailto:[EMAIL PROTECTED] 发送时间: 2003年7月10日 7:34 收件人: Struts Users Mailing List 主题: Re: Reusable Components On Wed, 9 Jul 2003, Adam Hardy wrote: > Date: Wed, 09 Jul 2003 22:48:26 +0200 > From: Adam Hardy <[EMAIL PROTECTED]> > R

Re: best way to build a wizard

2003-07-10 Thread Michael Muller
It turns out that I can't pass the action into the html:form tag using tiles; that would involve nesting JSP tags. Grr. I guess my only recourse is to have the open html:form tag in the inserted body and the close html:form tag in the template. Ick. So now I'm trying to figure out a way to ha

RE: [OT] Use of Static Methods

2003-07-10 Thread Micael
But, they might not be using that implementation. Or not that version, etc. Right? At 02:46 PM 7/10/03 -0400, you wrote: Micael, I searched the Sun site and read that the JCE 1.2 implementation from Sun is thread-safe. I suppose that a provider could provide a non-thread-safe version for develo

RE: JSTL Book

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, Mark Galbreath wrote: > Date: Thu, 10 Jul 2003 19:14:27 -0400 > From: Mark Galbreath <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> > Subject: RE: JSTL Book > > Craig's recommendation notwit

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Mark Galbreath
I think this approach is bullshit. Why would you develop "SQL" tags to get access to the db from the view? You are contradicting yourself...this is exactly what PERL and PHP do. This is not good programming practice! Mark -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROT

RE: JSTL Book

2003-07-10 Thread Mark Galbreath
Craig's recommendation notwithstanding, I think the best JSTL book on the market right now is David Geary's "Core JSTL: Mastering the JSP Standard Tag Library," (Sun/Prentice-Hall 2003). It is a really good read and has plenty of concrete examples. And keep in mind that Craig doesn't always recom

Re: [FRIDAY] Burnt Ashes

2003-07-10 Thread Erik Price
Shane Mingins wrote: After the lawyer cashed the check, the insurance company had him arrested on 24 counts of ARSON With his own insurance claim and testimony from the previous case being used against him, the lawyer was convicted of intentionally burning his insured property and was senten

Disabling URL rewrites Struts behind IIS on JRun

2003-07-10 Thread Steve
I have found many threads regarding this issue, but no solution. I have a Struts application running on a JRun server behind IIS. (In fact, I am using CF as my views. Please don't let that be a red herring as I am finding my exact problem posted with people using .jsp's) The essence of my difficul

Re: JSTL Book

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, Mike Duffy wrote: > Date: Thu, 10 Jul 2003 15:39:49 -0700 (PDT) > From: Mike Duffy <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: JSTL Book > > Does anyone have a recommendation for

[FRIDAY] Burnt Ashes

2003-07-10 Thread Shane Mingins
A Charlotte, NC lawyer purchased a box of very rare and expensive cigars, and then insured them against fire among other things. Within a month having smoked his entire stockpile of these great cigars and without yet having made even his first premium payment on the policy, the lawyer filed claim a

JSTL Book

2003-07-10 Thread Mike Duffy
Does anyone have a recommendation for a good JSTL book? __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, David Geary wrote: > Date: Thu, 10 Jul 2003 15:22:17 -0600 > From: David Geary <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: Re: Using JSTL tags instead of Struts tags > > On Thurs

RE: Struts 1.1 Bug? "PlugIn" Objects Not Serializable

2003-07-10 Thread Hohlen, John C
Craig, Good idea about the link to the thread. I've added it as an additional comment. Thanks! The extension approach of the two plug-ins I'm using (Tiles & Validator) didn't work. I had a problem with the Do you or anyone else know if I can use WebLogic 6.1 in a clustered environment if

Re: Different actionforms pointing to the same action ?????

2003-07-10 Thread Jing Zhou
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 10, 2003 10:40 AM Subject: Different actionforms pointing to the same action ? > Hi, > > Is it possible that an action is used with different actionforms ? > I explain. I would like to create

best way to build a wizard

2003-07-10 Thread Michael Muller
My app has a bunch of wizard-style forms. I have one "NextPageAction" Action class, and an separate mapping for each page. The mappings all bind to the same form bean (a DynaValidatorForm) and invoke the "NextPageAction". I was hoping to have only one action mapping, with a whole bunch of fo

Re: Struts 1.1 Bug? "PlugIn" Objects Not Serializable

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, Erik Price wrote: > Date: Thu, 10 Jul 2003 18:14:57 -0400 > From: Erik Price <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED] > Subject: Re: Struts 1.1 Bug? "PlugIn" Obje

Re: Struts 1.1 Bug? "PlugIn" Objects Not Serializable

2003-07-10 Thread Erik Price
Hohlen, John C wrote: Craig: I added a comment to the Bugzilla report with a link to the thread. Thanks for the idea. Do you or anyone else know if WebLogic 6.1 requires that servlet context attributes to be serializable? How can I figure that out? Not trying to be sarcastic at all, but

RE: Struts 1.1 Bug? "PlugIn" Objects Not Serializable

2003-07-10 Thread Hohlen, John C
Craig: I added a comment to the Bugzilla report with a link to the thread. Thanks for the idea. Do you or anyone else know if WebLogic 6.1 requires that servlet context attributes to be serializable? How can I figure that out? I'm not sure if implementing serialiazable in the Struts pl

RE: Multiple Application Modules

2003-07-10 Thread Lloyd Wilson
Hi Everyone, I want to first thank those who responded to my posting. Essentially, I figured out my problem. When I was trying to refer to a message resource bundle in the module "b" struts config file, I wasn't appending the module name. So for ie, if I configured in struts-config-moduleb.xm

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Mark Galbreath
My point is that if you want to cross multiple vendor barriers, use web services (Service Oriented Architecture). You are going to have to do this, anyway, within a year, so start getting used to the idea. Mark btw: that was funny. -Original Message- From: Joe Zendle [mailto:[EMAIL PROT

Re: Different actionforms pointing to the same action ?????

2003-07-10 Thread Sandeep Takhar
I wouldn't. Each action should have one actionForm. Maybe a coarse-grained one with all the properties? sandeep --- [EMAIL PROTECTED] wrote: > Hi, > > Is it possible that an action is used with different > actionforms ? > I explain. I would like to create a generic action > (e.g. action to send

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Joe Zendle
I think it's time for your lithium! -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 3:44 PM To: 'Struts Users Mailing List' Subject: RE: Using JSTL tags instead of Struts tags Then abstract your classes from the underlying protocol using in

Re: Data reposting when forwarding to Action

2003-07-10 Thread Sandeep Takhar
Yes step #7 is occuring. One of the reasons for not chaining actions together. sandeep --- "John M. Corro" <[EMAIL PROTECTED]> wrote: > I'm currently running into an issue w/ data > reposting after I've forwarded to > another Action. > > In my ActionForm, say I have an ArrayList of > Application

Re: Location of JSP Pages

2003-07-10 Thread Jason Lea
[EMAIL PROTECTED] wrote: Hi, For security reasons (forbid direct access to JSP Pages), I've localized my JSP Pages under WEB-INF. Each page is fronted with a Struts Action. I encounter since JSP compilation problems : "org.apache.jasper.JasperException: Unable to compile class for JSP An error oc

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Mark Galbreath
Then abstract your classes from the underlying protocol using interfaces and implement an SOA solution. Mark -Original Message- From: Joe Zendle [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:42 PM To: Struts Users Mailing List Subject: RE: Using JSTL tags instead of Struts ta

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Joe Zendle
The main point is that not every data source is an RDBMS. Yes, if you are writing a medium sized app that will *always* be hosted on an RDBMS then the sql tags are very powerful and nicely alleviate the god-awful impedence mismatch. Many schema changes are made to denormalize data for performance

RE: Multiple Application Modules

2003-07-10 Thread Sandeep Takhar
in struts-config and for module b you have defined that its key="test"? I think that this is a yes. sandeep --- Lloyd Wilson <[EMAIL PROTECTED]> wrote: > How would I retrieve values from my message resource > bundle without a key?? > > Currently, I use the following to access a message > resourc

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Geary
On Thursday, Jul 10, 2003, at 15:14 America/Denver, David Graham wrote: --- David Geary <[EMAIL PROTECTED]> wrote: On Thursday, Jul 10, 2003, at 14:40 America/Denver, David Graham wrote: The work that you do with JSTL, and therefore in JSP pages instead of actions, involves activities like it

RE: Struts Developers Needed

2003-07-10 Thread Mark Galbreath
lol! -Original Message- From: Shane Mingins [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:28 PM To: 'Struts Users Mailing List' Subject: RE: Struts Developers Needed Hm . Projected Project Quality Graph 100 |

RE: Struts Developers Needed

2003-07-10 Thread Shane Mingins
Hm . Projected Project Quality Graph 100 | |x | x | x | x Quality % |x | x

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Mark Galbreath
cool! I've got your books in my library. -Original Message- From: David Geary [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:22 PM To: Struts Users Mailing List Subject: Re: Using JSTL tags instead of Struts tags On Thursday, Jul 10, 2003, at 15:18 America/Denver, Mark Galbr

RE: [FRIDAY] Beware whom you think are your friends...

2003-07-10 Thread Mark Galbreath
You are the master-bater! -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:16 PM To: 'Struts Users Mailing List' Subject: RE: [FRIDAY] Beware whom you think are your friends... Doh! -Original Message- From: James Mitchell [mailto

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Geary
On Thursday, Jul 10, 2003, at 15:18 America/Denver, Mark Galbreath wrote: Is this the same David Geary that wrote, among others, "Advanced JavaServer Pages?" Yes. david Mark -Original Message- From: David Geary [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:09 PM To: Strut

Re: (RE-POST) RE: using getInputForward vs new ActionForward(mapping.getInput())

2003-07-10 Thread Adam Levine
nothing asked, nothing answered.. yes, the input page has always been a .jsp, the "destination" (address bar) page has always been a .jsp. and the action to which the form is posted has always been a .do/.jspa/action.. nothing changed save for the swapping of libraries (.jars). From: Sand

Re: Struts Developers Needed

2003-07-10 Thread James Mitchell
Hey, I'll work for $0, as long as I get free beer!!! -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org 678-910-8017 AIM:jmitchtx - Original Message - From: "Steve Jovanovic" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sen

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Mark Galbreath
Is this the same David Geary that wrote, among others, "Advanced JavaServer Pages?" Mark -Original Message- From: David Geary [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:09 PM To: Struts Users Mailing List Subject: Re: Using JSTL tags instead of Struts tags On Thursday, J

RE: [FRIDAY] Beware whom you think are your friends...

2003-07-10 Thread Mark Galbreath
Doh! -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:08 PM To: Struts Users Mailing List Subject: Re: [FRIDAY] Beware whom you think are your friends... LOL Gotcha!! -- James Mitchell Software Developer/Struts Evangelist http://www.

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Graham
--- David Geary <[EMAIL PROTECTED]> wrote: > On Thursday, Jul 10, 2003, at 14:40 America/Denver, David Graham wrote: > > >> The work that you do with JSTL, and therefore in JSP pages instead of > >> actions, involves activities like iterating over data, conditional > >> tests, accessing URLs, i18n

RE: Struts Developers Needed

2003-07-10 Thread Steve Jovanovic
Hi Mark, Us, too! :) Steve -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 4:07 PM To: 'Struts Users Mailing List' Subject: RE: Struts Developers Needed I certainly could use the vacation time! I'll check out the project data. Mark

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Geary
On Thursday, Jul 10, 2003, at 14:40 America/Denver, David Graham wrote: The work that you do with JSTL, and therefore in JSP pages instead of actions, involves activities like iterating over data, conditional tests, accessing URLs, i18n, xml manipulation and database access. Except for database up

Re: [FRIDAY] Beware whom you think are your friends...

2003-07-10 Thread James Mitchell
LOL Gotcha!! -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org 678-910-8017 AIM:jmitchtx - Original Message - From: "Mark Galbreath" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Thursday, July 10, 2003 5:05 PM Subj

RE: Struts Developers Needed

2003-07-10 Thread Mark Galbreath
I certainly could use the vacation time! I'll check out the project data. Mark -Original Message- From: Steve Jovanovic [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 4:58 PM To: 'Struts Users Mailing List' Subject: RE: Struts Developers Needed Hi Mark, We're located in cybe

RE: [FRIDAY] Beware whom you think are your friends...

2003-07-10 Thread Mark Galbreath
Well, look who has a case of attitude today. I think it's funny as hell. So do the Europeans on the Linux IRC channel where I stole it from. -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 4:45 PM To: Struts Users Mailing List Subject: Re:

Strange Results of Validation

2003-07-10 Thread Hunter Hillegas
I have an ActionForm that contains a Collection of JavaBeans. The ActionForm validates some properties in the JavaBeans. The Collection uses a LazyList. If validation fails and I get pushed back to the entry page, I get an extra item displayed from my tags. For instance, if I have one item in t

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Geary
On Thursday, Jul 10, 2003, at 13:39 America/Denver, Joe Zendle wrote: Yes, if every datasource in the universe is a set of tables in which the schema never changes ;-) Schema changes will be felt somewhere in your app, no matter how you read the database. It's true that industrial-strength apps

RE: Struts Developers Needed

2003-07-10 Thread Steve Jovanovic
Hi Mark, We're located in cyberspace, and it's a volunteer effort--not a gig, unless $0/h with unlimited vacation time counts. :) Thanks, Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EM

Re: (RE-POST) RE: using getInputForward vs new ActionForward(mapping.getInput())

2003-07-10 Thread Sandeep Takhar
obvious guy asks: your input has always been to a .do or equivalent (to an action) or to a jsp? sandeep --- Yansheng Lin <[EMAIL PROTECTED]> wrote: > Read backwards:). Interested in finding out why. > > > > -Original Message- > From: Adam Levine [mailto:[EMAIL PROTECTED] > > Sent: Ju

RE: Struts Developers Needed

2003-07-10 Thread Steve Jovanovic
Hi Joe, Here's some more information that I hope will give you a better idea of what we're up to (excerpted from a post). Thanks! Steve Maybe you might find this helpful: http://dev.noumenaut.com/project/Skribe/Documents/BluePrint.jpg?title=Ar chitectural+overv%2E%2E%2E&comments=+2+comments+%3

Re: Using tiles outside of Struts

2003-07-10 Thread Sandeep Takhar
from the docs: definition Name of the definition to insert. Definition are defined in a centralized file. For now, only definition from factory can be inserted with this attribute. To insert a definition defined with tag , use beanName="". (RT EXPR) sandeep --- "White, Joshua A (HTSC, CASD)"

Re: Struts Developers Needed

2003-07-10 Thread Joe Germuska
It seems like a kind of elaborate application process without even a chance to see the code or the design. The site is pretty and the project sounds interesting, but this doesn't strike me as a way to encourage a lot of developers to participate... Joe At 15:16 -0500 7/10/03, Steve Jovanovic

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread Mark Lowe
Firstly can I say that the last folks I'd like to enter into a debate with would be you guys.. I've learnt a lot just watching the dev list and seeing how struts has been developed over time, and I'm a fully signed up struts person. The same goes for tomcat. I'd also like to say that I'll be gi

Re: [FRIDAY] Beware whom you think are your friends...

2003-07-10 Thread James Mitchell
That's lame dude. -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org 678-910-8017 AIM:jmitchtx - Original Message - From: "Mark Galbreath" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>; "'Rich Barndt'" <[EMAIL PROTECTED]>; <[E

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Graham
> The work that you do with JSTL, and therefore in JSP pages instead of > actions, involves activities like iterating over data, conditional > tests, accessing URLs, i18n, xml manipulation and database access. > Except for database updates and transactions, all of those activities > are wel

[FRIDAY] Beware whom you think are your friends...

2003-07-10 Thread Mark Galbreath
..and you thought the threat is coming from radical Muslims? http://www.standonguard.com/ Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Struts Developers Needed

2003-07-10 Thread Mark Galbreath
Where in the world is the gig, or is this a telecommute? Mark -Original Message- From: Steve Jovanovic [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 4:17 PM To: [EMAIL PROTECTED] Subject: Struts Developers Needed Hi All, If anyone here who is well-versed in Struts or is pas

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Geary
On Thursday, Jul 10, 2003, at 08:29 America/Denver, Mark Lowe wrote: I started using JSTL but found that it encouraged site builders to start embedding logic in JSP's. While I can see that JSLT is more powerful, isn't it true to say that it encourages breaking with the view-controller demarc

Struts Developers Needed

2003-07-10 Thread Steve Jovanovic
Hi All, If anyone here who is well-versed in Struts or is passionate about learning would like to volunteer to participate in Skribe, a high-end journaling application under development, I invite you to consider joining our team. Skribe is a J2EE journaling application that you can learn more

RE:

2003-07-10 Thread Kris Schneider
Your example works for setting JSTL's default localization context to use the same resource bundle as Struts default message resource. In Ben's example, he's using an alternate message resource which implies the need to change the localization context. One of the interesting things you can do with

RE:

2003-07-10 Thread Mike Jasnowski
You can also call at the top of the page, and then use it in each via the bundle attr. -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 3:51 PM To: Struts Users Mailing List Subject: Re: Quoting Ben Anderson <[EMAIL PROTECTED]>: > As

RE:

2003-07-10 Thread Raible, Matt
I did this today and it was pretty simple. Check out http://tinyurl.com/gkp1. HTH, Matt -Original Message- From: Ben Anderson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 1:44 PM To: [EMAIL PROTECTED] Subject: I changed to this and I can

Re:

2003-07-10 Thread Kris Schneider
Quoting Ben Anderson <[EMAIL PROTECTED]>: > As per earlier requests, I attempted to switch my > This is what worked: > keys are defined in MessagesMyBundle.properties > > > > parameter="path.to.my.stuff.MessagesMyBundle"/> > > > > >

struts-user@jakarta.apache.org

2003-07-10 Thread Ben Anderson
As per earlier requests, I attempted to switch my This is what worked: keys are defined in MessagesMyBundle.properties I changed to this and I can't seem to get it working the page renders but instead of displaying the message, it displays "???my.me

RE: Using tiles outside of Struts

2003-07-10 Thread Brown, Melonie S. - Contractor
Try this. <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %> Melonie Original Message Subject: Using tiles outside of Struts Date: Thu, 10 Jul 2003 15:22:58 -0400 From: White, Joshua A (HTSC, CASD) <[EMAIL PROTECTED]> Reply-To: Strut

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Joe Zendle
Yes, if every datasource in the universe is a set of tables in which the schema never changes ;-) -Original Message- From: David Geary [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 1:11 PM To: Struts Users Mailing List Subject: Re: Using JSTL tags instead of Struts tags On Thur

RE: Struts 1.1 Bug? "PlugIn" Objects Not Serializable

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, Hohlen, John C wrote: > Date: Thu, 10 Jul 2003 14:04:31 -0500 > From: "Hohlen, John C" <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] > Subject: RE: Struts 1.1 Bug? "

RE: JSTL and JSF What does the future hold?

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, Mike Jasnowski wrote: > Date: Thu, 10 Jul 2003 14:58:31 -0400 > From: Mike Jasnowski <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: RE: JSTL and JSF What does the future hold? > > J

Using tiles outside of Struts

2003-07-10 Thread White, Joshua A (HTSC, CASD)
I format all of my applications pages using Tiles. Jsp's are all accessed through struts with the exception of my JSP error handler. I am not sure how to make use of my existing tiles-defs.xml file in a stand alone jsp. I would like to make user of an existing tile definition to display in the j

RE: [OT] Session Management using EJB

2003-07-10 Thread Dennis Muhlestein
Thanks Eric , for your feedback . I am aware of the fact that container takes care of duplicating the Session across the cluster . But then if I have 10 servers , it would be an big overhead as the server has to make 10 copies of Session object. Typically, although I could be miles from the truth

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread James Mitchell
Are you serious? BTW.love your book!!! -- James Mitchell Software Developer/Struts Evangelist http://www.struts-atlanta.org 678-910-8017 AIM:jmitchtx - Original Message - From: "David Geary" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, Jul

Re: Using JSTL tags instead of Struts tags

2003-07-10 Thread David Geary
On Thursday, Jul 10, 2003, at 12:34 America/Denver, Yuan, Saul (TOR-ML) wrote: I started using JSTL but found that it encouraged site builders to start embedding logic in JSP's. I'd sure be interested in some examples of this. JSTL doesn't really provide anything more than what you could do you

(RE-POST) RE: using getInputForward vs new ActionForward(mapping.getInput())

2003-07-10 Thread Yansheng Lin
Read backwards:). Interested in finding out why. -Original Message- From: Adam Levine [mailto:[EMAIL PROTECTED] Sent: July 8, 2003 4:01 PM To: [EMAIL PROTECTED] Subject: RE: using getInputForward vs new ActionForward(mapping.getInput()) Or, I can just tie the errors into my session o

RE: Struts 1.1 Bug? "PlugIn" Objects Not Serializable

2003-07-10 Thread Hohlen, John C
We're using WebLogic 6.1? Should I really consider it broken? I've submitted a Bugzilla Enhancement as per your suggestion: http://issues.apache.org/bugzilla/show_bug.cgi?id=21476 In the meantime, I'm thinking of extending the Plugins that I'm using (Validator and Tiles) to simply implement "s

RE: JSTL and JSF What does the future hold?

2003-07-10 Thread Mike Jasnowski
Just as an additional point to this discussion, some vendors (Macromedia for one) seem keen on JSF. At the ServerSide Symposium in Boston this year they had some interesting demonstrations of J2EE apps using JSF components that rendered Flash grid/table type controls. -Original Message- Fr

RE: Struts 1.1 Bug? "PlugIn" Objects Not Serializable

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, David Graham wrote: > > > > My personal opinion is that app servers which require ServletContext > > attributes to be Serializable are broken, because the servlet spec only > > requires this for *session* attributes. That being said, we probably > > need > > to address this

Handling JSP Errors

2003-07-10 Thread White, Joshua A (HTSC, CASD)
I came across a thread which said that I could create a dummy file called "welcome.do". I would then be able to specify its location in the welcome file list as the default page. Because *.do is mapped to my action servlet, the request for welcome.do would actually invoke the welcome.do struts ac

RE: Simplest way to clear DynaActionForm?

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, Alex Shneyderman wrote: > Date: Thu, 10 Jul 2003 14:36:04 -0400 > From: Alex Shneyderman <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] > To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> > Subject: RE: Simplest way

RE: [OT] Use of Static Methods

2003-07-10 Thread Yee, Richard K,,DMDCWEST
Micael, I searched the Sun site and read that the JCE 1.2 implementation from Sun is thread-safe. I suppose that a provider could provide a non-thread-safe version for developers to buy if they choose to do so too. Regards, Richard -Original Message- From: Micael [mailto:[EMAIL PROTEC

RE: Simplest way to clear DynaActionForm?

2003-07-10 Thread Alex Shneyderman
Thanks, that is exactly what I was looking for. So that Map is mutable? Is there any reason not to have setMap ()? > -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 10, 2003 2:28 PM > To: Struts Users Mailing List; [EMAIL PROTECTED] > Subjec

Re: (re-post) indexed properties in struts 1.0.2 (help!)

2003-07-10 Thread Craig R. McClanahan
On Thu, 10 Jul 2003, Khalid K. wrote: > Date: Thu, 10 Jul 2003 09:03:28 -0700 > From: Khalid K. <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: Struts Users Mailing List <[EMAIL PROTECTED]> > Subject: (re-post) indexed properties in struts 1.0.2 (help!) > > An

RE: Using JSTL tags instead of Struts tags

2003-07-10 Thread Yuan, Saul (TOR-ML)
> -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 10, 2003 2:13 PM > To: Struts Users Mailing List > Subject: Re: Using JSTL tags instead of Struts tags > > > > > > > > On Thu, 10 Jul 2003, Mark Lowe wrote: > > > Date: Thu, 10 Jul 20

  1   2   3   >