multiple forms on one page and population

2002-02-21 Thread rob
I have a view page that contains two forms each form has to be populated with dynamic data and each of the forms ideally would be processed by different actions when they are submitted. page with two forms. html:form action=foo html:select property=item html:options property=items

taglibs documentation (whered it go)?

2002-02-21 Thread rob
Where did the taglibs documentation go on the struts page? Used to be accessed via the taglibs link under Stable Release. The javadoc is less indicitive of how the tags work. Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

ClassNotFoundException in Weblogic 6.1

2002-02-21 Thread Vincent Lin
Hi, I create a war file with com.test.TestForm and com.test.TestAction. and deploy it to weblogic 6.1. When I access the action (/test.do). It throws an ClassNotFoundException. I've checked the war file. I do put these two file in the war file. I don't know why. Has anyone has the same

Re: How Do I trigger an actionForm reset from an Action

2002-02-21 Thread Terry Chu
Hi, the reset(mapping, request) method should be called before the properties are repopulated by the controller servlet. All we have to do is to override the method in our ActionForm class and no need to call it from Action class cause the controller will do that for us. Am I right on this

Re: EJB = bad = MS.net

2002-02-21 Thread Edward Q. Bridges
i like EJBs (note that i said like and not love). i think they have some applicability. however, a peeve of mine about EJBs and the spec is this claim of location independence. furthermore, the claim to location independence is eroding: note that in the 1.1 spec it claims: The client

Re: taglibs documentation (whered it go)?

2002-02-21 Thread keithBacon
so that why i couldn't find it! Please can we have it back pronto! = ~~ Search the archive:- http://www.mail-archive.com/struts-user%40jakarta.apache.org/ ~~ Keith Bacon - Looking for

Re: Class reloading error in Tomcat on Sun Solaris

2002-02-21 Thread @Basebeans.com
Subject: Re: Class reloading error in Tomcat on Sun Solaris From: Denis A.Vishniakov [EMAIL PROTECTED] === Are you saying restarting the server doesn't make it go away? Restart of Tomcat is the only way to restore work of the application. After restarting application work until I upload a

Re: taglibs documentation (whered it go)?

2002-02-21 Thread Konstantina Stamopoulou
Hello, The tag lib documentation is now accessible trough the link Release Notes. I realized that yesterday! cheers, Konstantina - Original Message - From: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; rob [EMAIL PROTECTED] Sent: Thursday, February 21,

html:submit button

2002-02-21 Thread Konstantina Stamopoulou
Hello, I have a problem and I can't fingure out the solution to it. Here is my case: I have a list of products (PoductBean) on my .jsp and each one of it have two buttons (html:submit) : Button1 -- Display Information for this product Button2 -- Use the information to do something else My

Re: How Do I trigger an actionForm reset from an Action

2002-02-21 Thread keithBacon
This looks like you aren't using struts in the spirit it was intended or are doing a very unusual bit of logic. (only a suggestion). --- [EMAIL PROTECTED] wrote: Hi, Could someone give a code snippet that I can use to invoke the reset method on an actionForm from my Action code? Thanks,

RE: struts-example won't run

2002-02-21 Thread keithBacon
Don't thank me - curse struts! I never had to recompile or change struts classes, I avoid such things to keep my dev. environment very simple. I'd try what Subhadra says first. Try the version of Tomcat he suggests. This is the world of open source software - well dodgy! What we need is some sort

Re: Why don't tiles cascade?

2002-02-21 Thread Cedric Dumoulin
Jim Crossley wrote: If you want to use an attribute value inside another inserted Tile, you have to pass it explicitly. In your example, you could write something like : Instead of this... tiles:insert path=/header.jsp put beanName=title beanScope=template / /tiles:insert

RE: ActionForm and default values

