RE: Struts EJB deployment

2004-01-12 Thread Lister, Tom (ANTS)
What errors are you getting? We had a lot of classloader problems running apps that have ejbs and web components. We settled on building an EAR with all jars in the EAR file and not in WEB-INF/lib :-) Tom Lister * [EMAIL PROTECTED] * 020 775 65014 -Original Message- From: Rick Alsopp [ma

RE: [FRIDAY] [OT] Best misunderstanding of an acronym?

2002-09-27 Thread Lister, Tom (ANTS)
any oldies remember SWALK and NORWICH :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Vincent Stoessel [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 16:29 To: Struts Users Mailing List Subject: Re: [FRIDAY] [OT] Best misunderstanding of an acronym? I l

RE: Struts and high performance sites revisited

2002-09-26 Thread Lister, Tom (ANTS)
Hi I've recently been struggling with performance issues related to tags, especially where there are large number in some of our pages. The biggest improvment we got was by switching application servers. Specifically by upgrading to the latest Tomcat 4.1.11. The difference in response is incredibl

RE: nested tags - version problem

2002-09-17 Thread Lister, Tom (ANTS)
tyTag or the NestedEmptyTag that extends from it. It is in the Jar, but if it's not in the tld file, it's not going to get called. Other people are running off weblogic on the old jars also. Arron. On Tue, 2002-09-17 at 20:31, Lister, Tom (ANTS) wrote: > we are using the nested ta

RE: Nested tagscomplete example for Table (with check-box, hyperlink) Help, help help

2002-09-17 Thread Lister, Tom (ANTS)
see http://www.keyboardmonkey.com/next/index.jsp they work a treat for master/detail type forms although I'm finding I may have to upgrade to form Struts 1.0 to 1.1 to get them working on Web logic :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Heligon Sandr

nested tags - version problem

2002-09-17 Thread Lister, Tom (ANTS)
we are using the nested tags library that is compatable with struts 1.0 but it depends on but it still contains references to the 'EmptyTag', which I think is 1.1 this has only become apparent when moving from development using tomcat to deployment on web-logic has anyone got this problem. If it

RE: Null String in Error Message

2002-09-11 Thread Lister, Tom (ANTS)
Hi link is broken I've had the same error, but the code of the error tag looks like it first checks for the presence of the header and footer before displaying so in theory the null message shouldn't happen. is there a bug lurking here :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Ori

RE: [FRIDAY] SOMEONE SAVE OUR LIST!!!!

2002-09-06 Thread Lister, Tom (ANTS)
here's one for the aftermath of friday evening beers http://www.hairytongue.com god bless the internet :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: 06 September 2002 15:21 To: 'Struts Users Mailing List' Su

RE: InitParameter and Actions

2002-09-06 Thread Lister, Tom (ANTS)
i'm using struts 1.0.1, app requiring multiple datasources in web.xml i have dfltDataSourceRef jdbc/ejif GLDataSourceRef jdbc/flexi i get these values by in a servlet by dsource = getServletContext().getInitParameter("GLDataSourceRe

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Lister, Tom (ANTS)
have you reloaded/restarted tomcat after a compile I usually have to force tomcat to do a class reload with http://localhost:8080/manager/reload?path=/appName :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Mark Kaye [mailto:[EMAIL PROTECTED]] Sent: 05 Septe

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Lister, Tom (ANTS)
is your method boolean LoginVO.isLoggedIn() as per normal method conventions I think struts expects everything to be set :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Mark Kaye [mailto:[EMAIL PROTECTED]] Sent: 05 September 2002 13:25 To: Struts Users Mailin

RE: How to use nested:iteration tag?

2002-09-04 Thread Lister, Tom (ANTS)
ok the following seems to work <%@ include file="/Journal/JournalLineEdit.jsp" %> although I'm sure i tried this syntax earlier today without success ah well - onward and upward :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message----- Fr

RE: How to use nested:iteration tag?

2002-09-04 Thread Lister, Tom (ANTS)
' Subject: RE: How to use nested:iteration tag? With logic:iterate you can use indexId="myIndex" to name the index and have access to it. I'm not sure if this works with nested:iterate. > -Original Message- > From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]]

RE: How to use nested:iteration tag?

2002-09-04 Thread Lister, Tom (ANTS)
do you know how to get at the index of the item in the iteration :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED]] Sent: 04 September 2002 16:08 To: Struts Users Mailing List Subject: RE: How to use nested:iteration tag?

indexId property in iterarte tag

2002-09-04 Thread Lister, Tom (ANTS)
i want to get hold of the index of an item in an iteration so hopefully i can redirect actionErrors against the correct item I'm using the following <%@ include file="/Journal/JournalLineEdit.jsp" %> but I can't get hold of the lineIndex doco says its a bean but what kind of object is

RE: How to use nested:iteration tag?

