Re: JBoss-3.0.3_Tomcat4_1_12

2002-10-09 Thread Cedric Dumoulin
Hi, Maybe you use an old version of commons-digester. First of all, try to download the latest nightly build or the 1.1b2 version of Struts. Try the tiles-documentation.war file on your environment. Does it run for you ? If yes, get all jar files and tld from the working tiles

extends validator form rules

2002-10-09 Thread Nicolas Robert
Hello, I've got a verry large validator.xml file (more than 3000 lines) , and I would like to know if it's possible to extend form anchor validation rules. If it's possible, could you send me examples? Thanks Nicolas (Excuse me for my poor english) -- To unsubscribe, e-mail:

Multiple struts

2002-10-09 Thread Shay Cohen
Hi, Are there any limitations in deploying two or more struts application on the same web server ? I tried this with the following configuration: 1. added another servlet and servletmapping to the web.xml ( on respond to *.do files and the other to *.do2 ) 2. used the

RE: Multiple struts

2002-10-09 Thread Miguel Angel Mulero Martinez
I think you must use different name files for struts-config.xml. In the configuration of the action servlet in web.xml, you can define the name of the struts-config file. Try it. -Mensaje original- De: Shay Cohen [mailto:[EMAIL PROTECTED]] Enviado el: miércoles, 09 de octubre de 2002

RE: Multiple struts

2002-10-09 Thread Divakar Satyanarayan
Shay , You can deploy more than two applications on webserver. You will have to replicate the structure of directory for the application. For instance you have an applicationX applicationY. The typical directory structure on Tomcat would be C:/tomcat-root-directory/webapps/applicationX.

about reload configuration file in struts 1.1 b2