2002-02-21 Thread Ian Beaumont
Thanks - I think I finally get it (or though it doesn't feel right though). Wouldn't it make more sense to have a pre-initialisation action on the action that is actually connected to the form. This pre-initialisation would then populate the form. This would also sort out the problem that I've

Error handling philosophy in STRUTS

2002-02-21 Thread Tom Bednarz
Hi, I am new to Struts and currently in the process of porting a JSP based Web Application to Struts and Velocity. Personally I hate stupid error messages like 'Failed to process your order' or 'Operation failed '. These type of messages are absolutely useless. For simple applications

Re: ActionForm and default values

2002-02-21 Thread rob
- Original Message - From: Corey Klaasmeyer [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 4:09 AM Subject: RE: ActionForm and default values This is probably a common question, which should have a corresponding FAQ 'How do I

RE: Hey Struts I have another email address!

2002-02-21 Thread Galbreath, Mark
Yeah, sure thing, Chad. I'll just do that. Moron spammers. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 11:24 AM Hey Struts I just wanted to let you know I got a new email address and you will want to add it to your

Re: taglibs documentation (whered it go)?

2002-02-21 Thread Ted Husted
For the nightly build, the Taglib document been moved into the User Guide. If possible, please install the documentation locally from the struts-documentation.war in the distributions. (OK, not the distributions since Tuesday, but you know what I mean.) -- Ted Husted, Husted dot Com, Fairport

Re: Action with no forward?

2002-02-21 Thread Matt Raible
If you're willing to use standards-compliant browsers, you can use the iframe element - which allows you to imbed a frame within your page. The beauty of this is that you can even make this frame hidden and use javascript to populate values once the hidden iframe reloads. Really slick stuff -

Re: Hey Struts I have another email address!

2002-02-21 Thread Olivier Dinocourt
Completely OT, but I couldn't resist... From their Terms Of Service : -- 3. MEMBER OBLIGATIONS In consideration for this Service, you agree to provide certain information about yourself as prompted to do so by the Service, and update this information as necessary to keep it current, complete

Re: html:submit button

2002-02-21 Thread Konstantina Stamopoulou
Hi Rob, I tried this solution but the thing is that the value is set as the label of the button. Isn't there a more elegant way to do this? As far as the radio buttons concerned, my submit buttons do not apply only to the name of product but to some other configuration parameters too. So I have

Re: ActionForm and default values

2002-02-21 Thread Ted Husted
keithBacon wrote: Are we missing stuff in the struts example apps? You should be able to copy adapt them when it breaks go back copy again. Contributions welcome -:o) -- Ted Husted, Husted dot Com, Fairport NY US -- Developing Java Web Applications with Struts -- Tel: +1 585 737-3463 --

Re: ActionForm and default values

2002-02-21 Thread Ted Husted
Corey Klaasmeyer wrote: This is probably a common question, which should have a corresponding FAQ I've drafted a list of FAQs we probably need here: http://jakarta.apache.org/struts/newbie.html Any help in fleshing these out would be appreciated. Ideally, submissions should be in the XML

forwarding multi-part requests

2002-02-21 Thread rob
I left a message about this a while back but I don't think it was ever answered to my satisfaction. Although I did get a couple of hack solutions which I have utilized (thank you for those). When submitting a multi-part request to an action handler handling the multi-part request and then

Re: ActionForm and default values

2002-02-21 Thread Ted Husted
Ian Beaumont wrote: Wouldn't it make more sense to have a pre-initialisation action on the action that is actually connected to the form. This pre-initialisation would then populate the form. Many forms are initialized differently for different purposes. One way for a new record, another way

Re: Hey Struts I have another email address!

2002-02-21 Thread keithBacon
It's always a pleasure to see a lying scum spamming advertiser exposed discredited. Thanks! --- Olivier Dinocourt [EMAIL PROTECTED] wrote: Completely OT, but I couldn't resist... From their Terms Of Service : -- 3. MEMBER OBLIGATIONS In consideration for this Service, you agree to

Re: Class reloading error in Tomcat on Sun Solaris

2002-02-21 Thread keithBacon
You can't complain then! If you are running multiple live web-apps on Tomcat you are pushing your luck! Maybe you need a commercial server. The more you pay the more flexible the operational environment (I would hope!!). --- Struts Newsgroup [EMAIL PROTECTED] wrote: Subject: Re: Class reloading

Re: how to decide how many beans to use?

2002-02-21 Thread keithBacon
1 form bean per form. --- Domen, Ken [EMAIL PROTECTED] wrote: I'm running into a problem. I started out with one FormBean. It's basically a flattened domain object. I'm using the Dave W. Validation package and in the validation.xml, you define that for a particular FormBean you

Re: Why don't tiles cascade?

2002-02-21 Thread Jim Crossley
Cedric Dumoulin [EMAIL PROTECTED] writes: An export attribute with a value of true would essentially cause the tile to inherit the context of its parent[s]. I am agree with such feature. But, should we propose 'export' or 'import' (parent attribute) ;-). It depends on your