2002-09-04 Thread Lister, Tom (ANTS)
e nested taglib. I'm not even convinced it's necessary. At least it shouldn't be. > -----Original Message- > From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 04, 2002 3:26 PM > To: 'Struts Users Mailing List' > Subject:

RE: How to use nested:iteration tag?

2002-09-04 Thread Lister, Tom (ANTS)
:iteration tag? This doesn't make any sense. I'm using java.util.Collection and I can't provide a getPlant(int i) method because you can't access a Collection like that. Michael > -----Original Message- > From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] > Sent

RE: How to use nested:iteration tag?

2002-09-04 Thread Lister, Tom (ANTS)
it may mean what it says this confused me when i tried using the nested tags the bean properties i wanted to use needed indexed getters and setters public void setJournalLineItems(int index, JournalLineVO journalLineItem) public JournalLineVO getJournalLineItems(int index) as well as my origina

RE: Struts nesting extension - gettin really desperate

2002-09-03 Thread Lister, Tom (ANTS)
anyone know Arron Bates email - I beleive he wrote this library :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 03 September 2002 15:00 To: 'Struts Users Mailing List' Subject: RE: Struts nesting

RE: Struts nesting extension - gettin desperate

2002-09-03 Thread Lister, Tom (ANTS)
Hi any one got any pointers for the below issue and performance problems with tags is this the down side of open source - support and documentation! :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 03

RE: Placing a Scriptlet inside

2002-09-03 Thread Lister, Tom (ANTS)
I'm sure we've done this recently along the lines of e.g. :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Sudhir S. Shetty [mailto:[EMAIL PROTECTED]] Sent: 03 September 2002 13:31 To: Struts Users Mailing List Subject: Placing a Scriptlet inside Hi Everyb

Struts nesting extension

2002-09-03 Thread Lister, Tom (ANTS)
Hi I am using the struts nesting extension to implement a master/detail type form Does anyone know if it possible to report validation errors for each detail line alongside the line it is related to. ie if get an error in line 2 i would like the errors next to that line. I guess i need to plant s

RE: Nested tags and performance (after compiling)

2002-09-03 Thread Lister, Tom (ANTS)
Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 02 September 2002 09:05 To: 'Struts Users Mailing List' Subject: Nested tags and performance (after compiling) Hi This isn't a compile problem. The pages performance are consistently slow even after the first acc

Nested tags and performance (after compiling)

2002-09-02 Thread Lister, Tom (ANTS)
27;! They don't understand compiled/slow once. Michael Lee - Original Message - From: "Donald Ball" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 28, 2002 10:23 AM Subject: RE: Nested tags performance > On 8/28/2002 at 1:58 PM Lister

RE: Nested tags performance

2002-08-28 Thread Lister, Tom (ANTS)
actually slows down and we suspect the problem is the garbage collector clearing up objects created by various tags although we've yet to put it through Optimizeit Any suggestions for speeding up? :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Lister, Tom

RE: Nested tags and jsp:include

2002-08-28 Thread Lister, Tom (ANTS)
i tried this in my include page and get org.apache.jasper.compiler.CompileException: /Journal/JournalEdit.jsp(235,3) /Journal/JournalLineEdit.jsp(1,0) According to the TLD attribute name is mandatory for tag root :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- Fr

RE: Handling lists

2002-08-15 Thread Lister, Tom (ANTS)
selected. :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 15 August 2002 09:55 To: 'Struts Users Mailing List' Subject: RE: Handling lists OK >From what your saying struts will pass an array of values

RE: Handling lists

2002-08-15 Thread Lister, Tom (ANTS)
. Struts will automatically fill the array with all the values sent from the form. ~ Keith http://www.buffalo.edu/~kkamholz -Original Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 12:46 PM To: 'Struts Users Mailing List' Subj

Handling lists

2002-08-14 Thread Lister, Tom (ANTS)
Does anyone know of a good reference that explains the use of select lists I want to create a list on a page then have it populate a collection in the Form bean I can create the lists in the form but I'm not sure what the data type should be on the form setter. I'd like to use a Collection but I

RE: logic:equals and null

2002-08-14 Thread Lister, Tom (ANTS)
ah ha found logic:present ! :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 14 August 2002 15:43 To: 'Struts Users Mailing List' Subject: logic:equals and null is it possible to check a fi

logic:equals and null

2002-08-14 Thread Lister, Tom (ANTS)
is it possible to check a field = null using logic equals :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] *** This communication (including any attachments) contains confidential information. If you are not the intende

RE: case-sensitive web-inf

2002-08-09 Thread Lister, Tom (ANTS)
Hi I've found on our PC's if I create or rename it as WEB-INF it is stored that way as the dos name even though explorer displays it as Web-inf Check the properties to make sure the underlying name is uppercase :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From:

web app sub-directories

2002-08-02 Thread Lister, Tom (ANTS)
Hi when building the root jsp directory is ti best to have all pages in one directory or to put them into sub-directories according to functions (e.g. /staticdata, /audit etc.). The reason for asking in that in using subdirectories the actions seem to take the context of the last page. :-) Tom L

