Re: struts tags in jsp:included ~ pages

2002-03-06 Thread Ivan Siviero
!-- bar.jsp -- logic:iterate id=path name=path type=dao.daobeans.BaseLink a href=viewResource?id=jsp:getProperty name=path property=id/page/a /logic:iterate Just a simple question: the null attribute value is the attribute 'path' in logic iterate tag or in the jsp gerProperty tag? I know

RE: Pre Populating Fields - bit of a newbie question

2002-03-06 Thread Steve Earl
John, There's a (beta) datetime custom tag available at: http://jakarta.apache.org/taglibs/doc/datetime-doc/intro.html Not sure if this does exactly what you're after but it can take a java Date object - but you have to access it as a long millis - and format it into many different date

RE: Multiple submit buttons solution

2002-03-06 Thread Ronald Haring
here is what I usually use, using links and submit head javascript function go(whatAction) { document.forms[0].action.value=whataction; document.forms[0].submit(); } /script /head body html:form input type=hidden . html:hidden ... input type=text a href=go('del')bean:message

RE: Multiple Form Beans for the same for the same action ... HELP!!!

2002-03-06 Thread Ronald Haring
are both formbeans added to the page/request? Gr Ronald -Original Message- From: cool dude [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 5:41 AM To: [EMAIL PROTECTED] Subject: Multiple Form Beans for the same for the same action ... HELP!!! Hi Guyz, I

RE: Multiple Form Beans for the same for the same action ... HELP !!!

2002-03-06 Thread keithBacon
you need to specify the form bean in the name attribute of your action mapping. (hence will need 2 mappings). cheers - Keith --- Ronald Haring [EMAIL PROTECTED] wrote: are both formbeans added to the page/request? Gr Ronald -Original Message- From: cool dude [mailto:[EMAIL

Re: bean:write and formatKey

2002-03-06 Thread Oleg V Alexeev
Hello Matt, Check the last night build - I just commit fix for it. Wednesday, March 06, 2002, 4:18:47 AM, you wrote: MR I've encountered a possible bug in the use of formatKey in bean:write. As MR always it's more likely to be my error but I'd appreciate it if anyone could MR have a look. I'm

weblogic SunOs 5.8 struts

2002-03-06 Thread Ivan Siviero
Yesterday i posted a message but no one has replyed yet. I was having problems with xerces.jar in deploying my struts application on weblogic - SunOs5.8. After some searching i ended up to substitute the xerces.jar with xercesImpl.jar and now a new exception is raised. I suppose nobody has

Re: Multiple submit buttons solution

2002-03-06 Thread @Basebeans.com
Subject: Re: Multiple submit buttons solution From: Pim [EMAIL PROTECTED] === Hi Ronald, So what you actually do is adjusting the html:form action, right? Example: html:form action = createregistration And if I push the deletebutton -- a href=go('deleteregistration')bean:message

DispatchAction and image input

2002-03-06 Thread Robert Taylor
I would like to use the functionality of DispatchAction in conjunction with the html:image tag, but in reading the documentation and looking over the source code (ver. 1.0), it appears that it is not possible. The scenario I have is very common. A single form with 3 image buttons (create,

RE: Multiple submit buttons solution

2002-03-06 Thread Ronald Haring
Ah no sorry, my mistake. It will all go to the same action form. I have created a field called action. A better name would have been navigation. In the action form I check this action/navigation field and then redirect to the right page. But you can do this with multiple forms, e.g. script

RE: Multiple submit buttons solution

2002-03-06 Thread Ronald Haring
Possible correction to myself, if using multiple forms, I think all the fields will be submitted, so the navigate value may be submmitted twice and hence not be the one you expect. I think remembering seeing this behaviour but I am not sure anymore. Gr Ronald -Original Message- From:

RE: Extra Path Info Problem!!! HELP!!!

2002-03-06 Thread Peter Pilgrim
Well this would solve some URL: design problems. FInally mapped URL `http://jcorporate.com/products/expresso' can become a reality. More seriously where is this path-mappings XML coming from? I have never seen this grammar before. -- Peter Pilgrim ++44 (0)207-545-9923

RE: DispatchAction and image input

2002-03-06 Thread Galbreath, Mark
Yes. STFA http://www.mail-archive.com/struts-user%40jakarta.apache.org/ Mark -Original Message- From: Robert Taylor [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 5:43 AM It is relatively easy to fix this problem, but I was wondering if it had already been addressed. --

RE: weblogic SunOs 5.8 struts

2002-03-06 Thread Galbreath, Mark
Never heard of xercesImpl.jar but apparently you have something wrong in your struts-config mapping. And aren't you a little old for the self-pity thing? Mark -Original Message- From: Ivan Siviero [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 5:24 AM Yesterday i posted a

RE: Multiple submit buttons solution

2002-03-06 Thread Peter Severin
Hi Ronald, Sorry, maybe I should put it in the subject. I would like to solve this problem without using javascript. Thanks, Peter. -Original Message- here is what I usually use, using links and submit head javascript function go(whatAction) {

RE: weblogic SunOs 5.8 struts

2002-03-06 Thread John Mammen - (ITD)
BTW, I had problem with Struts and Struts validator on weblogic6.1sp2. I fixed it by putting regexp.jar in weblogic classpath and removing it from lib directory and struts and struts validator is working fine. -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: 06

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
No. -Original Message- From: Sam Lai [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 7:07 PM Can anyone show me how to integrate struts in Jbuilder6? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Emaho, Ghoot
Goto 'Tools | Configure Libraries' menu, add new entry, and select your Struts.jar. Then goto 'Project | Project Properties' menu select the 'required libraries' tab, select add and then choose your newly added struts. This then enables struts within your project. Hope this helps Ghoot

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
You going to spoon-feed him, too? This integration is clearly explained in the documentation; the guy didn't even bother to look. By answering such lame questions you encourage more lame questions. Mark -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: Role-based Validation ACTION ! Extension Question

2002-03-06 Thread Emaho, Ghoot
Matt Thanks for that. My mistake - i did mean the action extension ! Your answer didnt really tell me anything - sorry ! Mabe you can try and redescribe your point. My point is that if you can achieve all that is needed via the web.xml, then why have/use the action extension. I figured there

Greate Tag for building a pager

2002-03-06 Thread Dirk Storck
The Tag http://jsptags.com/tags/navigation/pager/ is a greate Tag for building a pager. Easy to use and simple ... ___ Bitte beachten Sie

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Emaho, Ghoot
Mark While I understand your frustration, I dont share it ! I was happy to help. You seem to vent a lot of frustration at newbie users. So they havent read all the docs - so what ! I remember what its like to be a beginner and come up against people with your attitude. Chill out and stop

Forwarding above webapps level

2002-03-06 Thread SUPRIYA MISRA
In Struts can you forward to a page above webapps like tomcat\files\download.csv. This file is created dynamically and needs limited access. So I need to check session variables and then forward to this location for download.

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Amitkumar_J_Malhotra
yes , i fully agree with what emaho has said in the mail rgds amit malhotra -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Multiple submit buttons solution

2002-03-06 Thread @Basebeans.com
Subject: Re: Multiple submit buttons solution From: Pim [EMAIL PROTECTED] === Ok, What I want is using multiple actionforms. The reason for this is because I want to use different validations. I want no validation for create, I want a validation for Save and I want a validation for say,

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
I do not vent anger at newbies though I may be stern at times, and I, too, remember what it is like learning something new...because I do it everyday. I appreciate your generosity but I go by the old adage, Give a man a fish and he'll not be hungry today; teach him to fish and he'll never be

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
He didn't say anything; he wrote it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 7:33 AM To: Struts Users Mailing List Subject: RE: Newbie Struts and Jbuilder6 yes , i fully agree with what emaho has said in the mail rgds

RE: DispatchAction and image input

2002-03-06 Thread Robert Taylor
Thanks Mark, I did search the archives for DispatchAction image and nothing relative showed up. I obviously missed something. thanks for the help. robert -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 6:27 AM To: 'Struts Users

RE: Multiple submit buttons solution

2002-03-06 Thread Ronald Haring
I dont think this will work. in the jsp I have this line: html:form action=/controller/ If I look at the generated html code it will look like: form name=controllerForm method=POST action=/wsa/controller.do;jsessionid=sfkzljzkp1 What you are suggesting So what we figured out was different

Struts Community Opportunity

2002-03-06 Thread Emaho, Ghoot
Hello all I think there is an opportunity here, particularly with the imminent 1.1 release. I imagine there are going to be a whole bunch of new questions when 1.1 is released. There IS a lot of documentation for Struts. The work Ted and others have done is great. But perhaps a new

RE: Struts Community Opportunity

2002-03-06 Thread Galbreath, Mark
I think this is a GREAT idea, Emaho; let us know how we can get this started. Remember, also, that Ted has requested suggestions for the revised FAQ he is authoring. Mark -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 8:08 AM To: Struts

Re: Struts Community Opportunity

2002-03-06 Thread Ted Husted
Any and all patches to the code and documentation are welcome. All the official documentation is under CVS and in XML format. If anyone ever has anything they they want to offer to the documentation portion of the project, please submit it in the XML format, be sure it builds with the rest of

Re: Struts Community Opportunity

2002-03-06 Thread Ted Husted
Yes -- see http://jakarta.apache.org/struts/newbie.html and if people want start submitting enhancement requests to Bugzilla regarding the new 1.1 features, that would be helpful too. Just don't be afraid to frontload the work, and give us something we can just cut-and-paste (or even an XML

RE: Struts Community Opportunity

2002-03-06 Thread keithBacon
likewise - great idea, not that I know what Chiki is. I like the idea of an updateable repository of knowledge. The problem with the mail archive is that a small % of it is valuable but it is lost amidst the clutter (ie. amongst my ramblings). Hopefully you'll have a demo availble soon? ---

RE: Multiple submit buttons solution

2002-03-06 Thread Ronald Haring
another way I have thought of is this submit always to the same action in your action you can then do public ActionMapping perform(..){ SomeGeneralBean someBean = SomeGeneralBeanFactory.getInstance( form ); someBean.execute(); } and have 3 beans extend the SomeGeneralBean

Re: http://chiki.emaho.org

2002-03-06 Thread Galbreath, Mark
Hey Emaho, I'm getting a 404 on your URL. Mark

RE: Struts Community Opportunity

2002-03-06 Thread Ronald Haring
sounds like a good plan, unfortunately our firewall doesnt allow me to connect to port 8080 so I have never been able so far to look at your application Ghoot Gr Ronald -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 2:08 PM To:

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread keithBacon
Hey Mark, he didn't wrote nothing - he typed it cheers --- Galbreath, Mark [EMAIL PROTECTED] wrote: He didn't say anything; he wrote it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 7:33 AM To: Struts Users Mailing List

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
Yeah, but was it strongly typed? -Original Message- From: keithBacon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 8:37 AM To: Struts Users Mailing List Subject: RE: Newbie Struts and Jbuilder6 Hey Mark, he didn't wrote nothing - he typed it cheers --- Galbreath, Mark

RE: http://chiki.emaho.org

2002-03-06 Thread Emaho, Ghoot
Mark, The site is running and myself and others are accessing at this moment. Perhaps there is some other reason you cannot access it. Does your firewall permit port 8080 access ? Maybe it's something else, but the site is definately up ! Cheers Ghoot -Original Message- From:

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread SUPRIYA MISRA
For people who aren't great at jargon, a helper class for struts-users STFU -Sworn to F*** UP RTFM -Read the F***ing Manual Man -do we really need to use this language? From: Galbreath, Mark [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List'

RE: Struts Community Opportunity

2002-03-06 Thread Emaho, Ghoot
Thanks Ted. Perhaps any community site would only link to the official documentation (this is pretty standard), rather than be 'part' of the release. This would make sense and perhaps - in time - reduce some of the effort on you guys. As for hosting, well I could do that here at my company

RE: Struts Community Opportunity

2002-03-06 Thread Emaho, Ghoot
Ronald, Sorry about that ! All you need to do if you are interested is download the WAR and run under Tomcat. Check the site for details, but it shouldnt take you more than 10 minutes to have it running locally. Let me know if you give it a try, Cheers Ghoot -Original Message-

RE: bean:write and formatKey

2002-03-06 Thread Matt Read
I've just downloaded the 20020306 build and no improvement. Are you sure it would have got into that build? -Original Message- From: Oleg V Alexeev [mailto:[EMAIL PROTECTED]] Sent: 06 March 2002 09:11 To: Struts Users Mailing List Subject: Re: bean:write and formatKey Hello Matt

RE: Struts Community Opportunity

2002-03-06 Thread Ronald Haring
lol, I will give it a try, but I cant connect to your site from work, since port 8080 is blocked (I think that is the problem, since I see a redirect in my status bar to port 8080, followed by a 404 error) Gr Ronald -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]]

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread keithBacon
I think the list needs good cop/bad cop style. lots of diff. people ask lots of diff. levels of question we need lots of diff. people to answer them. Certainly people that aren't prepared to spend the time learning themselves need to be put off a litle (but only a little). It's pretty hard work

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
Okay, let's just test this debate with a test of observation and temperament. Try to find out what's wrong with this picture. If you can't figure it out, be patient and it will become evident. Make sure your sound is on. http://www.rockafett.net/swf/whatswrong.swf Mark -Original

RE: Struts Community Opportunity

2002-03-06 Thread Galbreath, Mark
I've offerred my website as host to Struts documentation before and my offer remains. In fact, there may be some stuff there already - I haven't worked on it for a year. Mark -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 8:36 AM To:

RE: Role-based Validation ACTION ! Extension Question

2002-03-06 Thread Matt Raible
I think the role-based actions extension makes it easier for sites that have hundreds of actions. Yes, you are correct in that everything can be done in web.xml. Matt --- Emaho, Ghoot [EMAIL PROTECTED] wrote: Matt Thanks for that. My mistake - i did mean the action extension ! Your

RE: Struts Community Opportunity

2002-03-06 Thread Ronald Haring
ok thx Ghoot, I got it, trying it out later Gr Ronald -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 2:48 PM To: Struts Users Mailing List Subject: RE: Struts Community Opportunity :) ok, try going to sourceforge then !

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
It's Shut the f*ck up, and these are standard hacker idioms that have been around a lot longer than you. In fact, RTFM originated at MIT in the mid-80s. Mark -Original Message- From: SUPRIYA MISRA [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 8:38 AM To: [EMAIL PROTECTED]

RE: http://chiki.emaho.org

2002-03-06 Thread Galbreath, Mark
Thanks, Ghoot. I have a technician checking our firewall now. -Original Message- From: Emaho, Ghoot [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 8:36 AM To: Struts Users Mailing List Subject: RE: http://chiki.emaho.org Mark, The site is running and myself and others are

Re: Struts Community Opportunity

2002-03-06 Thread Gabriel Sidler
keithBacon wrote: likewise - great idea, not that I know what Chiki is. I like the idea of an updateable repository of knowledge. The problem with the mail archive is that a small % of it is valuable but it is lost amidst the clutter (ie. amongst my ramblings). Hopefully you'll have a

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Craig Tataryn
You can save your petty sarcasm for usenet. This group is about helping people, not belittling them. Craig. From: Galbreath, Mark [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Newbie Struts and Jbuilder6

RE: Struts Community Opportunity

2002-03-06 Thread Galbreath, Mark
Very cool! This would make a great framework for collaborative Struts development. -Original Message- From: Gabriel Sidler [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 9:05 AM Here's a Wiki demo: I just recently started to setup a semi-public Wiki site to collect

RE: Struts Community Opportunity

2002-03-06 Thread Emaho, Ghoot
Gabriel I see it's built on TWiki. Chiki has many similarities to Twiki re functionality. Obviously it's written in Java using Struts (not perl). Have you taken a look at Chiki ? I'd be interested in any feedback you might have. The current release has everything you listed (except version

RE: Newbie Struts and Jbuilder6

2002-03-06 Thread Galbreath, Mark
I should have used an emoticon...it was humor. :-) -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 9:01 AM To: [EMAIL PROTECTED] Subject: RE: Newbie Struts and Jbuilder6 You can save your petty sarcasm for usenet. This group is about

Re: Struts Community Opportunity

2002-03-06 Thread keithBacon
Another excellent resource on the web. Too much information!! There is huge potential in these things!. --- Gabriel Sidler [EMAIL PROTECTED] wrote: keithBacon wrote: likewise - great idea, not that I know what Chiki is. I like the idea of an updateable repository of knowledge. The

Re: Traffic

2002-03-06 Thread Ted Husted
For the record, I'm personally -1 on unhelpful one-word responses to questions posted to a public list like this one. IMHO if you subscribe to a public list, you have agreed to take the good with the bad. If the point of a response is to refer someone to the documentation or a Web site, I would

Issue with data sources in mySQL

2002-03-06 Thread Juan Alvarado
Recently I tried setting up a data source in my struts config file to work with mySQL. The version of tomcat I'm using is 3.2.2 and the mySQL drive I is the type mm.mysql version 2.0.6 . What happens is that after going through the whole set up, I start my tomcat and then try to connect to

RE: paging taglib and struts?

2002-03-06 Thread John Menke
You would need to calculate the total number of rows which are to be displayed and put this into the request/session for the jsp to use. Thanks for the tip. The pager docs don't actually say this it is sorta assumed. Docs could be alot better. -Original Message- From: Malcolm Wise

Re: Need help getting a production/stable version of v1.1

2002-03-06 Thread Bruce Geerdes
Ted Husted posted the 1/12 build on his web site. You can see his message at http://www.mail-archive.com/struts-user@jakarta.apache.org/msg23631.html;. Bruce Read, Karen wrote: We started using a version of Struts from a nightly build without source code. This version includes support

RE: simper-NeXt

2002-03-06 Thread John Menke
Just give it a bash. Run a simper model through the NeXt tags. I lay my money on it working as-is. Sounds great. I will do this today. Just trying to understand the internals a little better. So as long as the simper beans have bean property conformity (eg: getMyProperty, setMyProperty)

NeXt question

2002-03-06 Thread John Menke
Is it a requirement of NeXt that the outermost bean in a nested structure extend ActionForm? The tutorial is structured in this manner but it does not appear to say this in the docs explicitly. I'm guessing that having the outermost bean extend ActionForm is tied into having struts call the set

RE: simper-NeXt

2002-03-06 Thread Bryan Field-Elliot
Simper's representation of a database row is in the class SimperBean. SimperBean is a relatively shallow extension of the DynaBean (actually DynaBean is an interface -- BasicDynaBean is a concrete class which SimperBean extends) -- see the commons project BeanUtils for the source to DynaBean.

Re: Need help getting a production/stable version of v1.1

2002-03-06 Thread Ted Husted
You might just start with the nightly build. If you are not doing anything fancy with your ActionServlet, this should work just fine for you, and will be basis for the beta release (as soon as we get around to that). Alternatively, this is the Nightly Build with source from Dec 25/26, just

OT: DHTML Menus and Form Objects

2002-03-06 Thread John M. Corro
This is off topic from Struts, but I was wondering if anyone else has run into this If you have one of those DHTML/JS pulldown menus, it'll get hidden behind specific types of form objects (mostly select boxes). I've scoured google to see how to get around this and the only posts I've

Re: Poolman is gone, I hardly knew ya

2002-03-06 Thread Eddie Bush
The same discussion (about connection pools) has passed on the tomcat list recently too. I don't think I'd use the Tyrex pool. Have a look through the Tomcat Users Mailing List archive before you decide on this one. Eddie - Original Message - From: Matt Raible [EMAIL PROTECTED] To:

Tiles question: Using bean:message inside tiles:put

2002-03-06 Thread Molitor, Stephen
Is it OK to use bean:message to look up a message inside a tiles:put tag? For example: tiles:put name=title bean:message key=commissions.signingBonus.title/ /tiles:put The instantiating page might get the title like this: titletiles:getAsString name=title//title Is anyone else doing

RE: DHTML Menus and Form Objects

2002-03-06 Thread ltorrence
I think the layer thing works in very new versions of IE (newer than IE5 -- maybe starting with 5.5?). Back when I was looking at such things, the only solution I could find for IE 5 was to hide the offending form elements when the show menu function is fired. Kind of clunky, but that's exactly

Best Practice for parsing an XML file for application configuration parameters?

2002-03-06 Thread Matt Raible
I am developing an application that will require different application settings for different machines/customers. Because of this, I want to to externalize certain configuration settings to a XML file outside of web.xml - let's call this myApp.xml. I have a StartupServlet that I can parse this

RE: DHTML Menus and Form Objects

2002-03-06 Thread Assenza, Chris
To the best of my knowledge there is no workaround, it's a feature of today's browsers. No amount of finagling z-indexes is going to help. A viable option that Microsoft implemented was to hide (as in hide the layer) the select boxes whenever a menu came in contact with one, then to unhide it

RE: simper-NeXt

2002-03-06 Thread John Menke
DynaBeans/DynaClasses are supported by the latest (nightly builds) of the other beanutils classes, which is why the Struts tags like bean:write, logic:iterate, etc., all work with SimperBeans (and why I chose DynaBeans as a basis). I guess that this is what handles the conversion of a

Re: Poolman is gone, I hardly knew ya

2002-03-06 Thread Eddie Bush
Excellent point Ted. And poolman has features you won't find in many of the other connection pools currently available. Despite it no longer being supported, it seems it may still be the best solution. Thanks so much for your thoughtful words! Eddie - Original Message - From: Ted

RE: DHTML Menus and Form Objects

2002-03-06 Thread Galbreath, Mark
I forgot...check out the instructors' websites at http://staff.westlake.com/ There is a SL of DHTML stuff there. Mark -Original Message- From: Galbreath, Mark Sent: Wednesday, March 06, 2002 10:46 AM It's the opposite, John. The lower the z-index, the more foreground preference the

cannot resolve '/tags/struts-template.tld during weblogic.jspc

2002-03-06 Thread Domen, Ken
I'm just trying to precompile my jsp's using weblogic.jspc on WLS5.1sp10 and I get the following error: nested IOException: java.io.IOException: cannot resolve '/tags/struts-template.tld' into a valid tag library -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: Best Practice for parsing an XML file for application configurationparameters?

2002-03-06 Thread Peter Pilgrim
(1) I would could using JDOM for this? Depends on deployment size of the application You will need xerces.jar as well as jdom.jar. For mini applications then common digester is worth considering. Oh yes www.jdom.org (2) Yes or make it accessible as static property of the StartupServlet. --

Re: DHTML Menus and Form Objects

2002-03-06 Thread John M. Corro
Mark, you thank ; ) .guess I had it backwards...I was using a Netscape reference http://developer.netscape.com/docs/manuals/htmlguid/tags12.htm#1701758 Gave the div tags a try again w/ the corrected z-index, but unfortunately no go. Thanks again, Markor is it Mark, again thanks?

RE: Tiles question: Using bean:message inside tiles:put

2002-03-06 Thread Andre Beskrowni
i use this technique all the time, though i specify the type (can't remember why...): tiles:put name=title type=string bean:message key=commissions.signingBonus.title/ /tiles:put ab -Original Message- From: Molitor, Stephen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March

Re: Best Practice for parsing an XML file for applicationconfiguration parameters?

2002-03-06 Thread Dave Weis
On Wed, 6 Mar 2002, Matt Raible wrote: I am developing an application that will require different application settings for different machines/customers. Because of this, I want to to externalize certain configuration settings to a XML file outside of web.xml - let's call this myApp.xml. I

RE: Best Practice for parsing an XML file for application configuration parameters?

2002-03-06 Thread Galbreath, Mark
JDOM made the cover of this month's XML Magazine, should you need a primer on it. I don't know if it's online, but the URL is www.xml-mag.com. Mark -Original Message- From: Peter Pilgrim [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 10:55 AM (1) I would could using JDOM

bean:write and XSLT Coldjava taglib

2002-03-06 Thread Rajagopal V
Hi all Im using the Coldjava Taglib for XSLT Operations and the input that I feed to it is a request scope variable. xslt:ApplyXSL xslData=html.xsl bean:write name=xmlString/ /xslt:ApplyXSL I have a request scope variable called xmlString which contains a Stringified version of my DOM.

RE: Best Practice for parsing an XML file for application configuration parameters?

2002-03-06 Thread Ronald Haring
ever since the hype of xml started, people tend to forget about properties. what is wrong with a properties file nowadays? Its fast, its simple, and good enough for most configuration issues I have encountered so far. Gr Ronald -Original Message- From: Matt Raible [mailto:[EMAIL

RE: Best Practice for parsing an XML file for application confi guration parameters?

2002-03-06 Thread Hoang, Hai
JDOM is great! It's so easy to used and it's part of the JCP. Jdom.org has a bunch of tutorials and articles written about it. -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 10:03 AM To: 'Struts Users Mailing List' Subject: RE: Best

how to edit an array of records with action forms?

2002-03-06 Thread Ian Tomey
Hi all, Got an array of records and I want to put them onto the screen to edit. What is the technique to go about this? (i am using the nightly 1.1 at the moment) is it create an action form that maps a single record and create a load of them? or create an action form with the properties

RE: Best Practice for parsing an XML file for application confi guration parameters?

2002-03-06 Thread Hoang, Hai
Nothing is wrong with the properties file...Xml is just better 1. one config.xml file in one central place...it's so much easier to manage then a whole bunch of properties 2. xml handle the structure data much better then properties file -Original Message- From: Ronald Haring

RE: Best Practice for parsing an XML file for application confi guration parameters?

2002-03-06 Thread Ronald Haring
Nothing is wrong with the properties file...Xml is just better 1. one config.xml file in one central place...it's so much easier to manage then a whole bunch of properties You can put all your properties in one file as well, lets call that file config.properties 2. xml handle the

RE: Issue with data sources in mySQL

2002-03-06 Thread Immanuel, Gidado-Yisa
Juan, I recently put in a mysql JDBC driver. What I've noticed is that when the controller (ActionServlet) initializes, it tries to initialize the DataSource (using the associated connection pool?). If there is a problem with initialization, the ActionServlet init fails. The error that led to

RE: cannot resolve '/tags/struts-template.tld during weblogic.jspc

2002-03-06 Thread rgiri
I am not familiar with WLS5.1, but in WLS6.1 if the web.xml file has the following taglib declaration taglib taglib-uri/WEB-INF/struts-template.tld/taglib-uri taglib-location/WEB-INF/struts-template.tld/taglib-location /taglib it expects the struts-template.tld under the WEB-INF

RE: Poolman is gone, I hardly knew ya

2002-03-06 Thread Adriano Labate
Yes I agree too, Ted. Poolman is an excellent, highly configuable, product. I only regret that it lacks one final feature that other connection pools already have, the pooling of prepared statements. It was one of the new features of the last 2.1beta version but it seems that it was too buggy

Re: Logging Log4J in 1.1

2002-03-06 Thread David Winterfeldt
Log4J recently added some new classes. I would check that you have a version of Log4J and Commons Logging from the same time. I had some trouble too until I went and downloaded the latest version of each. David --- Chris Hane [EMAIL PROTECTED] wrote: I'm trying to get a Struts 1.0

RE: Multiple submit buttons solution

2002-03-06 Thread Maturo, Larry
We have a different solution to this problem. One of the guys I work with thought of it. It seems to work pretty well. We have a subclass of Action and a subclass of ActionFrom, that together implement the if then else test. We actually convert to integer and use the following switch

Re: NeXt question

2002-03-06 Thread Arron Bates
The real answer is... whatever makes a valid Struts form bean. What I like is that only the top bean has restrictions. Every other level down doens't care in the slightest. Arron. John Menke wrote: Is it a requirement of NeXt that the outermost bean in a nested structure extend ActionForm?

Re: Backporting mapped properties in Struts 1.0

2002-03-06 Thread Peter Pilgrim
FYI Here are my developer notes *Backup the target files beforehand* copy common-beanutils-1.2/**/PropertyUtils.java to struts-1.0.2/**/PropertyUtils.java copy common-beanutils-1.2/**/BeanUtils.java to struts-1.0.2/**/BeanUtils.java copy

Re: simper-NeXt

2002-03-06 Thread Arron Bates
Because NeXt is an extension of the original tags, it uses whatever the original tags use to get their logic happening. BeanUtils was adapted for DynaBeans, all the tags use BeanUtils, and so therefore, all the tags can use DynaBeans. Including the nested ones. In regards to how everything

Re: how to edit an array of records with action forms?

2002-03-06 Thread Arron Bates
If you're on a nightly build, you'll have the nested extension already there. It will help you make light work of iterating objects. For a pimer and tutorial, go here... http://www.keyboardmonkey.com/struts And for mor implementation detail for each of the tags, the Struts site has the most

nesting tags cannot find EmptyTag

2002-03-06 Thread Elijah Jacobs
Hi All, I am using nested-tag from Arron Bates. I have a working sample in my tomcat webapp, but when I try to run that app with my weblogic 5.1 i get this error: java.lang.NoClassDefFoundError: org/apache/struts/taglib/logic/EmptyTag I can't seem to find anything on the user group under

RES: Using Torque and Struts

2002-03-06 Thread Rubens Gama
where can i get information about Torque, please? thanks in advance Rubens Gama -Mensagem original- De: Hoang, Hai [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 6 de março de 2002 14:18 Para: 'struts-user' Assunto: Using Torque and Struts I am having hard time setting up Torque

RE: Using Torque and Struts

2002-03-06 Thread Hoang, Hai
http://jakarta.apache.org/turbine/index.html -Original Message- From: Rubens Gama [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 11:30 AM To: Struts Users Mailing List Subject: RES: Using Torque and Struts where can i get information about Torque, please? thanks in

Re: nesting tags cannot find EmptyTag

2002-03-06 Thread Arron Bates
You're running an older version of Struts I take it (1.0, 1.01)?... There's a jar made especially for these versions of Struts that doesn't have the extra tags like the empty tag. Download nested_tags_10.jar (binaries), nested_tags-src_10.jar (source) from...

  1   2   >