Re: html:submit button

2002-02-21 Thread SUPRIYA MISRA
On your jsp html:submit property=X value=X/ html:submit property=Y value=Y/ On Action Page String button1=request.getParameter(X); String button1=request.getParameter(Y); if(button1 != null){ //X was clicked //do whatever like forward to another actionpage } else if(button2 != null){ //Y was

Re: Error Messages and tags

2002-02-21 Thread Eddie Fung
Thanks for this ! I've decided to use the Message Tag.. Cheers eddie == At 01:00 AM 21/02/2002, you wrote: 1 - I do mean use ApplicationResources. You can look a message up from an Action as desribed here:- http://www.mail-archive.com/struts-user@jakarta.apache.org/msg21986.html

Re: Hey Struts I have another email address!

2002-02-21 Thread Olivier Dinocourt
my pleasure. :-) BTW Shouldn't we rather keep this for tomorrow ? - Original Message - From: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 1:10 PM Subject: Re: Hey Struts I have another email address! It's

Struts e Netbeans.

2002-02-21 Thread Felipe F. Palma Dias
Hello. I am a new user of netbeans with struts. I have an application with the following structure: /myapp --- WEB-INF -- *.tld --- lib -- struts.jar. but when I try to execute my jsp files the tomcat delay to initiate and after that it appears the following message: The Tomcat server

Re-post: Using bean:write in a html tag value property

2002-02-21 Thread Andrew . Goodnough
The more I think of this the less it seems like it should be possible. The value attribute is unparsed char data (CDATA). How does everyone else do this in a Struts MVC way? It seems very common to me that you would want to use the value to one bean to set the value of another. Something

RE: EJB = bad = MS.net

2002-02-21 Thread Juan Alvarado \(Struts List\)
Wasn't this suppose to be a Struts mailing list??? ** Juan Alvarado Internet Developer -- Manduca Management (786)552-0504 [EMAIL PROTECTED] AOL Instant Messenger: [EMAIL PROTECTED] -Original Message- From: Arron Bates [mailto:[EMAIL

RE: Struts e Netbeans.

2002-02-21 Thread ltorrence
It's a bug with NetBeans that occurs with any app that writes a lot of text to the console (like Struts does on startup) To make the error message go away, just change these entries in your web.xml file for the struts actionserverlet: init-param param-namedebug/param-name

RE: html:submit button

2002-02-21 Thread Mattos, John
Hi Konstantina, I don;t know if you have a solution yet, but I have two separate ones for you. The first is more struts oriented. If you have the following in your JSP: !-- JSP Snippet-- html:submit property=btnProcess bean:message key=button.processSuspends / /html:submit html:submit

400

2002-02-21 Thread Tim Sawyer
My strange problem just got stranger. I decided that I'd try out the code on Orion, which is our deployment server, rather than Tomcat. After fixing some problems where Orion was stricter than Tomcat, I finally got so I could run the code which used 100% CPU on Tomcat. This time, I get a