RE: Master/Detail data - editing multiple entities in a grid

2002-07-25 Thread Lister, Tom (ANTS)
tags keeps all the relationships. NB if you do go that way, remember to either keep your form with the beans in in the session, or recreate them in the form reset method Lister, Tom (ANTS) wrote: > I hava an application that requires a master/detail type maintenance form. > e.g. order/ord

RE: Master/Detail data - editing multiple entities in a grid

2002-07-23 Thread Lister, Tom (ANTS)
, remember to either keep your form with the beans in in the session, or recreate them in the form reset method Lister, Tom (ANTS) wrote: > I hava an application that requires a master/detail type maintenance form. > e.g. order/order items. > Does anyone have any experience of model

Master/Detail data - editing multiple entities in a grid

2002-07-23 Thread Lister, Tom (ANTS)
I hava an application that requires a master/detail type maintenance form. e.g. order/order items. Does anyone have any experience of modelling this in struts. Ideally i will have the form contain a collection of order items (either directly or inside a 'value object' nested bean) Is it possible

RE: Tiles

2002-07-23 Thread Lister, Tom (ANTS)
I hava an application that requires a master/detail type maintenance form. e.g. order/order items. Does anyone have any experience of modelling this in struts. Ideally i will have the form contain a collection of order items (either directly or inside a 'value object' nested bean) Is it possible

RE: Framesets?

2002-05-23 Thread Lister, Tom (ANTS)
Hi Our main page is a classic frameset of header/menu/main In one display, within the main frame, I use a another framset with a javascript tree in one frame and a detail display page next to it, both pages are JSP's The only care taken was to ensure the correct targets are specified in any htm

RE: multi page workflow

2002-05-21 Thread Lister, Tom (ANTS)
Thanks I'll go back and read your doco and decide our current validation pattern is to use the validate() method in the form to perform simple data checking anything that requires a database lookup we do in a postFormValidation method which is called as part of our custom CRUD action components T

RE: multi page workflow

2002-05-21 Thread Lister, Tom (ANTS)
k would be nice :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message----- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 20 May 2002 15:52 To: 'Struts Users Mailing List' Subject: multi page workflow Help Does anyone have a pointer to examples of multipag

multi page workflow

2002-05-20 Thread Lister, Tom (ANTS)
Help Does anyone have a pointer to examples of multipage forms using Struts best design patterns, example code. I'm thought there was an example on the Struts resources but I can't see it anywhere. I don't want to used something as complex as Workflow Extension by Matthias Bauer I'm sure I've se

Struts for excel output

2002-04-30 Thread Lister, Tom (ANTS)
very slightly off topic We are trying to display a struts page in excel we changed the content type but this only seems to work in the development browsers and not for the users Everyon has office installed is the there a browser setting we should use - there appears to be no difference Does an

RE: logic equals problem

2002-04-26 Thread Lister, Tom (ANTS)
is it possible this is comparing string objects as opposed to string values :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 11:14 To: 'Struts Users Mailing List' Subject: logic equa

logic equals problem

2002-04-26 Thread Lister, Tom (ANTS)
Hi we can't get logic:notEqual to work in the following snippet We are trying to perform an action on the change of a string currency variable the logic not equal always evaluates to true even though we set the current value within the loop I am i missing something obvious here?

Action naming

2002-04-24 Thread Lister, Tom (ANTS)
Hi is it possible to create different action mappings in struts my problem is that i would like to create different actions namings e.g. view edit.static delete.static in order to make securing of web pages easier by using naming to group actions e.g. view of everyone, static data maintenance for

RE: JavaServerFaces (JSF) replacement for Struts?

2002-04-03 Thread Lister, Tom (ANTS)
hey there's new technology already :-) Tom Lister * 020 7612 3030 * [EMAIL PROTECTED] -Original Message- From: Melanie Harris [mailto:[EMAIL PROTECTED]] Sent: 02 April 2002 20:37 To: [EMAIL PROTECTED] Subject: JavaServerFaces (JSF) replacement for Struts? Hi All, Out on http://www.j

RE: design question

2002-03-05 Thread Lister, Tom (ANTS)
i see I am looking to build something similar and I am thinking of managing this through the action mappings. I am hoping to manage this as follows using the same action and keeping the form in the session. I plan to read up on building wizard type forms but from my small knowledge i think this w

RE: design question

2002-03-05 Thread Lister, Tom (ANTS)
I'm sure I've seen some notes on this in the Struts resources to get common behaviour Create your own action class that extends the struts Actions to hold common function calls Have your specific actions extend this default Action You can further subclass the default action e.g. we have a subclass

Graphs

2002-02-28 Thread Lister, Tom (ANTS)
Hi Does anyone know of a straightforward graphing applet that goes with struts Only need to plot simple 2d data as a line or bar chart :-) [EMAIL PROTECTED] *** This email message contains confidential information for the