2002-10-09 Thread caowei
hi, there is a ReloadAction in struts1.0, but no in struts1.1. i try to extend ActionServlet to reload by myself,the code is below: - public void reload() throws IOException, ServletException { // Shut down our existing environment

Poolman 2.0.4 Struts tomcat4.x

2002-10-09 Thread Ferran Parra
Hi I was wondering if someone out there has configured tomcat 4.x with Poolman 2.0.4. As far as I know Poolman needs to have in the classpath the location of the poolman.xml file. But Tomcat doesn't use the classpath. So that it would work we had to change the catalina.bat file so that it

xml, jsp, DOM

2002-10-09 Thread Frederic Barozzi
Hi, Is there a better way than an other to work with xml document and jsp ? I trie to explain: - I like this solution: a client send a request to the server. This one, with internal java bean, processes the request. It asks the DB server, the file system, or other to made a DOM

Re: Poolman 2.0.4 Struts tomcat4.x

2002-10-09 Thread Jin Bal
Try putting the poolman.xml in the WEB-INF/classes folder HTH Jin - Original Message - From: Ferran Parra [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 10:46 AM Subject: Poolman 2.0.4 Struts tomcat4.x Hi I was wondering if

RE: xml, jsp, DOM

2002-10-09 Thread Andrew Hill
Have you seen Jeff Penal's STXX extension? http://www.oroad.com/opencode/stxx/ -Original Message- From: Frederic Barozzi [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 18:09 To: Struts Subject: xml, jsp, DOM Hi, Is there a better way than an other to work with xml

LabelValueBean

2002-10-09 Thread Mohan Radhakrishnan
Hi, html:select property=wanLinks size=1 html:options collection=wanLinkOptions property=value labelProperty=label/ /html:select The code above works but I don't see any values from my 'LabelValueBean' displayed eventhough it is in application context scope. The 'dropdown' is

trying to use bean:message with arg0

2002-10-09 Thread Avishai Weissberg
I apologize for the previous html-format mail. Hi, I want to use bean:message, with attributes other than key. I saw in the documentation (http://jakarta.apache.org/struts/userGuide/struts-bean.html#message) , that that I can use attributes lie arg0, arg1, etc, to format compund messages, but I

Re: trying to use bean:message with arg0

2002-10-09 Thread Gemes Tibor
2002. október 9. 12:25 dátummal Avishai Weissberg ezt írtad: I've tried using it like this: bean:message key=my.key.here arg0=literal string This works fine for me. Maybe the slash at the end is missing? Try this: bean:message key=my.key.here arg0=literal string / Hth, Tib -- To

Avoid Heavy Use of Logic Tags ???

2002-10-09 Thread Johannes Carlén
Hi, I read Designing Enterprise Applications, Second Edition Singh et al. Section 4.2.6.6 has the header Avoid Heavy Use of Logic Tags and also writes Using custom tags for logic provides little benefit, and violates separation of logic and presentation. and states that JSP-pages written in

RE: trying to use bean:message with arg0

2002-10-09 Thread Avishai Weissberg
Unfortunately, I only left it out in the mail message, not in the real file. What I get, is that arg0 is replaced by a null, like this: Hi, my name is {0} = Hi, my name is null Avishai. -Original Message- From: Gemes Tibor [mailto:[EMAIL PROTECTED]] Sent: Wed, October 09, 2002 12:31

Re: ActionErrors

2002-10-09 Thread Dave Derry
Another solution is to define a generic message key in the properties file. Something like error.generic={0}. Then create your ActionError as new ActionError( error.generic, My specific error message ); Dave Derry - Original Message - From: Andrew Hill [EMAIL PROTECTED] 2.) Ah, now

RE: [OT] Container Wars

2002-10-09 Thread Casey Forbes
A Resin license costs $500 (not $1500) On Tue, 8 Oct 2002, micael wrote: I am building an application with JBoss and Tomcat that I intend to give away. That makes $1,500 serious money. At 04:02 PM 10/8/2002 -0700, you wrote: I don't consider cost a downside. Sure, Tomcat is free, but

RE: Avoid Heavy Use of Logic Tags ???

2002-10-09 Thread Buchwald, Dave (PLC, IT, Tri-Com Consulting)
I agree...while looking back at some of my earlier JSPs, following the logic of those large and cumbersome scriptlets is nearly impossible. The succinct nature of struts (or any) tags do make the JSP more readable as long as you give the beans and properties functional names (common programming

Re: trying to use bean:message with arg0

2002-10-09 Thread Dave Derry
One obvious problem is that you haven't closed your bean:message tag. Try bean:message key=my.key.here arg0=literal string/ Also, have you included the directive for the bean tld? Dave Derry - Original Message - From: Avishai Weissberg [EMAIL PROTECTED] I apologize for the previous

PlugIn init method called twice?

2002-10-09 Thread Duma Rolando
I wrote a PlugIn for my webapp and I notice that the init method is called twice.Is this possible? tia -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Multibox Problem

2002-10-09 Thread Prior, Simon
Hi, I am trying to use the Multibox tag to generate a number of checkboxes on a page. This I have done successfully and the generated HTML appears to be correct. My problem occurs after selecting a checkbox and then submitting the form. From the documentation I have read, I would

Re: xml, jsp, DOM

2002-10-09 Thread Frederic Barozzi
Thanks, It looks good, but i really need to limitate externals jar imports and as posible software update and garantee too. So i need method advise in using struts, xml, and jsp. Thanks again, i will try it, but there are too many jar like orion, ... Fred

generate input field id parameter with struts:html?

2002-10-09 Thread Marc Guillemot
Hi, it seems there is no way to generate an html id parameter for input fiels with struts:html. Is it right? The id parameter is quite interesting to use with the label tag: ex: input type=radio name=what value=structure id=radio_dump_structure checked=checked / label

RE: generate input field id parameter with struts:html?

2002-10-09 Thread Andrew Hill
Yep, you can do it. :-) Its just not called id in the tags - this is because JSP (or something anyhow) has reserved the name id for use in tag attributes, so instead of calling it id in the struts tags it has the name styleId -Original Message- From: Marc Guillemot [mailto:[EMAIL

How to communicate between JavaBean and Struts ActionForm Bean?

2002-10-09 Thread Markus Herrmann
Hello Struts users, i have a JSP whose form data is stored in an ActionForm bean (as it should be). The ActionForm bean sets the form data to default values (e.g. it gets todays date). The JSP not only displays the form, but also displays data which comes from a DB bean. In the JSP I use the

[ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Jean-Noel Ribette
Hello everybody I'm pleased to announce that struts-layout 1.0 beta 1 - an open source tag library for struts that allows to speed up interface creation - is available for download. struts-layout includes the following features: - UI components tags: form, input fields, javascript date

Re: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread kiuma
Seems very nice, but are the only possible layouts? Jean-Noel Ribette wrote: Hello everybody I'm pleased to announce that struts-layout 1.0 beta 1 - an open source tag library for struts that allows to speed up interface creation - is available for download. struts-layout includes the

Re: LabelValueBean

2002-10-09 Thread deepank
Hi, is your wanLinkOptions a collection of ''LabelValueBean' beans stored in sme scope Deepank - Original Message - From: Mohan Radhakrishnan [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 3:46 PM Subject: LabelValueBean Hi,

RE: LabelValueBean

2002-10-09 Thread Mohan Radhakrishnan
Hi, Yes. But I see empty 'option' tags being created. The bean is in application scope. bye, Mohan -Original Message- From: deepank [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 6:45 PM To: Struts Users Mailing List Subject: Re: LabelValueBean Hi, is your

RE: Pre-popluating the select dropdown.

2002-10-09 Thread Sri Sankaran
You do not set the 'value' attribute of the html:select. html:select name=device property=deviceID html:option value=1one/html:option html:option value=2two/html:option /html:select Set the value of the property 'deviceID' of the bean 'device' to '2' and you'll see two displayed

Re: How to communicate between JavaBean and Struts ActionForm Bean?

2002-10-09 Thread Will Jaynes
It seems to me that the problem is that you are trying to do everything in the JSP without benefit of using an Action. The Action is where this kind of processing should take place. (Some developers would push it further, into Business Objects, but they would still be called from the Action.)

Struts project

2002-10-09 Thread Marcus Biel
Hi there, I am studying computer science at the University in Landshut, Germany. As part of my studies now I have to work in a company for 5 Months. So I am working @ BMW in Munich, and they told me to get into struts, to realize a project with Struts. I just started working with Struts. I've

FreeMarker and Struts

2002-10-09 Thread Patria Lukman
Hi guys has anyone used Freemarker and Struts together? i would appreciate it very much any hint on this. We're evaluating the possibility of using both technologies.I used already Struts, but am newbie on Freemarker... thanks in advance Patria

Re: LabelValueBean

2002-10-09 Thread deepank
ok then does your bean stored in the collection have label as one of its properties that stores the string to be displayed Deepank - Original Message - From: Mohan Radhakrishnan [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 6:39 PM

RE: Struts project

2002-10-09 Thread Andrew Hill
If you havent already, download and read the review copies of Chuck's struts book on theserverside. http://www2.theserverside.com/resources/strutsreview.jsp A great resource for learning struts! So have they let you test drive the M5 yet? ;-) -Original Message- From: Marcus Biel

Re: Avoid Heavy Use of Logic Tags ???

2002-10-09 Thread David Graham
I think the author is referring to custom tags that perform business logic instead of presentation helpers. The struts and most of the jstl tags are presentation. Generally, business logic goes in java classes not custom tags (yes, custom tags are java classes but you get what I mean :-).

Re: PlugIn init method called twice?

2002-10-09 Thread Matt Veitas
Usually this sort of thing happens due to an error somewhere on startup. Check the log files in your servlet container for more detail about any errors. Matt Duma Rolando wrote: I wrote a PlugIn for my webapp and I notice that the init method is called twice.Is this possible? tia -- To

Re: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Developer
excellent work Jean, Merci, bon travail. - Original Message - From: Jean-Noel Ribette [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 8:55 AM Subject: [ANNOUNCE] struts-layout 1.0b1 Hello everybody I'm pleased to announce that struts-layout 1.0 beta 1 - an

RE: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Chen, Gin
I have alot of things that I developed that work like this. Some might benefit your taglib. But I cant seem to get into CVS. Do you have instructions on how to contribute? Thanks, -Tim -Original Message- From: Jean-Noel Ribette [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002

RE: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Darren Hill
The tutorial says nothing about 'setting-up' struts-layout. ie. Where to css files, how to initialize stuff in the web.xml, where to put things. The example .war files doesn't even include 'struts-layout.tld' in the web.xml .. ??? D. -Original Message- From: Jean-Noel Ribette

Submit form

2002-10-09 Thread kiuma
Hi all, I was wondering how to submit to a form using an image instead of a abutton. Do you have the answer ? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Submit form

2002-10-09 Thread Andrew Hill
Yes. -Original Message- From: kiuma [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 22:02 To: Struts Users Mailing List Subject: Submit form Hi all, I was wondering how to submit to a form using an image instead of a abutton. Do you have the answer ? -- To unsubscribe,

Beginner ClassNotFoundException

2002-10-09 Thread Carlos Henrique Righetto Moreira
This list can help beginners? :) If not, sorry to bother! In all examples I tested, everything works properly. Now, my first own test doesn't work. There's only one Action class (LoginAction) and one Form class (LoginForm) compiled ok in the classes directory. struts-config.xml is configured

Re: Submit form

2002-10-09 Thread kiuma
And could you please give it to me LOL :-D !!! Andrew Hill wrote: Yes. -Original Message- From: kiuma [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 22:02 To: Struts Users Mailing List Subject: Submit form Hi all, I was wondering how to submit to a form using an image

RE: Submit form

2002-10-09 Thread Miguel Angel Mulero Martinez
Put the image in a link, and use the onclik javascript function to do a real submit of the form. -Mensaje original- De: kiuma [mailto:[EMAIL PROTECTED]] Enviado el: miercoles, 09 de octubre de 2002 16:02 Para: Struts Users Mailing List Asunto: Submit form Hi all, I was wondering how to

Re: Submit form

2002-10-09 Thread Eddie Bush
html:image ... / Look that up Kiuma ... kiuma wrote: Hi all, I was wondering how to submit to a form using an image instead of a abutton. Do you have the answer ? -- Eddie Bush -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: Submit form

2002-10-09 Thread Andrew Hill
Actually if you use an html:image tag (or plain html along the lines of input type=image ...) when clicked the form will be submitted without need of JavaScript. If you need to do extra stuff in javascript first you can intercept this in the onclick event. Miguels suggestion to use an image in a

RE: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Jean-Noel Ribette
Be careful that the cvs does not run on the standard cvspserver port. This can cause problems if you're behind a firewall. If' you'd like to contribute, you can start by participate to the mailing-list ([EMAIL PROTECTED]) and propose your improvements (doc, patch, new features etc. are

Re: PlugIn init method called twice?

2002-10-09 Thread Eddie Bush
You don't have two sub-apps which both reference it, do you? ;-) You'll be doing init twice then for sure :-) but hopefully you've written it so it won't trample over itself. Duma Rolando wrote: I wrote a PlugIn for my webapp and I notice that the init method is called twice.Is this

Re: Struts project

2002-10-09 Thread Marcus Biel
Thanks, just downloaded the entire book - eventhough some chapters seem to be missing: 8, 14,(chapter 14 was chapter 15), 17 and 19. If you got them, please send to [EMAIL PROTECTED] thanks, marcus [EMAIL PROTECTED] schrieb: If you havent already, download and read the review copies of

Struts-Layout 1b1

2002-10-09 Thread Developer
I've had to modify the code to ad the titleKey functionality to the layout tags. I've had to call it hintKey since title key would not be too intuitive in the struts-layout perspective. Is that support added to 1b1 yet, if not are you planning on adding. Is the sort collection functionality

[commons-pool] Should I use commons-pool for this?

2002-10-09 Thread Morycz, Felicia V
I'm writing a service that runs continually and produces objects that I want to put into a keyed pool. Then there are consumers that will get and remove the objects based on the key. If the key is not found yet, the consumer should wait until it is there or a timeout period is reached. I

RE: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Jean-Noel Ribette
At 16:10 09/10/2002, you wrote: The tutorial says nothing about 'setting-up' struts-layout. The tutorial indeed does not say anything about that. There is a link for the initial setting-up on the download page, and information about the customization on the skin page. Basically to start a

Re: Poolman 2.0.4 Struts tomcat4.x

2002-10-09 Thread Eddie Bush
Or JAR it up and drop it into WEB-INF/lib Jin Bal wrote: Try putting the poolman.xml in the WEB-INF/classes folder HTH Jin -- Eddie Bush -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: extends validator form rules

2002-10-09 Thread Eddie Bush
Have you been to google yet? Tried looking in the commons area? David Winterfeldt has a site too ... http://home.earthlink.net/~dwinterfeldt/index.html Nicolas Robert wrote: Hello, I've got a verry large validator.xml file (more than 3000 lines) , and I would like to know if it's possible

Re: Submit form

2002-10-09 Thread kiuma
Thx a lot, It was exactly what I meant! Andrew Hill wrote: Actually if you use an html:image tag (or plain html along the lines of input type=image ...) when clicked the form will be submitted without need of JavaScript. If you need to do extra stuff in javascript first you can intercept this

Re: Struts project

2002-10-09 Thread Eddie Bush
Hi, Marcus, The missing chapters aren't around. Chuck ran out of time to get them included into the book. What is there should help a *lot* though. Marcus Biel wrote: Thanks, just downloaded the entire book - eventhough some chapters seem to be missing: 8, 14,(chapter 14 was chapter 15),

RE: PlugIn init method called twice?

2002-10-09 Thread phpsurf
don't you have two different modules declaring the same plugin ? the plugins are called once per module where they are declared ... maybe this can help -Original Message- From: Matt Veitas [mailto:[EMAIL PROTECTED]] Sent: mercredi 9 octobre 2002 15:43 To: Struts Users Mailing List

RE: Beginner ClassNotFoundException

2002-10-09 Thread Sri Sankaran
This list is for all struts users, beginners alike. Your problem could be because * your class LoginForm isn't in the classpath -- is it in WEB-INF/classes or WEB-INF/lib either as a .class or in a jar. If you correct it accordingly * your class LoginForm is actually in a package so that the

Re: Struts-Layout 1b1

2002-10-09 Thread Jean-Noel Ribette
At 16:43 09/10/2002, you wrote: I've had to modify the code to ad the titleKey functionality to the layout tags. I've had to call it hintKey since title key would not be too intuitive in the struts-layout perspective. Is that support added to 1b1 yet, if not are you planning on adding.

Struts-Apache Config utilizing mod_jk

2002-10-09 Thread Leon King
Hello, I've sucessfully setup an apache-struts configuration utilizing mod_jserv and tomcat 3.2 following the documentation provided on the web. When I try to apply the same rules utilizing mod_jk, I always receive a Internal Servlet error when I try to access my page. mod_jk.conf

Re: Struts project

2002-10-09 Thread chuckcavaness
As Eddie mentioned, I ran out of time and the book was getting large, so a few of the chapters were cut. I've decided to go ahead and write a few of them and just make them freely available on this list and several Struts-releated sites. I'm starting with the Security chapter first and then

RE: xml, jsp, DOM

2002-10-09 Thread Stefan.Landro
I'm being told that you can solve the problem in a different way: You simply write back the document DOM (maybe you have to set the mime-type), and then you return null; (don't forward) I asked similar questions last week. Try checking the archives for the details. stef. -Original

RE: Access JSP in the WEB-INF

2002-10-09 Thread James Mitchell
Yes, here it is. http://www.open-tools.org/struts-atlanta/downloads James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org -Original Message- From: Borek [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 8:46 AM To: [EMAIL PROTECTED] Subject:

Re: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Vincent Stoessel
Very impressive. So this tag library sits on top of struts functionality? Jean-Noel Ribette wrote: Hello everybody I'm pleased to announce that struts-layout 1.0 beta 1 - an open source tag library for struts that allows to speed up interface creation - is available for download.

RE: How to get data back from ActionForm to HTML form

2002-10-09 Thread Rohra, Prakash N. ,,DMDC/BEAU
Hmmm I looked in the example application (editResgistration). I have similar code, but still doesn't work for me. Here is snippets of my code: In struts-config.xml form-bean name=personnelForm type=blankApp.PersonnelForm/ action

Re: xml, jsp, DOM

2002-10-09 Thread Frederic Barozzi
You're rigth. but , in an other hand all my software users want: - a garantee of standar. - a complete source code. - and all reasons that explain lib uses and architecture choices. For example, it was difficult to explain the Struts framwork choice. Why don't you use standar java classes, they

uae logic:notEqual to compare with several values

2002-10-09 Thread Cathy Osekizoglu
Hi, dear: I want to use logic:notEqual to compare with several values. Can I use logic:notEqual name=myForm property=myProperty value=3, 6/logic:notEqual? If I use: logic:notEqual name=.. property=... value=3 logic:notEqual name=.. property=.. value=6 doSomething

Re: xml, jsp, DOM

2002-10-09 Thread Eddie Bush
Frederic Barozzi wrote: You're rigth. but , in an other hand all my software users want: - a garantee of standar. - a complete source code. - and all reasons that explain lib uses and architecture choices. For example, it was difficult to explain the Struts framwork choice. Why don't you use

Re: xml, jsp, DOM

2002-10-09 Thread Brian Hickey
Frederic, I can give you the business case for Struts. Read on if you dare... Struts allows the separation of layers (the Model/View/Controller) in any application. This provides many things including assignment of skills to specific areas. Database developers get to do database development.

RE: [OT - BeanUtils.populate] 'Case' of property name

2002-10-09 Thread Gideon, Thomas
Are you using quotes around your aliases in your SQL? We found the trick to getting Oracle to respect case was to quote the alias. At least this is true of version 8.1.x. Thomas Gideon Sr. Software Developer B2eMarkets 301.230.2236 Tel. 301.230.2248 Fax. [EMAIL PROTECTED] www.B2eMarkets.com

Re: Struts project

2002-10-09 Thread Bradley G Smith/R6/USDAFS
Excellent. Thanks. I placed an order for the book (and several others) last week. I look forward to the additional material. Brad chuckcavaness

Re: [ANNOUNCE] struts-layout 1.0b1

2002-10-09 Thread Jean-Noel Ribette
At 17:18 09/10/2002, you wrote: Very impressive. So this tag library sits on top of struts functionality? Yes, struts-layout is the last brick - it generates the output for the user. The differences between a struts application using the struts-html taglib and an application using the

Re: uae logic:notEqual to compare with several values

2002-10-09 Thread Craig R. McClanahan
On Wed, 9 Oct 2002, Cathy Osekizoglu wrote: Date: Wed, 9 Oct 2002 11:58:15 -0400 (EDT) From: Cathy Osekizoglu [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED], Frederic Barozzi [EMAIL PROTECTED] Subject: uae

Re: uae logic:notEqual to compare with several values

2002-10-09 Thread Cathy Osekizoglu
Craige: Thank you for your reply. I am not familar with JSTL. I will learn it later. Now, I need a quick fix on this problem. Could you or anybody help me? Thank you. Craig R. McClanahan [EMAIL PROTECTED] wrote: On Wed, 9 Oct 2002, Cathy Osekizoglu wrote: Date: Wed, 9 Oct 2002 11:58:15

RE: [OT - BeanUtils.populate] 'Case' of property name

2002-10-09 Thread Jerry Jalenak
Thomas, Tried this yesterday, and then again today after I got your reply. I keep getting an Oracle error ORA-00923: FROM keyword not found where expected Here is the snippet. ps = con.prepareStatement(SELECT DISTINCT case_detail_1.case_id 'id',

RE: Struts project

2002-10-09 Thread Susan Bradeen
Mastering Jakarta Struts by James Goodwill is also a very good resource for a beginner. Susan Bradeen Andrew Hill [EMAIL PROTECTED] 10/09/2002 09:37 AM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:

RE: Avoid Heavy Use of Logic Tags ???

2002-10-09 Thread Robert
I think that statement Using custom tags for logic provides little benefit... is bit vague. I would say that custom tags the do PRESENTATION logic are of benefit, e.g. iterators, formatting, html controls, etc. all fit into that category for me. You are right, you have to do it somehow, where

Re: Avoid Heavy Use of Logic Tags ???

2002-10-09 Thread Eddie Bush
... and now that we have the JSTL you can have your tags optimized into actual code. It's my understanding, for example, that a forEach tag would be translated into an actual while (or was it for ... anyway, you get the point). So, you're bypassing the tag-usage overhead some. Hopefully

RE: JBoss-3.0.3_Tomcat4_1_12

2002-10-09 Thread Theo Harper
Looks like there's a problem with JBoss's integration with Tomcat 4.1.12. I tried the standard structs blank example and that would not deploy, although it would deploy on a vanilla tomcat 4.1.12. I have posted a bug report for JBoss and reverted to 4.0.4 for now, but I was looking forward to

RE: JBoss-3.0.3_Tomcat4_1_12

2002-10-09 Thread James Mitchell
Could be your version or environment, I'm running JBoss3.0.3/Tomcat 4.1.12 and the only problem with struts-blank is a missing message key. The struts-example is running fine. James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org -Original Message- From: Theo

RE: Struts project

2002-10-09 Thread kirusshna
Good work. You should also touch on taglibs which will be very useful. Thanks kirusshna -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 8:11 AM To: Struts Users Mailing List Subject: Re: Struts project As Eddie mentioned, I ran

RE: How to get data back from ActionForm to HTML form

2002-10-09 Thread Wendy Smoak
When I access /getpersonnel.do action, I expect that after my PersonnelAction.execute() function returns and personnel.jsp is executed, I would see HTML text controls filled with RANK and PG values. But they appear blank. What am I missing here..?? It looks pretty similar to

RE: JBoss-3.0.3_Tomcat4_1_12

2002-10-09 Thread Theo Harper
Looks like I need to do a little more investigation. For info though, Fresh download of JBoss-3.0.3_Tomcat-4.1.12. JDK 1.4.1 (FCS) Windows XP SP1 (or Windows 2000 SP3) Fresh download of struts blank example CLASSPATH is empty. What set-up do you have?

RE: JBoss-3.0.3_Tomcat4_1_12

2002-10-09 Thread James Mitchell
Exact same setup (minus SP1 on XP) James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org -Original Message- From: Theo Harper [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 1:56 PM To: 'Struts Users Mailing List' Subject: RE:

RE: JBoss-3.0.3_Tomcat4_1_12

2002-10-09 Thread Theo Harper
Surely not a bug add by Mr Gates himself ;-) -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: 09 October 2002 19:00 To: Struts Users Mailing List Subject: RE: JBoss-3.0.3_Tomcat4_1_12 Exact same setup (minus SP1 on XP) James Mitchell Software Engineer/Struts

RE: Access JSP in the WEB-INF

2002-10-09 Thread micael
How does the: Jim, How does logic:forward name=index/ in myapp/index.jsp get you to the myapp/WEB-INF/index.jsp? Micael At 11:18 AM 10/9/2002 -0400, you wrote: Yes, here it is. http://www.open-tools.org/struts-atlanta/downloads James Mitchell Software Engineer/Struts Evangelist

RE: Struts project

2002-10-09 Thread chuckcavaness
That's actually Chapter 8 of my O'Reilly book. It never got posted for review because I was writing it literally right up to my deadline. However, it is included in the book. Chuck Good work. You should also touch on taglibs which will be very useful. Thanks kirusshna -Original

RE: How to get data back from ActionForm to HTML form

2002-10-09 Thread Rohra, Prakash N. ,,DMDC/BEAU
Ok..I figured it out... For html:text tag, there is an attribute named name which means following: The attribute name of the bean whose properties are consulted when rendering the current value of this input field. If not specified, the bean associated with the form tag we are nested within is

RE: Access JSP in the WEB-INF

2002-10-09 Thread James Mitchell
I define a global forward. ... ... global-forwards forward name=index path=/WEB-INF/jsp/index.jsp/ ... ... James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org -Original Message- From: micael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October

RE: Access JSP in the WEB-INF

2002-10-09 Thread micael
Never mind, Jim. Global forward -- duh! Brain freeze there for a moment! At 11:18 AM 10/9/2002 -0400, you wrote: Yes, here it is. http://www.open-tools.org/struts-atlanta/downloads James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org -Original Message-

RE: Access JSP in the WEB-INF

2002-10-09 Thread micael
This is very helpful to a sort of newbie like myself. Thanks for making it available. I learn best from seeing the code. This is worth more to me than ten books. At 11:18 AM 10/9/2002 -0400, you wrote: Yes, here it is. http://www.open-tools.org/struts-atlanta/downloads James Mitchell

RE: Struts project

2002-10-09 Thread micael
When is this decoder ring going to arrive? Is it on time? At 06:08 PM 10/9/2002 +, you wrote: That's actually Chapter 8 of my O'Reilly book. It never got posted for review because I was writing it literally right up to my deadline. However, it is included in the book. Chuck Good work.

Help with Dynamic Includes

2002-10-09 Thread Greg Cutler
Hello - I'm new to the Struts architecture, and am writing a small application to teach myself. I've got the basic concepts and simple design patterns, but am having a problem trying to structure part of my presentation logic in a struts-like way. I'd like to build up part of a page by including

RE: Struts project

2002-10-09 Thread kirusshna
Chuck, I will grab the book when it gets released. kirusshna -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 11:08 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: Struts project That's actually Chapter 8 of my

RE: Access JSP in the WEB-INF

2002-10-09 Thread James Mitchell
Thank you. I've spent many a late night by the laptop getting totally immersed in the Struts codebase. Sometimes, if you hold up a Conk shell to your ear, you can hear me pecking away on some distant shore ;) LOL Thanks to the almighty Gurus answering questions over the years. They have helped

RE: Struts project

2002-10-09 Thread chuckcavaness
Not exactly sure what you mean by decoder ring, but assuming you're referring to the O'Reilly book, I just got an email that it would be in stock at places on Nov. 11. However, the Mastering Struts book from James Goodwill is already out and has got some decent reviews. I think the book from

Help With Mod_JK config with struts

2002-10-09 Thread Leon King
Hello, I need help configuring struts to work with mod_jk. I've sucessfully setup an apache-struts configuration utilizing mod_jserv and tomcat 3.2 following the documentation provided on the web. When I try to apply the same rules utilizing mod_jk, I always receive a Internal

RE: [OT - BeanUtils.populate] 'Case' of property name

2002-10-09 Thread Gideon, Thomas
Single quotes and double quotes mean different things in PL/SQL and are not interchangeable. You need to use double quotes for your column aliases, the single quotes are causing Oracle to expect something other than a column alias. You may also need to use the as keyword between the column name

RE: Struts project

2002-10-09 Thread Charles McClain
Chuck: You're obviously not old enough to remember decoder rings. It's from an early kids' TV (and possibly dating back to radio, I can't remember) show called Captain Midnight. The Captain and his crew communicated via their secret decoder rings when they needed to, and if I remember, they

  1   2   >