Re: html:submit button

2002-02-21 Thread stak
Hi John, I was suggested to use the tag html:hidden where I can store any information I want without this to be visible to the user and it works. I really appreciate the detail of your answer. Have a nice day, Konstantina - Original Message - From: Mattos, John [EMAIL PROTECTED] To:

Re: action and form contract

2002-02-21 Thread keithBacon
I've often wondered what other people do for this sort of thing. Here's my style for constructive comment. (no insults please!). I'm trying to write code that can run for 10 years be easy to maintain. == 1 - Handling form pointer null - My preferred style in perform method is

RE: Struts Clone?

2002-02-21 Thread Chris Means
Maybe it'll be cheaper g -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 5:44 AM To: Struts (E-mail) Subject: Struts Clone? http://www.jotobjects.com/ http://www.jotobjects.com/ Mark -- To unsubscribe, e-mail:

Re: Hey Struts I have another email address!

2002-02-21 Thread keithBacon
I'm having a day off tomorrow - this is my friday. --- Olivier Dinocourt [EMAIL PROTECTED] wrote: my pleasure. :-) BTW Shouldn't we rather keep this for tomorrow ? - Original Message - From: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]

Re: ActionForm and default values

2002-02-21 Thread keithBacon
working on it - slowly - too slowly. --- Ted Husted [EMAIL PROTECTED] wrote: keithBacon wrote: Are we missing stuff in the struts example apps? You should be able to copy adapt them when it breaks go back copy again. Contributions welcome -:o) -- Ted Husted, Husted dot Com,

Re: 400

2002-02-21 Thread keithBacon
I have mine defined with a / in front actionpath=/TimTest --- Tim Sawyer [EMAIL PROTECTED] wrote: My strange problem just got stranger. I decided that I'd try out the code on Orion, which is our deployment server, rather than Tomcat. After fixing some problems where Orion was stricter

Re: Struts e Netbeans.

2002-02-21 Thread Felipe F. Palma Dias
Thanks a lot. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 10:55 AM Subject: RE: Struts e Netbeans. It's a bug with NetBeans that occurs with any app that writes a lot of text to the console (like Struts does on startup) To

html:file tag

2002-02-21 Thread Henry Lu
How do i retrieve the content of file in the formAction program? The only thing I get from the tag is the file name (exa: 1.txt). How do I get the content of the file? --- Henry Lu MCIT

select:option SELECTED

2002-02-21 Thread Syed Niaz
Hi Iam checking for the current value of a drop down with a request parameter in my Action class. When they are not equal ,I want to explicitly set the selected value of the Combo box to a specified value . How do I do this ? (Is it using the option tag?) Can someone give me the syntax .

Re: Hey Struts I have another email address!

