RE: [OT] test mail - please ignore

2002-11-14 Thread Yeo, Rodney W
I wondered how he knows the email is not for him if he is not allowed to read it! ;b -Original Message- From: C. Struts [mailto:struts;cmbsystems.com] Sent: Thursday, November 14, 2002 02:09 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: test mail - please ignore ha!

Button Tag

2002-11-14 Thread Savantraj, Chennamakal Subramanian
Hi, Which Tag should be used to create a input type=button in STRUTS? My requirement is I want to call different actions based on different Button click. Rgds --- This email is confidential and intended only for the use of the

Servlet Context ..

2002-11-14 Thread Divakar Satyanarayan
Hi, Every now then I keep getting this following error. I have installed my application on Oracle 9iAS , OC4J. The application server is running on Unix (Sun Solaris..). The application is working fine otherwise.. I mean in the way its designed. We havent been able to get a definite sequence

Exception Handling with Struts 1.02

2002-11-14 Thread Marcus Biel
I've just read Chuck's Chapter about Exception Handling (O'reilly Struts Book). Now I am trying to accomplish what he suggested. Unfortunately I am forced to used Struts 1.02. return mapping.getInput(); didn't work - it gives back a String, but my Action class needs to return an ActionForward.

Servlet Context ..

2002-11-14 Thread Divakar Satyanarayan
Hi, Every now then I keep getting this following error. I have installed my application on Oracle 9iAS , OC4J. The application server is running on Unix (Sun Solaris..). The application is working fine otherwise.. I mean in the way its designed. We havent been able to get a definite

Re: Exception Handling with Struts 1.02

2002-11-14 Thread Gemes Tibor
2002. november 14. 10:02 dátummal Marcus Biel ezt írtad: return mapping.getInput(); didn't work - it gives back a String, but my Action class needs to return an ActionForward. (Struts 1.02). So I tried it that way: return mapping.findForward(mapping.getInput() ); return new

Re: Button Tag

2002-11-14 Thread Karim Saloojee
Take a look at the RequestDispatcher. A good example can be found in Chucks book at theserverside.com - Original Message - From: Savantraj, Chennamakal Subramanian [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, November 14, 2002 10:57 AM Subject:

Re: Button Tag

2002-11-14 Thread Gemes Tibor
2002. november 14. 09:57 dátummal Savantraj, Chennamakal Subramanian ezt írtad: Hi, Which Tag should be used to create a input type=button in STRUTS? My requirement is I want to call different actions based on different Button click. Read this: http://husted.com/struts/tips/003.html Hth,

logic-match/compare multiple values

2002-11-14 Thread Mohan Radhakrishnan
Hi, We need to match a report ID from one of the scopes with a set of integers. Now logic-match example compares with single values. Do I have to use struts-el for this ? Are there examples of logic-match to do this ? The JSTL code that doesn't seem to work is c:if test=

Re: Button Tag

2002-11-14 Thread Karim Saloojee
Oops I meant the DispatchAction not the RequestDispatcher. Sorry - need more sleep! Take a look at Chapter 5 in Chucks book, the heading in ch 5 is The org.apache.struts.actions.DispatchAction Regards, Karim - Original Message - From: Karim Saloojee [EMAIL PROTECTED] To: Struts Users

RE: logic-match/compare multiple values

2002-11-14 Thread Mohan Radhakrishnan
Hi, Answering my own question. logic:greaterThan name=reportBean property=reportID value=39 logic:lessThan name=reportBean property=reportID value=60 /logic:lessThan /logic:greaterThan Now I am using the above. Is

Re: Exception Handling with Struts 1.02

2002-11-14 Thread Marcus Biel
Works fine! Thanks! marcus [EMAIL PROTECTED] schrieb: 2002. november 14. 10:02 dátummal Marcus Biel ezt írtad: return mapping.getInput(); didn't work - it gives back a String, but my Action class needs to return an ActionForward. (Struts 1.02). So I tried it that way: return

Re: StrutsTestCase + overriding setUp without calling super.setUp()ERROR

2002-11-14 Thread Reinhard Spisser
You need to call super.setUp() before super(testname) . I found that adding the following code: public void setUp() { try{ super.setUp(); } catch(Exception e){ } } made it work correctly. Il gio, 2002-11-14 alle 11:58, Maarten

calsspath

2002-11-14 Thread Amit Badheka
I am trying to deploy ear file in weblogic6.1. The ear file contains - war file - with all jsp/action etc and all struts jars in web-inf/lib but, when i try to run it requires all struts lib in classpath. If I gives that it works fine, Please help.

RE: Upgrading to STRUTS 1.1

2002-11-14 Thread edgar
I don't believe struts 1.0 is 'binary' compatible with 1.1. Try deleting all your object files and rebuilding. Edgar -Original Message- From: Savantraj, Chennamakal Subramanian [mailto:Savant.Rcs;ap.sony.com] Sent: Wednesday, November 13, 2002 11:31 PM To: 'Struts Users Mailing List'

RE: Check log-in status

2002-11-14 Thread edgar
You could also write a filter to check for a valid session. This gives you more control over quite a few issues. This is my particular filter. Edgar -Original Message- From: Andrew Hill [mailto:andrew.david.hill;gridnode.com] Sent: Thursday, November 14, 2002 12:37 AM To: 'Struts

RE: Upgrading to STRUTS 1.1

2002-11-14 Thread Arnaud HERITIER
You must also upgrade all libraries used by struts : jakarta commons beanutils, collections, ... And you must rebuild your web app. Arnaud -Message d'origine- De : edgar [mailto:edgar;blue-moose.net] Envoye : jeudi 14 novembre 2002 12:24 A : 'Struts Users Mailing List' Objet : RE:

Re: Validation in Nightly Build 20021105

2002-11-14 Thread Mike Wilcox
Robert, Robert Leland wrote: Ok, it looks like it isn't the same bug, though the error is occuring in the iterator of the FastHashMap. I remember being hit by this a couple of weeks ago, while looking at a different problem. I don't think its the same problem I believe you said it was also

Back button without getting Page expired

2002-11-14 Thread L Teitsma
Hi, I've tried I don't know how many things but everytime something goes wrong. Main question is: how can I get back from an errorpage to a previous page (that results from a POST) without getting a Page expired? I have to set nocache to true, because some of my Actions aren't executed

Re: Back button without getting Page expired

2002-11-14 Thread Gemes Tibor
2002. november 14. 12:56 dátummal L Teitsma ezt írtad: I have to set nocache to true, because some of my Actions aren't executed because they or their URL's are cached. The consequence is that the back-button on my errorpage results in a Page expired. This because it a

My Tile-Jsp needs to know the FormBean name...

2002-11-14 Thread Andreas Langmann
Hello, the FormBean Name is accessed via tiles:getAsString name=formName/ in the layout_content.jsp. But it is not available in the tiles is there a way to do this? I need it for a logic:iterate tag: logic:iterate id=bg type=Gen_bg_Fb name=%= formName % property=bgListe

ClassCastException - Using TreeMap

2002-11-14 Thread Vikram Goyal
Hello All, I am getting a ClassCastException when using a TreeMap in a logic iterate. I am reproducing part of the error below. java.lang.ClassCastException: java.util.TreeMap$Entry at _web_22dinf._jsp._mycraft__jsp._jspService(/WEB-INF/jsp/mycraft.jsp:26) I understand that while using a

NEWBIE-Quesion? add a querystring to html:form

2002-11-14 Thread Mouratidis, Georg
Hi, How can i add a received querystring - not through STRUTS action - to the html:form attribut action. like this html:form action=organization.do?%= request.QueryString() % if i do thhis in the source i see: form name=organizationForm method=POST action=/PCX/organization.do?%=

RE: ClassCastException - Using TreeMap

2002-11-14 Thread Vinh Tran
try this... bean:define id=bookmarkID name=bookmark property=key/ -Original Message- From: Vikram Goyal [mailto:tech;craftbits.com] Sent: Thursday, November 14, 2002 7:52 AM To: Struts Users Mailing List Subject: ClassCastException - Using TreeMap Hello All, I am getting a

Re: Back button without getting Page expired

2002-11-14 Thread L Teitsma
I use ActionError but I want to show errors (that are no validation errors) thrown by a backoffice on a separate errorpage. Since I don't know which Action results in an error to the errorpage, I cannot redirect to that Action. At least I don't know how. That's why I try to send them back to

Re: ClassCastException - Using TreeMap

2002-11-14 Thread Vikram Goyal
Thanks for your help, but I figured out the problem. The problem was that I was explicitly declaring the type to be java.util.TreeMap. Removing that solves the problem. Regards, Vikram - Original Message - From: Vinh Tran [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]

Re: NEWBIE-Quesion? add a querystring to html:form

2002-11-14 Thread Gemes Tibor
2002. november 14. 13:54 dátummal Mouratidis, Georg ezt írtad: if i do thhis in the source i see: form name=organizationForm method=POST action=/PCX/organization.do?%= request.getQueryString()% id=organizationForm what do i do wrong. I do not want to create for each paramter an hidden

RE: NEWBIE-Quesion? add a querystring to html:form

2002-11-14 Thread Mouratidis, Georg
thanx a lot. thats it! -Original Message- From: Gemes Tibor [mailto:gemes;regens.hu] Sent: Donnerstag, 14. November 2002 14:34 To: Struts Users Mailing List Subject: Re: NEWBIE-Quesion? add a querystring to html:form 2002. november 14. 13:54 dátummal Mouratidis, Georg ezt írtad: if i

Re: Validation in Nightly Build 20021105

2002-11-14 Thread Mike Wilcox
Mike Wilcox wrote: It was tomcat 4.0.4 in both cases. I'll add it to the bug report I'm about to write. I'll raise it on the commons-validator, as it appears to be the ValidatorResources object thats at fault here. There is already a bug reported, still state NEW, #14398 that covers this

Re: Validation in Nightly Build 20021105

2002-11-14 Thread Mike Wilcox
Mike Wilcox wrote: I'll raise it on the commons-validator, as it appears to be the ValidatorResources object thats at fault here. Too quick on the send button there. The bug was actually #14384 http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14384 Mike -- To unsubscribe, e-mail:

RE: struts concerns

2002-11-14 Thread James Childers
What is the advantage of using struts taglib to declare Form and other presentation related tags over std. Html?? I'm not familiar with STD (not in this context, anyway :-). But a couple of the benefits of the Struts HTML taglib over straight HTML are: 1) Form element repopulation - If you

RE: struts concerns

2002-11-14 Thread Andrew Hill
There are cases where using Struts would be overkill. Hello World? ;-) -Original Message- From: James Childers [mailto:jchilders;hotels.com] Sent: Thursday, November 14, 2002 22:21 To: Struts Users Mailing List Subject: RE: struts concerns What is the advantage of using struts taglib

Re: Button Tag

2002-11-14 Thread David Graham
See the user's guide section on html tags. David From: Savantraj, Chennamakal Subramanian [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: Button Tag Date: Thu, 14 Nov 2002 16:57:06 +0800 Hi, Which Tag

RE: [OT] Where can I find a Struts / J2EE Jobs?

2002-11-14 Thread Davide Bruzzone
Khalid, This is all just common sense really, but it helped me when I was laid off at the end of June (BTW, I was working again in five weeks, and as much as I'd like to think that I'm a rock star, I think I was monumentally lucky)... However, if it can help you or someone else on the list...

Fetching Data Using Struts!!!

2002-11-14 Thread Yadnesh Chonkar
Though struts is good MVC framework. But guys correct me if i am wrong. The data fetching mechanism works only for simple screens, for complex screens it goes for a toss. eg Consider following screen, where user enter multiple data. EmpId NameGender

Re: struts concerns

2002-11-14 Thread Gemes Tibor
2002. november 14. 15:29 dátummal Andrew Hill ezt írtad: There are cases where using Struts would be overkill. Hello World? What about i18n'd Hello word? Tib -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

Struts Tags vs. JSTL

2002-11-14 Thread Hohlen, John
My team is interested in using the JSTL as it offers several advantages (standardization, container optimization, expression language, potential future tools, etc.). Until now, we've strictly been using the Struts custom tags (and a few that we extended). These are the guidelines I want to setup

RE: Struts Tags vs. JSTL

2002-11-14 Thread Madel,Kurt
The nightly build has exactly what you are looking for in the contrib folder. Here is the readme: Struts-EL extension === Introduction This subproject is an extension of the Struts tag library. Each JSP custom tag in this library is a subclass of an associated

RE: Fetching Data Using Struts!!!

2002-11-14 Thread edgar
Use a form with a nested form. -Original Message- From: Yadnesh Chonkar [mailto:ychonkar;NEXGENIX.com] Sent: Thursday, November 14, 2002 10:31 AM To: 'Struts Users Mailing List' Subject: Fetching Data Using Struts!!! Though struts is good MVC framework. But guys correct me if i am

Dynamic Tiles xml definitions

2002-11-14 Thread Mark Ayad
I've just started to use Tiles and Struts together. I have a question regarding the xml definitions loaded into memory. My question is would it be possible to parse / modify the definition file at runtime To say switch the template ? Mark

help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
I am trying to set properties of an object using DynaActionForm. In my struts-config.xml I have in the form-bean form-property name='creditCard' type='my.package.CreditCard' / In my JSP I try html:text property='creditCard.type' / The CreditCard class has a no-arg ctor and get/set methods for

xXxx property

2002-11-14 Thread Roland Carlsson
Hello! I have a little problem with a class that have properties on the form xXxx (perhaps I shoud learn regular expressions) ... mPhone, hPhone, wPhone. I'm using forte to build my access method that looks like this setMPhone, setWPhone, setHPhone. The problem is that it seems to me that OJB

RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber
from: http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act ion_form_classes The list of types supported by DynaActionForm beans includes: java.lang.BigDecimal java.lang.BigInteger boolean and java.lang.Boolean byte and java.lang.Byte char and java.lang.Character

Re: xXxx property

2002-11-14 Thread Roland Carlsson
Sorry .. wrong list... Regards Roland - Original Message - From: Roland Carlsson [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, November 14, 2002 4:30 PM Subject: xXxx property Hello! I have a little problem with a class that have properties on the

file upload + WebSphere 4.0 - IOException while reading file element

2002-11-14 Thread Purcell, Dave
I apologize if this is answered elsewhere in the list. I couldn't find a similar entry. I am using WebSphere 4.0 with Struts 1.0.2. I am trying to upload files (multiple files per request) and am having problems. Very small files seem to work fine (10k). However, large files (50k) fail -

AW: Fetching Data Using Struts!!!

2002-11-14 Thread Hirschmann, Bernhard
Hey Yadnesh, that's pretty easy. You just keep a List in your form bean, containing the java beans, which keep the data for each line. In the JSP you just iterate over that List, accessing the beans. I'm doing that all the day... Did you take a look in the tutorials? Regards, Bernhard

RE still a problem: RE: StrutsTestCase + overriding setUp without calling super.setUp() ERROR

2002-11-14 Thread Maarten Volders
Still the same problem here, he's still complaining that i'm overriding setUp() but that I have to implement super.setUp(), but you can see clearly in my code that I implement that method. Anyone with other suggestions??? I'm using Intellij 3.0 to run my unit test, but al my other unit tests run

RE: help needed with DynaActionForm

2002-11-14 Thread Aadithya Deshpande
I don't know too much about this, and I was currently looking down the same route, but how would a configuration class fit into all this? I was under the assumption that a configuration class would let you configure the form prior to it being rendered on the page. Or is that not correct

RE: help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
Currently the first action in my webapp is an ForwardAction that takes you to the JSP. So, if I understand you right, I could make this work by replacing that with an Initalization action that creates the objects for use in the form. I'll try that and report back. I'm guessing it wouldn't be that

Opening PDF file: Problem and Solution

2002-11-14 Thread Neil Carusetta
Has anyone had any difficulties with opening a PDF file byte stream in a browser using sub-apps? We got it working but are still unclear as to exactly the reason. Up front I'll mention that we are using sub-applications. We had an action which places a PDF file in the form of a byte[] out on

Re: struts concerns

2002-11-14 Thread John Nicholas
Andrew Hill wrote: There are cases where using Struts would be overkill. Hello World? ;-) I started out thinking this too, and was first using Struts more to build a skill set than because I thought it was going to actually help me get a project done faster. Now my first step of any

RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber
...I'm guessing it wouldn't be that hard to extend the form to handle any old Object, maybe someone more in the know with the src can comment on this? actually, i found some documentation about this on the web. You can subclass DynaActionForm and add your own attributes, but it sort of defeats

RE: Struts Tags vs. JSTL

2002-11-14 Thread Hohlen, John
Great! Thanks for the info. One problem, I can't seem to find this on the Struts site. Can you send me a URL? Thanks, JOHN -Original Message- From: Madel,Kurt [mailto:kmadel;csmi.com] Sent: Thursday, November 14, 2002 9:03 AM To: 'Struts Users Mailing List' Subject: RE: Struts Tags

RE: Opening PDF file: Problem and Solution

2002-11-14 Thread Quentin.Cope
Neil I wonder if your image/jpeg files displayed ok in Netscape? Its a couple of years ago, nothing to do with struts, but I had a servlet, serving up images, that was not setting the image type correctly. I was serving jpegs, giff etc. but the servlet had hardcoded image/gif. Internet

RE: NEWBIE-Quesion? add a querystring to html:form

2002-11-14 Thread Xavier Combelle
maybe you should use a form with session scope instead of request scope so the data edited in the fields which are not in the present form will be still stored in the session without repeat it in the parameters -Message d'origine- De : Mouratidis, Georg

RE: [OT] Where can I find a Struts / J2EE Jobs?

2002-11-14 Thread Khalid Aslan
--- Davide Bruzzone [EMAIL PROTECTED] wrote: Khalid, This is all just common sense really, but it helped me when I was laid off at the end of June (BTW, I was working again in five weeks, and as much as I'd like to think that I'm a rock star, I think I was monumentally lucky)... However,

RE: Struts Tags vs. JSTL

2002-11-14 Thread Madel,Kurt
http://jakarta.apache.org/builds/jakarta-struts/nightly/ Kurt Madel Programmer, CSMi (703) 823-4300 ext. 170 -Original Message- From: Hohlen, John [mailto:JHohlen;erac.com] Sent: Thursday, November 14, 2002 11:08 AM To: 'Struts Users Mailing List' Subject: RE: Struts Tags vs. JSTL

RE: help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
I'm speaking at the edge of understanding here, but... If BeanUtils is underlying this whole thing, then you should be able to create the user-objects instead of defaulting them to null (using the JavaBean no-arg ctor). And following on that you could use the property referencing struture used by

Using Javascript submit(), how can I tell what did the submitin an action?

2002-11-14 Thread Ryan Cornia
I have a form with multiple drop downs that do a Javascript submit() when they are changed. (This is so that they can change other drop downs.) The problem is that once I get into the action, how can I tell which drop down's onchange event caused the submit? I can't find any request parameters

RE: logic-match/compare multiple values

2002-11-14 Thread Karr, David
Actually, you don't have to use struts-el for this, your c:if expression should work, but you might try changing the and to lt and gt. -Original Message- From: Mohan Radhakrishnan [mailto:MohanR;hclcomnet.co.in] Sent: Thursday, November 14, 2002 1:38 AM To: 'Struts Users Mailing

RE: [OT] Where can I find a Struts / J2EE Jobs?

2002-11-14 Thread Chappell, Simon P
I just want to observe that I have never used a job website. I'm not saying that they don't or can't work, but I've received 100% of my employment so far from either word of mouth or using a technical recruiter. This has worked both sides of the pond. I started in the industry in 1990 when I

RE: Using Javascript submit(), how can I tell what did the submit in an action?

2002-11-14 Thread Karr, David
I see several strategies for this: 1. Design your page and your Action so you don't need to know. Your request parameters will indicate the current settings. This will allow your page to work even if javascript is disabled (an unfortunate consideration). 2. Put each drop down into its own

Re: [Struts Tip] #14 Use optional forwarding to extend Actions

2002-11-14 Thread Vincent Stoessel
Ted Husted wrote: Many times you will find that two Actions are very similar but need one small behavior to change. One good way to handle this is to subclass one Action from the other and change the behavior that way. Though, in the case of an Action, the behavior may buried in the perform

IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Jim Krygowski
Hi all- we have an application originally written to struts 1.1b2 and J2SDK 1.3.1_03 that was working fine. Recently, we've been given the signal to upgrade to J2SDK 1.4.1. Fine, but now we're finding that our form posts are failing with IndexOutOfBoundsException. I've traced through the

optionsCollection error Failed to obtain specified collectionafter unsuccessful validate()

2002-11-14 Thread adam kramer
I'm using the Struts nightly build from nov. 13. Initially I populate an ArrayList in a Validator form in an Action with authentication types for a login screen. In the jsp page, the authentication types are displayed with an optionsCollection tag: html:select property=authType

RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber
interesting idea, but i dont think beanUtils is driving the whole dynaforms thing. I think its just a big HashMap they stick stuff into (for the moment). The big problem is that DynaForms requires you to specify the initial values in the form-property as that initial value. So, with complex

RE: help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
If only there were time on my current project to explore this and get it done right by extending the existing Struts architecture. For the while I'll have to go back to Strings and convert them to objects in the Action. -Original Message- From: Drew Zimber [mailto:drew.zimber;shaws.com]

RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber
I hear you, I had the same problem with time constraints. We ended up going for traditional forms to save time/hassle. dz -Original Message- From: Andy Kriger [mailto:akriger;greaterthanone.com] Sent: Thursday, November 14, 2002 11:44 AM To: Struts Users Mailing List Subject: RE: help

RE: [ANNOUNCE] Tiles and Validator Support in ObjectAssembler 2.5

2002-11-14 Thread Bill Willis
If anyone had trouble getting to the download or support site, please try again. We've cleared up some bandwidth issues. Regards, Bill -Original Message- From: Bill Willis [mailto:bwillis;objectventure.com] Sent: Wednesday, November 13, 2002 11:19 PM To: [EMAIL PROTECTED] Subject:

Re: help needed with DynaActionForm

2002-11-14 Thread Craig R. McClanahan
On Thu, 14 Nov 2002, Andy Kriger wrote: Date: Thu, 14 Nov 2002 10:24:55 -0500 From: Andy Kriger [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: help needed with DynaActionForm I am trying to set properties

Re: RE still a problem: RE: StrutsTestCase + overriding setUpwithout calling super.setUp() ERROR

2002-11-14 Thread Chris Winters
On Thu, 2002-11-14 at 10:38, Maarten Volders wrote: Still the same problem here, he's still complaining that i'm overriding setUp() but that I have to implement super.setUp(), but you can see clearly in my code that I implement that method. Anyone with other suggestions??? I'm using Intellij

Re: file upload + WebSphere 4.0 - IOException while reading file element

2002-11-14 Thread Susan Bradeen
David, This *may* be a WebSphere issue. We were working on a non-Struts web app over this past Summer in which we had problems uploading large files (anything over 15K, I think). I believe we resorted to using a program one of our iSeries developers created as our work-around for uploading

still a problem: RE: StrutsTestCase + overriding setUp without callingsuper.setUp() ERROR

2002-11-14 Thread Kevin . Bedell
On Thu, 2002-11-14 at 10:38, Maarten Volders wrote: Still the same problem here, he's still complaining that i'm overriding setUp() but that I have to implement super.setUp(), but you can see clearly in my code that I implement that method. Anyone with other suggestions??? I'm using

RE: Struts Tags vs. JSTL

2002-11-14 Thread Hohlen, John
I'm still getting up to speed with the JSTL. How come the iterate is still in the Struts-EL library. Does it contain something specific to the Struts framework? Thanks! JOHN -Original Message- From: Madel,Kurt [mailto:kmadel;csmi.com] Sent: Thursday, November 14, 2002 10:19 AM To:

RE: [OT] Where can I find a Struts / J2EE Jobs?

2002-11-14 Thread Davide Bruzzone
Khalid, This is all just common sense really, but it helped me when I was laid off at the end of June (BTW, I was working again in five weeks, and as much as I'd like to think that I'm a rock star, I think I was monumentally lucky)... However, if it can help you or someone else on the

deferring an action

2002-11-14 Thread Alayne Wartell
This is something I haven't seen discussed before. Our web application has a large, dynamically built tree in its own frame by which users navigate to input screens. ( They can also click on menu options -- slightly different but raises the same issue for us.) Data entry is freeform -- users can

RE: Struts Tags vs. JSTL

2002-11-14 Thread Karr, David
The indexed tags feature, for one. I don't remember what else. -Original Message- From: Hohlen, John [mailto:JHohlen;erac.com] Sent: Thursday, November 14, 2002 9:23 AM To: 'Struts Users Mailing List' Subject: RE: Struts Tags vs. JSTL I'm still getting up to speed with the

JSP Debug / IDE's

2002-11-14 Thread edgar
I know this is not exactly the place for this question but most of you have a opionions and experience on this issue. If you have a standalone piece of Java code with a 'main' debugging is a piece of cake. If you are triing to run an iteractive debugger on the browser / jsp / java combination it

RE: Struts Tags vs. JSTL

2002-11-14 Thread edgar
Nested objects in combination with html tags. -Original Message- From: Karr, David [mailto:david.karr;attws.com] Sent: Thursday, November 14, 2002 12:26 PM To: 'Struts Users Mailing List' Subject: RE: Struts Tags vs. JSTL The indexed tags feature, for one. I don't remember what else.

RE: JSP Debug / IDE's

2002-11-14 Thread Karr, David
I've been able to use Netbeans to debug web applications in Tomcat, simply by using the remote debugger feature, allowing me to attach to a java process started with the correct parameters to assume remote debugging. I just mount my source trees and set breakpoints. This will work with other

Re: JSP Debug / IDE's

2002-11-14 Thread Kevin . Bedell
At least parts of this can be accomplished using Cactus. It allows you to run tests and log information while the code is actually deployed in the container. It's not the same as attaching to a container and setting breakpoints, etc. but I think it will help to avoid the need for that work

RE: JSP Debug / IDE's

2002-11-14 Thread edgar
If I am understanding you correctly, you can debug the java code, but not the jsp code simply by connecting to the webserver daemon. Thanks, I'll give it another go. Edgar -Original Message- From: Karr, David [mailto:david.karr;attws.com] Sent: Thursday, November 14, 2002 12:39 PM To:

Re: JSP Debug / IDE's

2002-11-14 Thread David Graham
I don't debug jsps because I've never had the need to. If your jsp is that complicated then you've probably got scriptlets/business logic in there :-(. David From: edgar [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: JSP Debug /

RE: JSP Debug / IDE's

2002-11-14 Thread Alvarado, Juan (c)
Why would you ever want to debug a JSP. I see the need to debug action classes and back end components, but not JSPs. -Original Message- From: edgar [mailto:edgar;blue-moose.net] Sent: Thursday, November 14, 2002 12:58 PM To: 'Struts Users Mailing List' Subject: RE: JSP Debug / IDE's If

Visually Developing Struts Pages

2002-11-14 Thread Jim Alemany
Hi, I'm a web developer used to building sites/applications with DreamweaverMX and the older Ultradev. I'm now involved in building Struts applciations and would like to know what that best tools/methods are for visually building Struts applications? Any feedback is welcomed. Cheers, Jim --

RE: deferring an action

2002-11-14 Thread James Mitchell
I would enforce the workflow. When the user wants to leave an editable form, if any fields were changed (dirty), then prompt to save changes. If no, then proceed as normal. But if yes, then call the normal save action (with either 'changes successful' page or 'error' page, however you are doing

RE: JSP Debug / IDE's

2002-11-14 Thread Marcelo Collao
I've been able to use Netbeans to debug web applications in Tomcat, simply by using the remote debugger feature, allowing me to attach to a java process started with the correct parameters to assume remote debugging. I just mount my source trees and set breakpoints. This will work with

RE: JSP Debug / IDE's

2002-11-14 Thread edgar
I finally found the Resin specific debug startup command to make the whole thing work. Much better. Thanks Edgar -Original Message- From: edgar [mailto:edgar;blue-moose.net] Sent: Thursday, November 14, 2002 12:58 PM To: 'Struts Users Mailing List' Subject: RE: JSP Debug / IDE's If

RE: deferring an action

2002-11-14 Thread James Mitchell
I'm typing too fast today. So, the only difference between hitting save and clicking to go somewhere else is the location.href='somepage.do' somewhere that appears after the 'changes saved' or 'error' page is rendered. Of course, if there were errors, then you need to handle that as

Re: deferring an action

2002-11-14 Thread Brian Hickey
Alayne, Would a time requirement mess things up? If not, your actions could simply place the forms into session scope. Most of our clients don't spend all day at their machines, so 30 minutes or so is too much of a constraint... Just a wild thought :o) Brian - Original Message - From:

templates: cant access request in included files???

2002-11-14 Thread Drew Zimber
hey all, im trying to get a template implementation going and none of the my html:text tags can find the form in one of the templated files: body ... form !-- in this file i cant see the request!!! -- template:get name=foo ... /form /body what is the deal with that!!! -- To unsubscribe,

Need advice on implementing a view

2002-11-14 Thread Vincent Stoessel
I am builing a sort of reservation system using struts. I have all the components in place for CRUD and all is fine. The bosses, however, also want a big overview app. Basically it will be a big grid with a visual representaion of the reserved objects and the current population for each object.

RE: Visually Developing Struts Pages

2002-11-14 Thread Aadithya Deshpande
I don't know how much help this is to you, but ObjectVenture does provide a GUI for Struts; however in the demo that I played with, it was little more than wizard-based adding of form elements and properties; the real meat and potatoes work was still hand coding. For us, we basically have a

Re: Struts Tags vs. JSTL

2002-11-14 Thread flare
My team is interested in using the JSTL Has anyone seen something like this? I tried JSTL for 2 hours and I thrown away struts custom tags at once! Of course you should still use the HTML tags (or better HTML-EL) to render forms but you can use JSTL for anything else and is much *MUCH*

Re: deferring an action

2002-11-14 Thread Alayne Wartell
We can't prompt the users to save when they leave the page. We used to (back when life was simpler!) but it's too annoying -- they've got a huge set of data covering a huge number of screens, and do lots of moving around. 99% of the time they'd say yes anyway. We now have a rollback feature; much

RE: IndexOutOfBounds error, Struts 1.1b2, J2SDK 1.4.1

2002-11-14 Thread Jim Krygowski
Been doing some research since my last post. Here's the setup, same application code, same struts jars, same app server switching between JDK 1.3.1 and 1.4.1: When processing a submit, in the PropertyUtils the following check is made in the getIndexedProperty method on or around line 468: if

RE: Struts Tags vs. JSTL

2002-11-14 Thread Madel,Kurt
The Struts-el tags are great except there is no role parameter for the c:if ... tage? logic:present / was not ported. Kurt Madel Programmer, CSMi (703) 823-4300 ext. 170 -Original Message- From: flare [mailto:flare;flare.it] Sent: Thursday, November 14, 2002 1:39 PM To: Struts Users

RE: Struts Tags vs. JSTL

2002-11-14 Thread Sri Sankaran
Can Struts-EL be used with Struts 1.0.2? Of course, assuming I pull the necessary files from the nightly. Sri -Original Message- From: Madel,Kurt [mailto:kmadel;csmi.com] Sent: Thursday, November 14, 2002 10:03 AM To: 'Struts Users Mailing List' Subject: RE: Struts Tags vs. JSTL

Re: deferring an action

2002-11-14 Thread Alayne Wartell
As a matter of fact, our users are chained to their desks. Ok, I'm lying. But your suggestion may have merit -- the form would be in session scope but not for very long -- just long enough to be put there when the user clicks a link, then saved, then it could go away. But would you mind

RE: Struts Tags vs. JSTL

2002-11-14 Thread Karr, David
Actually, I added logic-el:present and logic-el:notPresent after the initial checkin of the library (a month later). -Original Message- From: Madel,Kurt [mailto:kmadel;csmi.com] Sent: Thursday, November 14, 2002 10:45 AM To: 'Struts Users Mailing List' Subject: RE: Struts Tags vs.

  1   2   3   >