RE: Does instanceof work?

2004-03-21 Thread Steve Raeburn
An instanceOf tag does exist in the Jakarta Taglibs 'Unstandard' taglib. http://jakarta.apache.org/taglibs/sandbox/doc/unstandard-doc/intro.html That's the only place I know of. Steve -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED] Sent: March 21, 2004 6:33 AM

Problem with Tiles

2004-03-17 Thread steve . mullarkey
Hi I am having a problem with a simple Tiles based site using the classicLayout. The problem is that the menu only appears on the first page - if I select a link to another page the footer,body and copyright are rendered but the menu is missing. Here is the tiles-defs.xml ; ?xml version=1.0

collection of strings (newbie question)

2004-03-09 Thread steve hazelwood
Cannot find bean myId in any scope. I can understand that cos myId is a String not a bean. What should I use instead of bean:write ? Steve ___ Yahoo! Messenger - Communicate instantly...Ping your

Re: collection of strings (newbie question)

2004-03-09 Thread steve hazelwood
Solved, well done. I'm glad I put 'newbie' in the subject line now :-) Thanks, Steve On 9 Mar 2004 at 11:03, Daniel Henrique Alves Lima wrote: Have you import logic taglibs ? steve hazelwood wrote: I have an action that creates a bean. That bean has a property myStrings that returns

Re: Suggestion needed on good Struts book

2004-03-08 Thread Steve Hill
. O'Reilly also puts out a Jakarta Struts Pocket Reference that is handy to have around. Each book has its good points and bad points - for FredB, the best thing to do is take a look at all of them at the local bookstore and decide which best fits the user's learning level and style. -Steve

Re: Struts 1.1 on Tomcat 5.0.18? Solved.

2004-02-13 Thread Steve Hill
? Which version of JDK and Tomcat does it affect? On 02/11/2004 12:55 AM Steve Hill wrote: Tomcat 5 comes with Jasper 2 enabled by default - it has jasper-compiler.jar and jasper-runtime.jar in the tomcat5\common\lib directory already. So, that can't be it. (There is not a jasper.jar that I could

Struts 1.1 on Tomcat 5.0.18?

2004-02-10 Thread Steve Hill
Is anyone here successfully using Struts 1.1 on Tomcat 5.0.18? I am getting java.lang.IllegalStateException: zip file closed errors with any struts-using code and am wondering if this is a bug and I should go back to an earlier version of one or the other. Thanks.

Re: Struts 1.1 on Tomcat 5.0.18?

2004-02-10 Thread Steve Hill
I had sent a previous message to this list with a complete error listing, but I'll clarify. I downloaded and installed a new installation of Tomcat 5.0.18. I then downloaded and installed a new installation of struts 1.1, copying the documentation and example application war files into Tomcat's

Re: Struts 1.1 on Tomcat 5.0.18?