2002-02-21 Thread Olivier Dinocourt
Oh, OK ! Mark G., some comment ? - Original Message - From: keithBacon [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 3:26 PM Subject: Re: Hey Struts I have another email address! I'm having a day off tomorrow - this is my friday.

form validation

2002-02-21 Thread Pritchard, Sean
I've run into a bit of a sticking point on form validation and I'm wondering whether anyone else has encountered this. I have an Action EditUserAction that works with a UserForm to edit a user's data (e.g. first name, last name. email, etc.). In my Action, I check the request for a valid token.

Re: Hey Struts I have another email address!

2002-02-21 Thread MARK NICHOLS
boxfrog.com is a DBA for Intercosmos Media Group, Inc. Intercosmos Media Group is registered to Sigmund Solares (650 Poydras Street, Suite 2311, New Orleans, LA, 70130, 504-679-5170) Why not sign up a bunch of new anonymous e-mail accounts using his information for the contact information?

How to prevent users from jumping into the middle of a series of pages

2002-02-21 Thread Kanoza, Douglas (NCI)
I've been using Struts for all of a week now, and think it's the coolest thing since sliced bread (however, that also means there's a ton I don't know about it). That being said, I'm seeking opinions on the best way to prevent users from jumping into the middle of an app. Right now, I have

!!!!!!Attention Log4J Users !!!!!!!!!!!!!

2002-02-21 Thread Praveer Mathur
- Original Message - From: Praveer Mathur [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, February 20, 2002 2:14 PM Subject: Log4J - Log file gets overwritten Hi ! I am using Log4J version 1.1.3 downloaded from jakarta.apache.org. Everything

RE: EJB = bad = MS.net

2002-02-21 Thread keithBacon
Is there anything wrong with the design below? Is there anything simpler? (Are EJB's simpler?). I typed this from memory from my last job. it was never really seriously tested but worked in practice with low volumes. try { // gets connection - ensures AutoCommit off starts transaction.

Re: How to prevent users from jumping into the middle of a series of pages

2002-02-21 Thread keithBacon
I'm not the expert on this - but search the archive for 'workflow' --- Kanoza, Douglas (NCI) [EMAIL PROTECTED] wrote: I've been using Struts for all of a week now, and think it's the coolest thing since sliced bread (however, that also means there's a ton I don't know about it). That

Re: select:option SELECTED

2002-02-21 Thread keithBacon
Don't access the parms from the request in your Action class. Access them via the get/set methods of the struts formBean. To select a value on your page call the setter in the formbeam passing that value. You should find examples in archives. Ask again if any problem --- Syed Niaz [EMAIL

RE: EJB = bad = MS.net

2002-02-21 Thread Emaho, Ghoot
This has been an interesting discussion on many levels, but there doesnt seem to be much 'real world' substance there. We have been developing enterprise software (some utilising EJB, some not) since EJB were way back at 0.7 (ish) (1997). Systems with 1000's or 10,000's concurrent users. We

Re: !!!!!!Attention Log4J Users !!!!!!!!!!!!!

2002-02-21 Thread Olivier Dinocourt
Yeah ? This is the Struts Users Mailing List. - Original Message - From: Praveer Mathur [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 1:00 PM Subject: !!Attention Log4J Users ! - Original Message -

Re: How to prevent users from jumping into the middle of a series of pages

2002-02-21 Thread James Mitch
I am assuming that you are writing a wizard-like series of pages where the user hits next, next, next, and then finish (or however you want it). I posted a pretty good (I think) bit of info on this process last week. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg23803.html It

img tag

2002-02-21 Thread Henry Lu
How to specify the src property in the img tag in a struts/jsp file? I tried every way possible to specisy the path, but I always get an empty image on the web page. Why? --- Henry Lu MCIT

Re: img tag

2002-02-21 Thread Jim Crossley
Are you including the taglib descriptor in the jsp page? View the source in the web browser to get a better idea of what's going on. Post examples of what you're experiencing if you want better help. Henry Lu [EMAIL PROTECTED] writes: How to specify the src property in the img tag in a

Re: 400 - Fixed

2002-02-21 Thread Tim Sawyer
Good plan. This: actionpath=/TimTest type=com.pancredit.webtoolkit.modules.addfindparty.SelectPartyAction name=addFindPartyModuleForm scope=session input=/AddFindParty/FindPartyResults.jsp /action Gives a 404, page not

RE: img tag

2002-02-21 Thread Vaddiyar, Raghuramudu
Try using like this. html:img page=/imagefilename/. -Original Message- From: Jim Crossley [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 4:19 PM To: Struts Users Mailing List Subject: Re: img tag Are you including the taglib descriptor in the jsp page? View the

RE: EJB = bad = MS.net

2002-02-21 Thread Juan Alvarado \(Struts List\)
Good response Ghoot. This has probably been the best response to this whole debate so far. One thing I have learned about this whole discussion is that you definetely should not marry yourself to one specific technology because that's when you will get into the kind of non-sense this discussion

Powered By Struts List

2002-02-21 Thread Flannery, George
This has probably been asked many times, but I can't seem to find the answer on the web site or in the mail archives. How do I get listed in the Powered By Struts list in the Resources section of the Jakarta/Struts web site? In particular, I want to add the following link:

RE: html:submit button

2002-02-21 Thread Christian Velez
Hi Konstantina, The html:submit is used to pass the parameters of the html:form it applies to. Whatever properties you include in your form, they are included in the request parameter. Here is an example: html:form action=/viewElementDesign.do bean:message key='mainMenu.viewDesignPatterns'/

RE: !!!!!!Attention Log4J Users !!!!!!!!!!!!!

2002-02-21 Thread Arik Levin ( Tikal )
Nice graphics. -Original Message- From: Olivier Dinocourt [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 4:51 PM To: Struts Users Mailing List Subject: Re: !!Attention Log4J Users ! Yeah ? This is the Struts Users Mailing List. - Original Message

RE: Struts Clone?

2002-02-21 Thread Robert
Looks pretty similar, although it replaces taglibs with their own 'scriptlets' of sorts. Robert -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 5:44 AM To: Struts (E-mail) Subject: Struts Clone? http://www.jotobjects.com/

RE: How to prevent users from jumping into the middle of a series of pages

2002-02-21 Thread Dave J Dandeneau
We implemented a sequence framework that we put inside our action base class that let you set a sequence variable in the session and then check to see if a certain sequence variable was the previous sequence. It looked something like this: There were two methods available from the base action:

RE: !!!!!!Attention Log4J Users !!!!!!!!!!!!!

2002-02-21 Thread Moritz Petersen
That's the difference between the FileAppender and the RollingFileAppender -mo. -Original Message- From: Praveer Mathur [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 1:01 PM To: Struts Users Mailing List Subject: !!Attention Log4J Users ! -

RE: Hey Struts I have another email address!

2002-02-21 Thread Galbreath, Mark
cool! It could be an infinite loop of spam to those assholes! Mark -Original Message- From: MARK NICHOLS [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 9:41 AM boxfrog.com is a DBA for Intercosmos Media Group, Inc. Intercosmos Media Group is registered to Sigmund

RE: Hey Struts I have another email address!

2002-02-21 Thread Galbreath, Mark
/* I'll wait until tomorrow - somebody may get upset with OT postings - especially after that ridiculous argument over the merits of EJBs. */ Mark -Original Message- From: Olivier Dinocourt [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 9:25 AM Oh, OK ! Mark G., some

RE: EJB = bad = MS.net

2002-02-21 Thread Galbreath, Mark
Yes. If the query is a simple read, you don't need the transactions checks. :-) Mark -Original Message- From: keithBacon [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 9:54 AM Is there anything wrong with the design below? Is there anything simpler? (Are EJB's

List 'Hiccups'?

2002-02-21 Thread Eddie Bush
Is anyone other than myself receiving duplicate mails from this list? I've been on the list for a while now and haven't noticed this behaviour before. ... just thought I'd toss it out. Thanks =)

Re: Class reloading error in Tomcat on Sun Solaris

2002-02-21 Thread Demon
I try to use Tomcat 4.0.2 with Struts 1.0.2 on Sun Solaris. After I upload new Form class or Action class (without tomcat shutdowning) the errore occure: javax.servlet.ServletException: Parsing error processing resource path /WEB-INF/struts-config.xml or javax.servlet.ServletException:

Re: html:file tag

2002-02-21 Thread Eddie Bush
While I haven't used this yet, I do recall seeing something about it in the User's Guide on the main Struts page. Try looking at http://jakarta.apache.org/struts/userGuide/building_view.html and see if that helps. You may also wish to examine the javadocs. The information in one of those two

RE: List 'Hiccups'?

2002-02-21 Thread Galbreath, Mark
You've subscribed twice. Unsubscribe and then resubscribe. Mark -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 10:51 AM To: Struts Users Mailing List Subject: List 'Hiccups'? Is anyone other than myself receiving duplicate mails from

RE: List 'Hiccups'?

2002-02-21 Thread Robert
I do on occasion. - Robert McIntosh -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 9:51 AM To: Struts Users Mailing List Subject: List 'Hiccups'? Is anyone other than myself receiving duplicate mails from this list? I've been on the

Code To Update DB With Transactions (was RE: EJB = bad = MS.net)

2002-02-21 Thread keithBacon
Ah ha - I thought you'd imply that you only do it this way if you are doing updates! Catch me out some other way! There's got to be some other catch... Keith. PS. No being frivolous on the list tomorrow - I'm not around to appreciate it! --- Galbreath, Mark [EMAIL PROTECTED] wrote: Yes.

RE: EJB = bad = MS.net

2002-02-21 Thread Maris Orbidans
however, a peeve of mine about EJBs and the spec is this claim of location independence. furthermore, the claim to location independence is eroding: note that in the 1.1 spec it claims: The client view of an entity bean is location independent. (8.1) and in the corresponding

Re: Powered By Struts List

2002-02-21 Thread keithBacon
Ted husted should notice put it there. It certainly should be, it looks excellent. Top use of Purple it works as well! Congratulations. --- Flannery, George [EMAIL PROTECTED] wrote: This has probably been asked many times, but I can't seem to find the answer on the web site or in the mail

RE: EJB = bad = MS.net

2002-02-21 Thread keithBacon
It's all a bunch of tree huggin' hippy wisdom! Good to hear from people with years of experience in these things, so thanks. --- Emaho, Ghoot [EMAIL PROTECTED] wrote: This has been an interesting discussion on many levels, but there doesnt seem to be much 'real world' substance there. We

RE: EJB = bad = MS.net

2002-02-21 Thread Edward Q. Bridges
yes, i guess you're right. it never existed in the first place. On Thu, 21 Feb 2002 18:52:43 +0200, Maris Orbidans wrote: It's simply because EJB 2.0 has local interfaces (1.1 doesnt) , not that claim to location independence is eroding. -- To unsubscribe, e-mail: mailto:[EMAIL

Struts design question about maintenance screens

2002-02-21 Thread theron . kousek
Hi Folks: thanks to your help, you indicated that the Action should preload form values on a maintenance form. This works great. I have an Action object that allows maintenance on a table (call it table A). This action object handles preloading of data as well as the actual updating of

RE: Struts design question about maintenance screens

2002-02-21 Thread Jakkampudi, ChandraseKhar
You dont need two actions. You can use an 'action' parameter to decide which action you are performing. On your html:link add a parameter action=view and on the submit action=add or action=edit depending on what you are doing. In your action, you can have if statements that perform different

Re: form validation

2002-02-21 Thread keithBacon
There are various solutions. I put a hidden variable on my form ( in the formBean) with the form name in it. If it's not there I know not to validate the form data. Some people have 2 Actions Action classes for this but I fear that would lead to too much code duplication. However some of my

Struts tag for label

2002-02-21 Thread Maris Orbidans
hello What if I want to just display some property of form bean (without any input field) ? Is there a tag for it ? thanx in advance Maris Orbidans Data Pro -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Struts design question about maintenance screens

2002-02-21 Thread Chappell, Simon P
In reference to having two actions (create and update) instead of one combined action, this is exactly what I have done. While the struts-example uses a parameter, I personally prefer not to take that route. I have simplified my code/JSPs by having each do only one thing (good OO) at the

RE: Struts tag for label

2002-02-21 Thread Jakkampudi, ChandraseKhar
Is there a way to have display only properties on a form? For example, I want to display UserID as non-editable field and address as editable. I cannot use the disabled attribute on text tag because these values are not passed to the server and I need the userID to edit proper values. I am doing

Development Environment

2002-02-21 Thread Dave Wellman
Hello, Quick question, what is the preferred development environment that you are all using, Linux - Emacs, VIM, Windows - JBuilder, VisualAge? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Development Environment

2002-02-21 Thread Ian Beaumont
Windows - Netbeans -Original Message- From: Dave Wellman [mailto:[EMAIL PROTECTED]] Sent: 21 February 2002 17:41 To: [EMAIL PROTECTED] Subject: Development Environment Hello, Quick question, what is the preferred development environment that you are all using, Linux - Emacs, VIM,

Re: Development Environment

2002-02-21 Thread Jonathan James
Windows 2000, cygwin vim - Original Message - From: Dave Wellman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 11:41 AM Subject: Development Environment Hello, Quick question, what is the preferred development environment that you are all using, Linux -

RE: Development Environment

2002-02-21 Thread Witbeck, Shane
Im using Idea from http://www.intellij.com on Win2k. Sincerely, Shane Witbeck Web Application Developer 904.987.1688 -Original Message- From: Dave Wellman [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 12:41 PM To: [EMAIL PROTECTED] Subject: Development Environment

RE: form validation

2002-02-21 Thread Emaho, Ghoot
There are a number of ways to achieve this, and again (!) it's about choice, although I must say this can be confusing for newbie (and experienced!) struts users. 1. 2 Actions, 1 for 'pre' and 1 for 'post' processing 2. An 'action' parameter, with switch behaviour in the action class 3.

RE: Struts design question about maintenance screens

2002-02-21 Thread theron . kousek
thanks Simon: With all do respect to the other method (ie, parameters), I tend to favor your approach.I have just completed a maintenance screen by having a combined action and I don't like the if-else's and the action file is huge. By splitting it, I can re-use the LoadFormAction in other

RE: Development Environment

2002-02-21 Thread Mattos, John
I'm using Visual Age For Java and Websphere Studio (for JSPs) on Win2k. We're moving to Websphere Studio App Dev 4.0 I'd rather be using JBuilder 6 but that's me. John Mattos Sr. Developer and Architect iNDEMAND 345 Hudson St. 16th Floor New York, New York 10014 -Original Message-

RE: Struts design question about maintenance screens

2002-02-21 Thread Emaho, Ghoot
There are a number of ways to achieve this, and again (!) it's about choice, although I must say this can be confusing for newbie (and experienced!) struts users. 1. 2 Actions, 1 for 'pre' and 1 for 'post' processing 2. An 'action' parameter, with switch behaviour in the action class 3.

RE: Development Environment

2002-02-21 Thread Kanoza, Douglas (NCI)
Visual SlickEdit (http://www.slickedit.com/home.php). In my experience, every IDE I've ever worked with (JBuilder, JDeveloper, Visual Café) forces you to do things their way, which is usually not the way I want to do it. Plus, they're expensive, take up a lot of disk space, and are usually

Re: Development Environment

2002-02-21 Thread Ryan
windows, jext, ant - Original Message - From: Dave Wellman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 1:41 PM Subject: Development Environment Hello, Quick question, what is the preferred development environment that you are all using, Linux - Emacs,

Re: Struts tag for label

2002-02-21 Thread Martin Fekete
bean:write name=yourFormBeanName property=yourProperty / work's fine for me ... Feky PS: don't forget bean taglib directive ... - Original Message - From: Maris Orbidans [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 6:35 PM

Re: Struts tag for label

2002-02-21 Thread Martin Fekete
try html:text property=userID readonly=true/ Feky - Original Message - From: Jakkampudi, ChandraseKhar [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 6:38 PM Subject: RE: Struts tag for label Is there a way to have display only

RE: Development Environment

2002-02-21 Thread Cakalic, James
I'm using WebSphere Studio Application Developer. Jim -Original Message- From: Dave Wellman [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 11:41 AM To: [EMAIL PROTECTED] Subject: Development Environment Hello, Quick question, what is the preferred development

  1   2   >