2004-02-10 Thread Steve Hill
Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 3:31 PM Subject: RE: Struts 1.1 on Tomcat 5.0.18? Did you add the jasper compiler jars (jasper.jar, jasper-compiler.jar,jasper-runtime.jar) -Original Message- From: Steve Hill [mailto:[EMAIL PROTECTED] Sent: Tuesday

Tomcat5.0.18 with Struts1.1 example: zip file closed error?

2004-02-09 Thread Steve Hill
Has anyone had problems getting the Struts1.1example to work with Tomcat 5.0.18? I have been getting the following errors (only first 2 lines each shown here, for abbreviation - entire error message at bottom): exception: org.apache.jasper.JasperException: Unable to compile class for JSP at

How do you submit a page and not change values

2004-02-02 Thread Hunt, Steve
If you use either html:button, html:submit or html:cancel buttons they generate input type=button html. So how can you create a screen for example with 1 field and 2 buttons, a submit and a do Not Submit button, both of which navigate the user to a results screen? Regards Steve

RE: How do you submit a page and not change values

2004-02-02 Thread Hunt, Steve
that this answers your question - if not then sorry if i am just repeating stuff that you already know! :) regards, Claire :) - Original Message - From: Hunt, Steve [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Monday, February 02, 2004 9:06 AM Subject: How do you

RE: Validation error messages

2004-02-02 Thread Hunt, Steve
in the resource file where the error message is defined use {0} to parametize it. eg address.invalid=Address {0} is not a valid email address. When you construct the actionError add the parameter to the constructor ie. new ActionError(address.invalid, address) Regards Steve -Original

RE: Validation error messages

2004-02-02 Thread Hunt, Steve
address To explicitly get the value submitted into the error message I think you'd have to take a look at the validation framework code and modify that. Regards Steve -Original Message- From: Glenn, Scott [mailto:[EMAIL PROTECTED] Sent: 02 February 2004 16:30 To: 'Struts Users Mailing List

RE: stop user from clicking the submit button twice

2004-01-30 Thread Hunt, Steve
U can also use the struts token functions to detect when a page has been submitted twice in the actionclass and not start the processing twice. -Original Message- From: Simon McCaughey [mailto:[EMAIL PROTECTED] Sent: 30 January 2004 10:26 To: Struts Users Mailing List Subject: Re: stop

RE: Dealing wiht exception in DispatchAction

2004-01-26 Thread Hunt, Steve
Marco If these are expected exceptions catch them and forward to a failure page with whatever actionErrors objects and messages you wish to create. Or throw them all and handle the different messages in your exceptionHandler class. Regards Steve -Original Message- From: Marco Mistroni

RE: XML and JSP

2004-01-20 Thread Hunt, Steve
Have a look at XTags, a very powerful way to manipulate xml for display in jsps. Regards Steve -Original Message- From: Prashanth.S [mailto:[EMAIL PROTECTED] Sent: 20 January 2004 09:06 To: [EMAIL PROTECTED] Subject: XML and JSP Hi all, can anyone tell me a convinient way to display

RE: XML and JSP

2004-01-20 Thread Hunt, Steve
to do many complex querying,adding and deleting elements,attributes in xml file...? Thanks Prashanth Hunt, Steve [EMAIL PROTECTED] wrote: Have a look at XTags, a very powerful way to manipulate xml for display in jsps. Regards Steve -Original Message- From: Prashanth.S [mailto:[EMAIL

RE: Disable validator framework

2004-01-16 Thread Hunt, Steve
=methodToCall value=Cancel onclick=bCancel=true;/ Regards Steve -Original Message- From: Mohan Radhakrishnan [mailto:[EMAIL PROTECTED] Sent: 16 January 2004 06:34 To: 'Struts Users Mailing List' Subject: Disable validator framework Hi We are using dispatch action and validator

RE: Disable validator framework

2004-01-16 Thread Hunt, Steve
=Task/ Thanks Mohan -Original Message- From: Hunt, Steve [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 2:05 PM To: 'Struts Users Mailing List' Subject: RE: Disable validator framework Mohan, If you use the html:cancel type of button rather than html:submit the validation

RE: html:select example

2003-12-30 Thread Steve Raeburn
I have some examples of Struts tags, including html:select, at http://www.ninsky.com/struts Various other examples are listed at http://struts.sourceforge.net/community/examples.html Steve Sorry if this is a duplicate message, sent the first one from the wrong address :-( -Original

RE: Oracle DataSource configuration

2003-12-29 Thread Steve Muench
and setup is at: http://otn.oracle.com/sample_code/products/jdev/bc4jtoystore/readme.html Hope this helps. Steve Muench - Technical Evangelist, Product Mgr, Developer, Author http://radio.weblogs.com/0118231/ _ From: Ed Dowgiallo [mailto:[EMAIL PROTECTED] Sent: Monday

RE: struts and JDeveloper 9.03

2003-12-29 Thread Steve Muench
your application with Struts 1.1 Final if you don't want to yet move up to JDeveloper 9.0.4. http://radio.weblogs.com/0118231/stories/2003/07/07/configuringTheBc4jToyStoreApplicationToUseTheStruts11FinalRelease.html Steve Muench - Technical Evangelist, Product Mgr, Developer, Author - Oracle

RE: .NET: We are just like Struts... only better.

2003-12-29 Thread Steve Muench
://otn.oracle.com/products/jdev/htdocs/adfprimer/index.html Steve Muench - Technical Evangelist, Product Mgr, Developer, Author - Oracle http://radio.weblogs.com/0118231/ -Original Message- From: Nick Faiz [mailto:[EMAIL PROTECTED] Sent: Sunday, December 28, 2003 17:55 To: 'Struts Users Mailing List

RE: ClassCastException coming from DynaValidatorForm.validate()- bug or a feature?

2003-12-21 Thread Steve Armstrong
at that, I can see how things might get screwed up. Cheers, -Steve -Original Message- From: Janice [mailto:[EMAIL PROTECTED] Sent: Friday, December 19, 2003 2:25 PM To: [EMAIL PROTECTED] Subject: re: ClassCastException coming from DynaValidatorForm.validate()- bug or a feature? I went

RE: Solved super.init() dies silently after migration from struts 1.0 to struts 1.1

2003-12-03 Thread Steve Raeburn
as you go. I'm sure if you take a look around there are options for IDEs and standalone editors. Steve -Original Message- From: Ralf Hauser [mailto:[EMAIL PROTECTED] Sent: December 2, 2003 11:20 PM To: [EMAIL PROTECTED] Subject: Solved super.init() dies silently after migration from

RE: Validator Framework Value Object ActionForm

2003-11-21 Thread Steve Armstrong
Hi, I assume that you would just validate on the nested form property named contactValue.email. Cheers, -Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2003 4:38 AM To: [EMAIL PROTECTED] Subject: Validator Framework Value Object

RE: Accessing a static final constant from Class in JSP

2003-11-18 Thread Steve Armstrong
Well, you can use a JSP expression which strictly speaking isn't a scriptlet. So, after you do your import, you can use constants like bean:write name=%= GSOPConstants.A_BEAN_NAME % property=%= GSOPConstants.A_BEAN_PROPERTY %/ Cheers, -Steve -Original Message- From: Larry Meadors

RE: A Walking Tour of the Struts Example Application does not match the code!

2003-10-30 Thread Steve Raeburn
is worth a look. Steve -Original Message- From: Steven Woody [mailto:[EMAIL PROTECTED] Sent: October 29, 2003 10:27 PM To: structs-user Subject: A Walking Tour of the Struts Example Application does not match the code! Hi, list The A Walking Tour of the Struts Example

Re: Tags creating Tags

2003-10-27 Thread Steve Apeero
For what you want to do what is wrong with using a jsp:include page=common_tags.jsp flush=true / where common_tags.jsp contain all the tags and html you wanted to declare in a seperate tag. Stephan From: Lukas Bradley [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To:

RE: browser cache.

2003-10-25 Thread Steve Raeburn
There is. http://jakarta.apache.org/struts/userGuide/configuration.html#controll er_config Steve -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of kimbuba Sent: October 25, 2003 10:27 AM To: [EMAIL PROTECTED] Subject: browser cache. Hello! is there a way to tell

RE: far reaching db question

2003-10-24 Thread Steve Raeburn
learning Struts just for a 5 page app, that would be a good place to cut your teeth if you plan to continue to use Struts on a larger scale. And 5 page apps have a habit of growing into 10 page apps which have a habit of growing into 20 page apps... ;-) Steve David

RE: [ANN] Struts and JavaServer Faces talk by Craig McClanahan on 11/5

2003-10-23 Thread Steve Raeburn
Craig's just being modest. He's *already* an Internet TV star :-) http://www.theserverside.com/events/library.jsp#mcclanahan Steve -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED] Sent: October 22, 2003 10:58 PM To: Struts Users Mailing List Cc: 'Ruth, Brice

RE: Good list for JSTL questions?

2003-10-23 Thread Steve Raeburn
The best place would be the Jakarta Taglibs user list (http://jakarta.apache.org/taglibs/#MailingLists). The guys that wrote JSTL hang out there. I'm sure if it's reasonably Struts related, you'll get some help here too. Steve -Original Message- From: Ruth, Brice [mailto:[EMAIL

RE: Trimming the extra spaces in the output page

2003-10-20 Thread Steve Raeburn
by as much as 50%) - Split the page into smaller, lighter pages. Steve -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: October 20, 2003 11:40 AM To: 'Struts Users Mailing List' Subject: RE: Trimming the extra spaces in the output page Someone mentioned

RE: Help with form bean [urgent]

2003-10-20 Thread Steve Raeburn
/br/ /logic:iterate Your form property must be a String array to receive multiple values. Steve p.s. Please don't put 'urgent' in your subject line. It may not achieve the effects you desire ;-) -Original Message- From: Rajat Pandit [mailto:[EMAIL PROTECTED] Sent: October 20, 2003 12

RE: Keep Them In the Database Or In the Properties File?

2003-10-20 Thread Steve Raeburn
States are unlikely to ever change so a properties file is a good bet. Bizarrely, countries tend to change more frequently so you might want to have those in a database where they could be more easily maintained, depending on how up to date you need to be. Steve -Original Message- From

RE: Off Topic: A suitable JVM could not be found

2003-10-20 Thread Steve Raeburn
the JDK on Websphere, since it doesn't seem to be supported. Personally, I wouldn't risk it in a production environment. Steve -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: October 20, 2003 8:00 PM To: [EMAIL PROTECTED] Subject: Off Topic: A suitable JVM could

RE: struts-el and messages

2003-10-17 Thread Steve Raeburn
The nightly build has a method that allows you to store messages in the session. They are automatically removed after being displayed. Action: protected void saveMessages(HttpSession session, ActionMessages messages) Steve -Original Message- From: Chris Searle [mailto:[EMAIL

RE: repopulating options of html:select when validation fails

2003-10-17 Thread Steve Raeburn
Set your input parameter to the *action* that prepares the page, not directly to the page itself. Steve -Original Message- From: Marc Dugger [mailto:[EMAIL PROTECTED] Sent: October 17, 2003 1:33 PM To: [EMAIL PROTECTED] Subject: repopulating options of html:select when validation

Re: Re: SSLExt and Struts Workflow?

2003-10-16 Thread Steve Ditlinger
Tim: Without looking into it too deeply (and without knowing anything about Workflow), I can say the easiest thing from the sslext side is to redefine SecureActionConfig to extend WorkflowMapping, just as you say. If you have problems, I can look at it more. Steve From: Tim Shadel [EMAIL

RE: IMPORTANT: how to tell

2003-10-15 Thread Steve Raeburn
A little bit more than a weeks worth ;-) http://jakarta.apache.org/struts/resources/archives.html Steve -Original Message- From: Barry Volpe [mailto:[EMAIL PROTECTED] Sent: October 15, 2003 9:23 AM To: Struts Users Mailing List Subject: Re: IMPORTANT: how to tell The list does

RE: setting application context

2003-10-07 Thread Steve Raeburn
if possible, or a PlugIn. Steve -Original Message- From: Kannan [mailto:[EMAIL PROTECTED] Sent: October 7, 2003 8:35 AM To: Struts Users Mailing List Subject: setting application context Hi all! I have a lot of drop down menus in my web application. I need to set them as collection

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

2003-10-07 Thread Steve Raeburn
frameworks might be useful, but the vanilla JSP topic is surely dead and buried by now. I guess it's a sign of success when people who obviously know nothing about Struts start taking swipes at it :-) Steve -Original Message- From: Adam Levine [mailto:[EMAIL PROTECTED] Sent: October 7

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

2003-10-07 Thread Steve Raeburn
://www.javaworld.com/javaworld/jw-12-1999/jw-12-ssj-jspmvc.html http://otn.oracle.com/oramag/webcolumns/2003/techarticles/mills_mvc.html Steve -Original Message- From: Adam Levine [mailto:[EMAIL PROTECTED] Sent: October 7, 2003 10:35 AM To: [EMAIL PROTECTED] Subject: Re: [Article

RE: [OT] International telephone number formatter component????

2003-10-02 Thread Steve Raeburn
need to use it. Telephone numbers are as personal and varied as postal codes and I just *hate* it when some site tells me my house doesn't exist because their rules can't handle my post code. Good luck! Steve -Original Message- From: Mick Knutson [mailto:[EMAIL PROTECTED] Sent

RE: [POLL] ActionFrom vs DynaActionForm

2003-09-30 Thread Steve Raeburn
#2 - It was I revelation when I realised I didn't need to write ActionForms! (But one day soon I'm going to look at XDoclet to see what that can do for me). Steve -Original Message- From: Mainguy, Mike [mailto:[EMAIL PROTECTED] Sent: September 30, 2003 9:52 AM To: [EMAIL PROTECTED

RE: Application Resources Error messages

2003-09-30 Thread Steve Raeburn
/ arg1 key=${var:minlength} resource=false/ arg2 key=${var:maxlength} resource=false/ var var-nameminlength/var-name var-value4/var-value /var var var-namemaxlength/var-name var-value12/var-value /var /field Steve -Original

RE: Change the .do extension

2003-09-29 Thread Steve Raeburn
http://jakarta.apache.org/struts/userGuide/configuration.html#dd_config_mapp ing Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: September 29, 2003 7:09 AM To: [EMAIL PROTECTED] Subject: Change the .do extension Hello! Is there a possibility

RE: default for parameter

2003-09-29 Thread Steve Raeburn
http://jakarta.apache.org/struts/api/org/apache/struts/actions/DispatchActio n.html Take a look at the 'unspecfied' method. Steve -Original Message- From: deepaksawdekar [mailto:[EMAIL PROTECTED] Sent: September 29, 2003 5:17 AM To: Struts Users Mailing List Subject: default

RE: Reasons for using Struts

2003-09-28 Thread Steve Armstrong
Hi, This is a good place to start: http://nagoya.apache.org/wiki/apachewiki.cgi?StrutsBenefits Cheers, -Steve -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Saturday, September 27, 2003 12:53 AM To: [EMAIL PROTECTED] Subject: Reasons for using Struts What

RE: how to tell invalid session vs session timed out

2003-09-27 Thread Steve Armstrong
Hi, I use the cookie approach outlined here: http://www.mail-archive.com/[EMAIL PROTECTED]/msg63933.html There is also another thread involving this issue starting here: http://www.mail-archive.com/[EMAIL PROTECTED]/msg72578.html Cheers, -Steve -Original Message- From: Warren Chen

RE: html_image property value not submitted

2003-09-27 Thread Steve Armstrong
; document.forms[myForm].submit();' / In the action associated with your form, you can then consult the action property of your form bean to determine the type of image button that has been selected. Cheers, -Steve -Original Message- From: Norbert Spemm [mailto:[EMAIL

RE: ApplicationResources.properties

2003-09-24 Thread Steve Raeburn
Steve -Original Message- From: Navjot Singh [mailto:[EMAIL PROTECTED] Sent: September 24, 2003 12:22 PM To: Struts Users Mailing List Subject: RE: ApplicationResources.properties it just should be in classpath. |-Original Message- |From: Martin Gainty [mailto:[EMAIL

Re: How to build an application that is organized as BC4JToyStore example from scratch ?

2003-09-23 Thread Steve Muench
/see in the demo, please post a question in the JDeveloper OTN discussion forum and we'll try to help. __ Steve Muench - Developer, Product Mgr, Java/XML Evangelist, Author Building a Web Store with Struts and BC4J (BC4J Toy Store Demo

Re: SSLExt and Struts Workflow?

2003-09-23 Thread Steve Ditlinger
is improperly hand-entered. HTH, Steve - Original Message - From: Mick Knutson [EMAIL PROTECTED] To: struts [EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 2:54 PM Subject: SSLExt and Struts Workflow? Does SSLExt and Struts Workflow work together? --- Thanks Mick Knutson http

RE: Can I have 1 struts jar file for multiple servers/applications

2003-09-23 Thread Steve Raeburn
http://jakarta.apache.org/struts/userGuide/configuration.html#config_a dd For more explanation see: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.htm l Steve -Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: September 23, 2003 9:08 PM

[OT] Hibernate joins JBoss

2003-09-20 Thread Steve Raeburn
I know a lot of Struts developers use Hibernate as their persistence mechanism so this announcement may be of some interest. http://www.hibernate.org/136.html and more at http://forum.hibernate.org/viewtopic.php?t=515 Steve

RE: [FRIDAY] Save the Servers!

2003-09-19 Thread Steve Raeburn
LOL TLAP, Ar! (For those grogged up land-lubbers who wouldn't know a bilge rat from a beauty - http://tinyurl.com/mguv) Steve -Original Message- From: James Childers [mailto:[EMAIL PROTECTED] Sent: September 19, 2003 7:15 AM To: Struts Users Mailing List Subject: RE: [FRIDAY

RE: Is it possible to remove *.do or /do/* from the URL

2003-09-19 Thread Steve Raeburn
Sadly, it's flash-based and it doesn't work in Mozilla. Steve -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Vic Cekvenich Sent: September 19, 2003 5:07 AM To: [EMAIL PROTECTED] Subject: Re: Is it possible to remove *.do or /do/* from the URL The best back

Re: InvalidClassException....

2003-09-17 Thread Steve Ditlinger
This sounds like you need to make sure that each server/node in the cluster has the same version of the class. The failover node is trying to deserialize a class that was serialized on the original node as a different version of the same class. Steve - Original Message - From: Trieu

[ANN] new version of sslext for Struts 1.10 posted

2003-09-16 Thread Steve Ditlinger
Struts 1.10 release. STeve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Stackoverflow after DB inactivity

2003-09-16 Thread Steve Raeburn
with the MySQL connection which times out after 8 hours, but you should be able to check for that and reconnect if necessary or use the autoReconnect parameter (http://www.mysql.com/documentation/connector-j/index.html) Steve -Original Message- From: Vikram Goyal [mailto:[EMAIL PROTECTED

[OT] RE: Stackoverflow after DB inactivity

2003-09-16 Thread Steve Raeburn
Additional info on why MySQL autoReconnect does not work when autoCommit is false. http://www.mail-archive.com/[EMAIL PROTECTED]/msg70196.html Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: sslext can only get it to post

2003-09-15 Thread Steve Ditlinger
URL is available only by HTTPS. (Maybe this has changed in 8.1, I'll check it out.) Tomcat definitely has the superior implementation on this issue. Steve - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Cc: Stephane Grenier

RE: Retrieving the ModuleConfig object

2003-09-13 Thread Steve Raeburn
Look at the Javadoc for o.a.s.Globals.MODULE_KEY With it you can get the current module from the request, or append the module prefix (name) to look up any module in the ServletContext. Steve -Original Message- From: Marco Tedone [mailto:[EMAIL PROTECTED] Sent: September 13, 2003 2

RE: Q : Calling an action via a java URL ?

2003-09-13 Thread Steve Raeburn
I haven't actually used it, but the Commons HttpClient (http://jakarta.apache.org/commons/httpclient/index.html) might of interest to you. Steve -Original Message- From: Henry Voyer [mailto:[EMAIL PROTECTED] Sent: September 13, 2003 8:50 PM To: [EMAIL PROTECTED] Subject: Q : Calling

ANN: JDeveloper 10g Preview (Struts-savvy IDE)

2003-09-12 Thread Steve Muench
/products/jdev/collateral/prodtour10g.html Enjoy. __ Steve Muench - Developer, Product Mgr, Java/XML Evangelist, Author Building a Web Store with Struts and BC4J (BC4J Toy Store Demo) http://otn.oracle.com/sample_code/products/jdev

RE: YASJR, Part Duex

2003-09-11 Thread Steve Raeburn
QA process that you would use for your own code, but you save a lot of time (and them a lot of money) by building on others' work. In short, their guarantee of quality comes not on a piece of paper, but in the quality of the people they employ. Steve -Original Message- From: Gregory F

RE: YASJR, Part Duex

2003-09-11 Thread Steve Raeburn
: 1) You can review the code yourself. 2) Thousands of other developers also review the changes. 3) The committers review changes. 4) Only a small number of people actually have commit access. Good luck with your project! Steve -Original Message- From: Gregory F. March [mailto:[EMAIL

RE: YASJR (Yet Another Struts Justification Request)

2003-09-10 Thread Steve Raeburn
. Out of interest, what web server is your bank running its website on? Apache, by any chance? :-) Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: YASJR (Yet Another Struts Justification Request)

2003-09-10 Thread Steve Raeburn
Enterprise class, no less. Tell 'em BEA said it was OK :-) Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[Announce] Enhancement added to sslext

2003-09-06 Thread Ditlinger, Steve
. with the appropriate specified protocol. Thanks, Steve Ditlinger - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [Announce] Enhancement added to sslext

2003-09-06 Thread Ditlinger, Steve
H, thanks for brining this to my attetntion. My email service provider has beeen bogged down by virus and I have been missisng mail. I'll take a look today. Thanks, Steve -Original Message- From: Robert Taylor [mailto:[EMAIL PROTECTED] Sent: Saturday, September 06, 2003 7:43 AM

RE: how to start a background process using a struts action ?

2003-09-05 Thread Steve Hall
JVM, not in Tomcat's. For performance reasons, you may even run it on a different server than the one running Tomcat. If you executed your process in your Struts class you wouldn't have this option. I hope this at least gives you something to think about. Steve Hall Programmer Analyst Alterra

[OT] Test

2003-09-04 Thread Steve Apeero
Sorry testing, I have not been able to connect Stephan _ Get 10MB of e-mail storage! Sign up for Hotmail Extra Storage. http://join.msn.com/?PAGE=features/es -

FormFile object keeping ActionForm from serializing

2003-09-04 Thread Steve Apeero
I have a Action Form that contains a FormFile object that holds the uploaded file for an image. When the container trys to serialize my form an NotSerializableException is being thrown. I have looked at the source code and found the FormFile's baseObject DiskFile does not implement the

RE: Commons Versions bundled with Struts 1.1

2003-09-03 Thread Steve Raeburn
Build requirements (including jakarta-oro) are here: http://jakarta.apache.org/struts/userGuide/installation.html#Prerequisites Steve http://www.ninsky.com/struts/ -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: September 2, 2003 6:41 AM To: Struts Users

RE: [OT] Delays in list posts arriving (was [OT] Scheduling)

2003-09-01 Thread Steve Raeburn
. The best thing to do is just sit it out until things get better. Just be patient if someone's post seems to be hopelessly out of touch with the thread. It might also help if we kept list traffic down by keeping off-topic posts to a minimum ;-) Steve http://www.ninsky.com/struts/ -Original Message

RE: Formatting form data inside the *view* (JSP's)

2003-08-28 Thread Steve Raeburn
The Struts bean:write tag offers a format attribute (or formatKey if you want to use a resource file). But JSTL would be a better option if you can use it in your environment. Steve http://www.ninsky.com/struts/ -Original Message- From: Sasha Borodin [mailto:[EMAIL PROTECTED] Sent

RE: J2EE IDE

2003-08-28 Thread Steve Raeburn
There's a wiki page for this topic that might be a better place to post IDE reviews that on the mailing list. http://nagoya.apache.org/wiki/apachewiki.cgi?MyFavoriteIDEAndWhy Steve -Original Message- From: Butt, Dudley [mailto:[EMAIL PROTECTED] Sent: August 27, 2003 8:15 AM

RE: Validator and DispatchAction

2003-08-28 Thread Steve Raeburn
, HttpServletResponse response) throws IOException, ServletException { ... should be throws Exception { Try changing that and see how you get on. Steve http://www.ninsky.com/struts/ - To unsubscribe, e

RE: DynaValidator and two fields with identical content

2003-08-27 Thread Steve Raeburn
Take a look at the examples here http://www.ninsky.com/struts/ The validator example shows one way of doing exactly this. (It's very similar to David's example). If you can use the nightly build, then the validwhen rule can alsoe compare fields. Steve -Original Message- From: Jiri

RE: Validator and DispatchAction

2003-08-27 Thread Steve Raeburn
This is the relevant part of the message: Action[/tr518page1] does not contain method named error Does your DispatchAction class, com.ewd.biztax.actions.Tr518page1Action, contain a method named error? Steve http://www.ninsky.com/struts/ -Original Message- From: Venkat Jambulingam

RE: How to get a String object from request scope.

2003-08-27 Thread Steve Raeburn
Just reference your string by its name. e.g. bean:write name=MY_NAME/ Will display the value of the String. Steve http://www.ninsky.com/struts/ -Original Message- From: Fumitada Hattori [mailto:[EMAIL PROTECTED] Sent: August 27, 2003 9:02 AM To: [EMAIL PROTECTED] Subject: How

RE: J2EE IDE

2003-08-27 Thread Steve Raeburn
if this is a duplicate). Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Validator and DispatchAction

2003-08-27 Thread Steve Raeburn
your code and it dispatches perfectly well here. (BTW my previous message about Exceptions was a red herring. Although you should be throwing Exception, I tried it as you had written and it works.) Steve http://www.ninsky.com/struts/ -Original Message- From: Venkat Jambulingam [mailto

RE: Another missing attribute in html-el

2003-08-27 Thread Steve Raeburn
When I try adding it, I get a JSP compiler error - Attribute accesskey invalid according to the specified TLD. I can only suggest that you still have an old copy of struts.jar. Try starting with a fresh copy of struts-blank.war from the Struts 1.1 distribution and try that. Steve http

RE: Html-el:hidden tag!?!?!

2003-08-26 Thread Steve Raeburn
rtexprvaluetrue/rtexprvalue /attribute Disclaimer: I haven't tested this workaround so it may not work. I'll take a look and fix it in the nightly build when I get a chance. Steve -Original Message- From: David Friedman [mailto:[EMAIL PROTECTED] Sent: August 25, 2003 3:27 PM To: Struts

RE: Struts custom tags tutorial : urgent!!

2003-08-26 Thread Steve Raeburn
should stop what they are doing and tend to your needs. In reality, URGENT!! tends to get your message ignored. Please, don't use URGENT!! unless your house is on fire. And even then you'd probably be better off calling the fire service than emailing me :-) /rant Steve http

RE: Struts custom tags tutorial

2003-08-26 Thread Steve Raeburn
tdfmt:formatNumber type=currency value=${widget.price}//td /tr /c:forEach /table /c:if ... This will print out a row in the table for each Widget in your Collection. JSTL requires JSP 1.2 or later and you should use it in preference to the Struts tag libraries where you can. Steve http

RE: Database Pooling and Factory Bean

2003-08-26 Thread Steve Raeburn
an Ibatis tutorial which looks good http://www.reumann.net/do/struts/ibatisLesson1 Steve http://www.ninsky.com/struts/ -Original Message- From: greg [mailto:[EMAIL PROTECTED] Sent: August 25, 2003 11:09 PM To: 'Struts Users Mailing List' Subject: Database Pooling and Factory Bean Ok

RE: Java Question

2003-08-26 Thread Steve Raeburn
This question was asked and *answered* yesterday. http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED] he.orgmsgNo=86724 Is there any reason you are repeating the it? Steve -Original Message- From: Kapadia Mitesh-C23457 [mailto:[EMAIL PROTECTED] Sent: August 24, 2003 11:21 AM

RE: Checkboxes

2003-08-26 Thread Steve Raeburn
Atachments don't make it through the list, Mike. Best bet would be to make your file available on a publicly accessible website and post the link, or if it's small enough, post the text in the body of your message. Steve -Original Message- From: Mike Jasnowski [mailto:[EMAIL

RE: Another missing attribute in html-el

2003-08-26 Thread Steve Raeburn
1.1. There's also a styleClass attribute but I suspect that's a little less useful ;-) If you download the nightly build you'll able to use it. Or wait for 1.2 which should be along soon. Steve http://www.ninsky.com/struts/ -Original Message- From: Slattery, Tim - BLS [mailto:[EMAIL

RE: Another missing attribute in html-el

2003-08-26 Thread Steve Raeburn
could be wrong. Could you tell me what version of the taglibs you are using and what version of the HTML or XHTML dtd you are referring to? Steve http://www.ninsky.com/struts/ -Original Message- From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED] Sent: August 26, 2003 11:25 AM

RE: Another missing attribute in html-el

2003-08-26 Thread Steve Raeburn
at the source, there *was* an accesskey attribute but it was removed before 1.1 Beta 3. This explains more - http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13337 Check that you actually are running the release version of 1.1 and you don't have any old jar or .tld files hanging around. Steve http

RE: Struts-example database

2003-08-25 Thread Steve Raeburn
, that requires at least a Servlet 2.3 container would be to implement a ServletContextListener. Steve http://www.ninsky.com/struts/ -Original Message- From: Derrick Brooks [mailto:[EMAIL PROTECTED] Sent: August 24, 2003 3:43 PM To: [EMAIL PROTECTED] Subject: Struts-example database I just

RE: no getter method found

2003-08-19 Thread Ditlinger, Steve
public String getLastname(){} Note the capital L -Original Message- From: Mehran Zonouzi [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 6:55 AM To: [EMAIL PROTECTED] Subject: no getter method found I have the below in my jsp page Last Name: html:text

RE: no getter method found

2003-08-19 Thread Ditlinger, Steve
/javabeans/docs/spec.html Steve -Original Message- From: Ditlinger, Steve [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 11:32 AM To: 'Struts Users Mailing List' Subject: RE: no getter method found public String getLastname(){} Note the capital L -Original

  1   2   3   4   5   6   7   >