RE: Session size

2004-05-27 Thread Jose Ramon Diaz
We use this approach : As our application is very heavy loaded data (?) (a lot of screens have alot of data, recordsets or huge texts), the Actions do NOT take the data itself to put it nor session neither request. The actions just modify the model to represent the new situation after a user subm

html:options tag with ArrayList of Strings

2004-05-27 Thread Nestor Boscan
Hi I'm working with the html:select and html:options tag and wanted to know if I can create a list box based on an ArrayList that contains Strings. Thanks in advance - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

how to send the 'index' to javascript function

2004-05-27 Thread subramaniam . o
Hi,         This is my jsp.                                                 how to send the 'index' as input to 'doThis()' [_javascript_ Function] Thanks Subramaniam DISCLAIMER: The information contained in this message is intended only and solely for the addressed individual or entity indic

how to send the 'index' to javascript function

2004-05-27 Thread subramaniam . o
Hi,         This is my jsp.                                                 how to send the 'index' as input to 'doThis()' [_javascript_ Function] Thanks Subramaniam DISCLAIMER: The information contained in this message is intended only and solely for the addressed individual or entity indi

[ANN] Expresso 5.5 Released with Struts 1.1 Integration

2004-05-27 Thread Sandra Cann
The Expresso team is proud to announce the release of Java's most popular architectural framework. The Expresso 5.5 release includes 60 new features, many feature improvements, package updates, bug fixes as well as significant JavaDoc and documentation updates. Download freely from: http://www.jcor

RE: Newbie question: Are there any issues in having popup browser windows

2004-05-27 Thread Andrew Hill
Beware of session-scoped ActionForms in this scenario. For a given ActionMapping you may only have one session scoped form per session for that mapping (because the attribute key is a constant defined either in the mapping or by the form name). If you have several windows open up on that mapping an

RE: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Joe Hertz
I'm glad someone feels this way. I use JBuilder 8, and I find it's the only IDE that actually has helped me more than it has gotten in my way. Still, it bothers me that it does things differently than every other IDE out there (Borland Make vs Ant, etc), and I keep threatening to punt it. I'm wai

Free Tomcat Struts loader for more rapid development

2004-05-27 Thread Budi Kurniawan
If you're using Tomcat 4.1 or 5.0 as the development engine of your Struts application, you might want to use the WebappLoader class that automatically reloads your application every time the struts-config.xml changes. This module is easy to use, simply copy the class file under %CATALINA_HOME%/

RE: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Apurva Goswami
Guys! Check Exadel's Struts Studio - a great tool for designing and building application using struts framework. Not free but u can download trial version I am sure many others are in process of developing GUI based development tool(s). Apple's WebObjects is framework based application developme

Re: presentation tag- Thank you.

2004-05-27 Thread vancega
Mark and Joe, Thank you very much for your info. I will try it out. :) Kathy . - Original Message - From: "Joe Germuska" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, May 27, 2004 5:15 PM Subject: Re: presentation tag > At 4:54 PM -0400 5/27/04

[OT]: StatefulSessionBeans and HTTPSession

2004-05-27 Thread Kunal H. Parikh
Hi All! Just wanted to know if there is a better strategy to do this. My current implementation: Struts/JSP --> BusinessDelegate --> StatefulSessionBean --> Multiple EntityBeans Now, I add the BusinessDelegate to my HttpSession, effectively keeping the handle to my StatefulSessionBean. Instead,

RE: Are there any IDE's that understand Struts tags?

2004-05-27 Thread christopher
JBuilder X (on PC, Mac and Linux) understands Struts. Makes life a breeze to be honest. I believe this only applies to the Developer and Enterprise editions, not Personal. We've been with JBuilder from version 2 and JBuilder X is by far the best (quite rightly). A free 30 day trial can be do

Re: Passing ActionForm along on the request

2004-05-27 Thread DGraham
I ran into a similar situation where my session scoped bean was being reset between chained actions.  The solution put forth by Ted Husted in his book "Struts in Action", is to add a boolan property to the form, called mutable including setMutable() .  This property would be checked by the various

Re: Multiple validation.xml

2004-05-27 Thread Nikander, Linus
Why do you think merges are preferable to concurrent files with different names (just wondering, not I'm not saying you are wrong ;) ? Apart from being able to "own" the file you are working on completely, I see another benefit of concurrent files in being able to subdivide the validation.xml int

Reset problem in modify process

2004-05-27 Thread S. M. Mizanur Rahman
Hi all, I am in a problem with reset method. I have to different process, add and modify info. I use single formbean to implement this to process.When i add info no problem there if any error occured. the fields containes the current value. But in case of modify preocess we have to import data

Struts html:option with an ArrayList of Strings

2004-05-27 Thread Nestor Boscan
Hi I'm working with the html:select and html:options tag and wanted to know if I can create a list box based on an ArrayList that contains Strings. Thanks in advance - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Struts 1.1 with commons-lang-2.jar

2004-05-27 Thread Barnett, Brian W.
Struts 1.1 ships with some 1.x version of commons-lang.jar. Is it okay to use a 2.x version of commons-lang.jar with Struts 1.1?

only with bean?

2004-05-27 Thread Samuel Rochas
Hello there, I am able to create a html select with struts when the collection to display in the options tag is a collection stored in the session or request and to use the selected value for my form. Fine. But now I have a Form representing a bean. This form has an attribute of type ArrayList.

RE: Tiles definitions accessing jsps in a foreign context

2004-05-27 Thread Mick . Knutson
Whoops. Yes, mine is deploy time fix. -Original Message- From: Carlos Sanchez [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 2:56 PM To: 'Struts Users Mailing List' Subject: RE: Tiles definitions accessing jsps in a foreign context Not at building time, at runtime you can access

RE: Tiles definitions accessing jsps in a foreign context

2004-05-27 Thread Carlos Sanchez
Not at building time, at runtime you can access resources in another webapp, so if you change something in "common" webapp you only have to deploy "common" webapp. The way you do it you would have to deploy all the webapps. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL P

RE: Tiles definitions accessing jsps in a foreign context

2004-05-27 Thread Mick . Knutson
I actually have a /web/common DIR that I have ant add to each of my web modules. Is that what you mean? -Original Message- From: Carlos Sanchez [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 2:45 PM To: 'Struts Users Mailing List' Subject: Tiles definitions accessing jsps in a for

Tiles definitions accessing jsps in a foreign context

2004-05-27 Thread Carlos Sanchez
Hi, I have some webapps that share some files (images, css, ...) and also the header and footer and I'd like to put shared resources in a common webapp so they are not duplicated. I found the jstl c:import tag and suitable for some of the resources but I'm using tiles with the definitions in an x

Fill the form

2004-05-27 Thread Teixeira, Jorge (Informaker)
I have information and I want sem this information to one form jsp. What I need do? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Validator Framework + JavaScript

2004-05-27 Thread Brian Boyle
Hey! I am currently using the validator framework in my application to validate my inout fields etc. The only rule I am really using is "required". WHat I wan to know is if I can use both the Javascript validation and the normal validation at the same time. The reason I want this is because when

Re: presentation tag

2004-05-27 Thread Joe Germuska
At 4:54 PM -0400 5/27/04, Kathy Zhou wrote: How could I show 3 elements of a ArrayList per line on the page with tag. My code is: HashMap ilist =..; Its value is a ArrayList of javabeans having getter/setter methods. c:out value="${vissue.key}"/> <%--- need 3 var values per line --

Re: presentation tag

2004-05-27 Thread Mark Lowe
This should sort you out. On 27 May 2004, at 22:54, Kathy Zhou wrote: How could I show 3 elements of a ArrayList per line on the page with tag. My code is: HashMap ilist =..; Its value is a ArrayList of javabeans having getter/setter methods. c:out value="${vissue.key}"/>

Re: Best way to connect to Database in struts

2004-05-27 Thread Riyad Kalla
Ditto to this comment. DB > Tomcat JNDI Context > Hibernate > Struts Tomcat JNDI will manage the connection pooling to the DB for you, then hibernate will use the pooled connection to perform queries against, and then in your struts app all you do is add/update/remove your objects directly us

Using radio buttons in validation

2004-05-27 Thread Vinita Keswani
Hello, I have been trying to find something over the net but in vain!! Is there a way possible to validate array of radio buttons using validation.xml? Has somebody custom validator written for the same? Thanks to help. Vinita __ Do you

presentation tag

2004-05-27 Thread Kathy Zhou
How could I show 3 elements of a ArrayList per line on the page with tag. My code is: HashMap ilist =..; Its value is a ArrayList of javabeans having getter/setter methods. c:out value="${vissue.key}"/> <%--- need 3 var values per line --%> it

presentation tag

2004-05-27 Thread Kathy Zhou
How could I show 3 elements of a ArrayList per line on the page with tag. My code is: HashMap ilist =..; Its value is a ArrayList of javabeans having getter/setter methods. c:out value="${vissue.key}"/> <%--- need 3 var values per line --%> i

Advantage of templates over tiles

2004-05-27 Thread Kusum Dmonte
hi all Struts 1.0 had templates tag , while in struts 1.1 tiles architecture was introduced . I want to know the advantage of tiles over template - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Best way to connect to Database in struts

2004-05-27 Thread David Friedman
Next vote: Hibernate! (www.hibernate.org) Regards, David -Original Message- From: Barnett, Brian W. [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 1:49 PM To: 'Struts Users Mailing List' Subject: RE: Best way to connect to Database in struts Use iBATIS SqlMaps and Dao framework.

Re: standard tags vs. struts specific tags

2004-05-27 Thread Rick Reumann
Nathan Maves wrote: Why don't you use the Yea, I could and probably should. For the html:messages though was what I should have refered to. That's a bit easier to use than a c:forEach loop. -- Rick - To unsubscribe, e-mail: [EMA

Re: Tag

2004-05-27 Thread Henrique VIECILI
Hi Brian, you are almost there, the way you are doing the html:options tag is trying to fetch your collection from the method 'getConstName()' in some bean stored in 'constituencies' (since you defined 'name' attribute). But you already have your collection stored in 'constituencies', then you

Re: standard tags vs. struts specific tags

2004-05-27 Thread Nathan Maves
Rick, Why don't you use the Nathan On May 27, 2004, at 12:59 PM, Rick Reumann wrote: Barnett, Brian W. wrote: Does this mean I should use jstl from Sun or are the standard tags (c, fmt, sql, etc) that come with struts 1.1 just fine? Sun's site makes it very annoying. I don't know why they don't

Re: standard tags vs. struts specific tags

2004-05-27 Thread Rick Reumann
Slattery, Tim - BLS wrote: But that wasn't OP's question. He wanted to know if there was an advantage to using the JSTL libraries on Sun's site over the JSTL libraries that come in the Struts download. AFAIK, there is not. Guess I've been out of it.. I didn't realize Struts is now including the JS

RE: Session size

2004-05-27 Thread Hookom, Jacob
We've noticed in our enterprise deployments that we aren't utilizing the session enough... so there's no straight rule of thumb. It depends on how many users you have and how much memory/processor. We have the opposite problem where we are scoping too much stuff at the request and refetching it al

Re: standard tags vs. struts specific tags

2004-05-27 Thread Riyad Kalla
Thanks Rick for the link. I just got done installing J2EE 1.4 so I could copy out the files, talk about overkill! On Thursday 27 May 2004 11:59 am, Rick Reumann wrote: > Barnett, Brian W. wrote: > > Does this mean I should use jstl from Sun or are the standard tags (c, > > fmt, sql, etc) that

RE: standard tags vs. struts specific tags

2004-05-27 Thread Slattery, Tim - BLS
> Sun's site makes it very annoying. I don't know why they > don't provide a link to the JSTL tags directly. You can get >the JSTL tags here: > http://jakarta.apache.org/taglibs/index.html >And yes use them instead of the struts tags where possible. You still >need to use the struts form tags

RE: standard tags vs. struts specific tags

2004-05-27 Thread Barnett, Brian W.
Thanks Rick. -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 1:00 PM To: Struts Users Mailing List Subject: Re: standard tags vs. struts specific tags Barnett, Brian W. wrote: > Does this mean I should use jstl from Sun or are the standard t

Re: standard tags vs. struts specific tags

2004-05-27 Thread Rick Reumann
Barnett, Brian W. wrote: Does this mean I should use jstl from Sun or are the standard tags (c, fmt, sql, etc) that come with struts 1.1 just fine? Sun's site makes it very annoying. I don't know why they don't provide a link to the JSTL tags directly. You can get the JSTL tags here: http://jaka

RE: [OT] DisplayTag and Links

2004-05-27 Thread Avinash Gangadharan
Oops missed an attribute -Original Message- From: Avinash Gangadharan [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 11:53 AM To: 'Struts Users Mailing List' Subject: RE: [OT] DisplayTag and Links Daniel, Try this : The displaytag user list would be a grea

Re: Tag

2004-05-27 Thread Rick Reumann
Brian Boyle wrote: I am trying to populate a drop down list with values that I have in a Collection but it is not working. This is what I have so far in my JSP: I have a Collection called constituencies stored in my session and it has javaBeans as elements in it. THese javabeans have a getCons

RE: [OT] DisplayTag and Links

2004-05-27 Thread Avinash Gangadharan
Daniel, Try this : The displaytag user list would be a great place too for such questions: [EMAIL PROTECTED] Avinash -Original Message- From: Daniel Kalcevich [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 11:02 AM To: Struts Users Mailing List Subject: [OT] Display

standard tags vs. struts specific tags

2004-05-27 Thread Barnett, Brian W.
Found this on the Struts site: "The Struts team encourages the use of the standard tags over the Struts specific tags when possible" Does this mean I should use jstl from Sun or are the standard tags (c, fmt, sql, etc) that come with struts 1.1 just fine? If from Sun, is there some way to

What was the name of this application? [was] Re: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Rick Reumann
Adam Lipscombe wrote: I am developing a J2EE server using Struts. The JSPs will be constructed by a web developer who is used to DreamWeaver. Actually there was a struts application/IDE that was for demo that was quite impressive but now I forgot the name. It wasn't one of the ones mentioned so

Re: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Riyad Kalla
Mike, Give MyEclipse a try, what you described is what it does. The JSTL support isn't fully there yet, but it should be by the next release. And its $30 a year (that like 8 cents a day) Best, Riyad On Thursday 27 May 2004 05:11 am, Mike Duffy wrote: > I would strongly suggest that you stay awa

[OT] DisplayTag and Links

2004-05-27 Thread Daniel Kalcevich
I have a display tag snippet on my JSP and it works fine, but when I try to add the link it does not add it. The code looks like this: I am wondering if anyone has gotten links to show up using their display tag? I have the version 1.0-

Re: Are there any IDE's that understand Struts tags?

2004-05-27 Thread bOOyah
Mike Duffy wrote: I've looked at some of the current Struts design tools and they appear to be over-glorified config file editors. I think there is an opportunity for some of these small companies who wish to play in the IDE space to create a JSP editor plugin for Eclipse that supports both Strut

RE: Best way to connect to Database in struts

2004-05-27 Thread Barnett, Brian W.
Use iBATIS SqlMaps and Dao framework. www.ibatis.com -Original Message- From: Axel Seinsche [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 11:43 AM To: Struts Users Mailing List Subject: Re: Best way to connect to Database in struts Zaid wrote: >Dear Friends, > >I am new to str

Re: Best way to connect to Database in struts

2004-05-27 Thread Axel Seinsche
Zaid wrote: Dear Friends, I am new to struts, so I was confused in choosing the best way to make connection to Database, whether data-resources or Plugin or any other method, however, if any suggested way to connect, please inform me. Baring in mind that I am using MySQL server. As the Struts da

Best way to connect to Database in struts

2004-05-27 Thread Zaid
Dear Friends, I am new to struts, so I was confused in choosing the best way to make connection to Database, whether data-resources or Plugin or any other method, however, if any suggested way to connect, please inform me. Baring in mind that I am using MySQL server. Thanx Friends, Zaid ---

RE: Navigation Bar

2004-05-27 Thread Zaid
Dear ayouaa0a & Jay, Thanx alot, you've been very helpful in showing resources of Navigation bar, actually I was looking for what you sent in the below link: http://jsptags.com/tags/navigation/pager/index.jsp Best Regards, Zaid > Are you referring to a navigation bar (a list or menu on left ha

Tag

2004-05-27 Thread Brian Boyle
Hey! I am trying to populate a drop down list with values that I have in a Collection but it is not working. This is what I have so far in my JSP: I have a Collection called constituencies stored in my session and it has javaBeans as elements in it. THese javabeans have a getConstName() attrib

RE: Newbie question: Are there any issues in having popup browser windows

2004-05-27 Thread Geeta Ramani
Plus isn't it true that whether or not a new session is created on opening a new window is browser dependent (I think..?).. I vaguely remember a discussion about this a while ago. If this is the case, then this will impact how your application is coded... Geeta > -Original Message- > F

Re: Session size

2004-05-27 Thread Riyad Kalla
On Thursday 27 May 2004 09:53 am, Zhang, Larry (L.) wrote: > It sounds like very promising to me. The only consideration is that caching > those objects may cause another issue of usage of the memory. And also when Yes absolutely a concern, which is where you can tune how big your cache for DAO i

Re: Newbie question: Are there any issues in having popup browser windows

2004-05-27 Thread Rick Reumann
Adam Lipscombe wrote: Are there any issues to bear in mind when displaying sub-windows in a browser? One of our web developers wants to have several sub-windows launched from links on the main page. Is this OK in Struts? Ok for Struts fine. Ok from a usability perspective.. that depends:) -- Rick -

Re: Dynamically sized form using dynavalidator

2004-05-27 Thread Rick Reumann
Jim Kennedy wrote: I figured this one out. Man, what a landmine. BTW, good suggestions from all of you. Here's what I did: In my struts config I named the form property "cart". See below type="org.apache.struts.validator.DynaValidatorForm"> type="com.je.common.ShoppingCartItem[]"/>

RE: Session size

2004-05-27 Thread Zhang, Larry \(L.\)
It sounds like very promising to me. The only consideration is that caching those objects may cause another issue of usage of the memory. And also when the tree is changed (by deleting/transferred one employee from the tree) we need to somehow validate/rebuild the cached list of objects. Is thi

RE: Session size

2004-05-27 Thread Zhang, Larry \(L.\)
Sounds a good explanation, Riyad. I will be loading the DisplayObject directly from the DB with a query, and thus it seems that you agree on going with the smaller object. Thanks. -Original Message- From: Riyad Kalla [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 12:16 PM To:

Re: Session size

2004-05-27 Thread Riyad Kalla
Hmm, I should clarify what I meant: The DAO will be at the application scope, so if you cache say the last 50 queries, the cache is held at application scope. In your case, this will still help. Lets say you have 20 users all working on the site, they all hit their "Show employement Tree" pag

RE: Navigation Bar

2004-05-27 Thread Jay Glanville
Are you referring to a navigation bar (a list or menu on left hand side of page allowing navigation around a site) or paging controls (first / prev / next / last)? These are usually two different things. For navigation / menu controls, one possibility is Struts-Menu: http://struts-menu.sourceforg

Re: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Riyad Kalla
I second this especially if you are doing Struts. MyEclipse offers wizards, visual flow navigation and manipulation for your Struts apps which is quite nice and of course JSP autocomplete, debugging, taglib autocomplete, xml autocomplete, etc. etc. all the bells and whistles. ** Disclaimer: I

Re: Session size

2004-05-27 Thread Riyad Kalla
Larry, It depends on how you load the elements. If you are creating the smaller objects by first loading the full objects, then just save the time and use the full ones. If however you are loading the DisplayObjects directly via a Hibernate query of course that will be magnitudes smaller. Also

RE: Session size

2004-05-27 Thread Zhang, Larry \(L.\)
In my case I have to keep the List in the session level instead of application level since different user will have different list of employees. -Original Message- From: Riyad Kalla [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 11:53 AM To: Struts Users Mailing List Subject: Re:

Re: Session size

2004-05-27 Thread Riyad Kalla
Why do you like ibatis? I've never heard of it, is it like OScache? On Thursday 27 May 2004 09:08 am, Paul Barry wrote: > Sounds like a good idea. I suggest that you look into using something > like ibatis to handle the caching for you, and it definately won't take > you a week to implement, even

RE: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Pilgrim, Peter
> -Original Message- > From: Daniel Perry [mailto:[EMAIL PROTECTED] > Sent: 27 May 2004 10:33 > To: Struts Users Mailing List > Subject: RE: Are there any IDE's that understand Struts tags? > > > As a company we offer web design, programming, etc, etc. We > have had the > exact same pro

Re: Session size

2004-05-27 Thread Paul Barry
Sounds like a good idea. I suggest that you look into using something like ibatis to handle the caching for you, and it definately won't take you a week to implement, even with the learning curve of ibatis. Riyad Kalla wrote: Mike, Good suggestions. I was dealing with something like this recent

RE: Session size

2004-05-27 Thread Zhang, Larry \(L.\)
Thanks for the opinion. Changing to use a LinkedList is of course no problem. And we have to store the list to session per application requirements. I would be more interested to know if we change the big elements in the list to much smaller ones in the list, does it reduce the session (my secon

RE: Navigation Bar

2004-05-27 Thread ayouaa0a
U will find a link to this site in struts documents burried some wher, I used it, really great :) http://jsptags.com/tags/navigation/pager/index.jsp -Original Message- From: Zaid [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 6:58 PM To: Struts Users Mailing List Subject: Naviga

Navigation Bar

2004-05-27 Thread Zaid
Dear Friends, I am new Struts developer, meanwhile I did huge coding in PHP; however, I am trying to find a custom tag which can work as a navigation bar, the specification on the bar shoulf contain next, prev, first and last as well. could anyone help me in finding useful one ? I would be very m

Re: Session size

2004-05-27 Thread Riyad Kalla
Mike, Good suggestions. I was dealing with something like this recently and decided that for me, adding caching at the DAO level: e.g. List userList = UserDAO.getAllUsers(); would offer the biggest performance benefit since it would be: (a) application wide, instead of per session (b) returned

Re: Session size

2004-05-27 Thread Mike Zatko
I personally think its too big. Large amounts of data like that should be put in request scope so that it gets flushed out of memory right away. If you need the data to be persistent through the user's session lifetime, mabye try serializing it to a database. Of course, different situations cal

Re: Session size

2004-05-27 Thread Riyad Kalla
Larry, Good question. I am curious what others think about this situation as well. On Thursday 27 May 2004 08:24 am, Zhang, Larry (L.) wrote: > It is apparent true that if the session size is big, the performance will > be negatively affected. The question is that how to actively control the > siz

Session size

2004-05-27 Thread Zhang, Larry \(L.\)
It is apparent true that if the session size is big, the performance will be negatively affected. The question is that how to actively control the size of session. Let's discuss this question: I have a page which displays all the subordinates of a manager, for some reasons I want to create a Li

Newbie question: Are there any issues in having popup browser windows

2004-05-27 Thread Adam Lipscombe
Folks, Are there any issues to bear in mind when displaying sub-windows in a browser? One of our web developers wants to have several sub-windows launched from links on the main page. Is this OK in Struts? TIA - Adam - To u

General Caching Strategies

2004-05-27 Thread Ricardo Cortes
Hi there, I know this is a loaded question but what strategies are you guys using for caching within struts? Our application is moving towards production in the next month or so and we need to start thinking about caching data as our userbase is around 2 million subscribers. We are employing

RE: Strategies for Clearing Session Objects

2004-05-27 Thread Hookom, Jacob
We help keep things clean in the session by putting our controller in the session and using property change / event listeners. It's an idea that's used in game development where you have a SceneManager, and Scenes. The SceneManager will load a new Scene (in our case a module, flow, page, etc), an

Re: Struts - not compatible with IE 5.2 on MacIntosh???

2004-05-27 Thread Mark Lowe
I'll enter what i've found so far. And see what comes up when i deply it to our live server. I also stick to safari and firefox. But was curious when i saw this, as i was caught out with ssl, apache and ie mac the other day. On 27 May 2004, at 14:54, Joe Germuska wrote: At 9:53 AM +0200 5/27/0

Re: jsp:plugin & Struts.

2004-05-27 Thread Alan Pocklington
Cheers, that works great. Many thanks, Alan. Kris Schneider <[EMAIL PROTECTED]> wrote in news:1085665492.40b5f0d48e866 @internal.dotech.com: > > > > and then use it just like have below. - To unsubscribe, e-mail: [EMAIL

Re: null form passed to execute method

2004-05-27 Thread MichaelBoucher
Here's the segment of the validation.xml file which applies to login... ... Looks pretty vanilla to me... c'ya Mike Mike Boucher [EMAIL PROTECTED] Edgil Associates www.edgil.com "Don't take

RE: null form passed to execute method

2004-05-27 Thread MichaelBoucher
Hi there, Nope. No database statements in any actions. All database statements are done on a separate application server (written in C++), and all calls to that app server are in the models. c'ya Mike Mike Boucher [EMAIL PROTECTED] Edgil Associates www.edgil.

Re: jsp:plugin & Struts.

2004-05-27 Thread Kris Schneider
and then use it just like have below. Quoting Alan Pocklington <[EMAIL PROTECTED]>: > Hi, > > Is there a Struts version of the tag? > > What I'm trying to do is something along the following lines: > > name="appletName" > code="com.xxx.applet.class" > a

Re: null form passed to execute method

2004-05-27 Thread Martin Gainty
Michael- Could you supply your LoginAction-validation.xml Regards, Martin - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 27, 2004 9:15 AM Subject: null form passed to execute method > Hi folks, > > I'm experiencing some strange behavior that I

Re: How long are your struts-config files? Should I worry about performance?

2004-05-27 Thread Riyad Kalla
Jose thank you for the detailed info, definately larger than mine! When I first read your email, I thought that "19,35,4,41 Kb" was one number, and I was sitting there scratching my head trying to figure out what Locale you were from :D Jose Ramon Diaz wrote: Hi, We have 4 struts-config in our

RE: null form passed to execute method

2004-05-27 Thread Geeta Ramani
Mike: My guess: Look at your Action class. Do you have database statements, result sets, connections that aren't getting closed in a finally block? Regards, Geeta > It isn't consistent, sometimes it happens, most of the time > it doesn't. > The one constant is that when it happens, I have to

jsp:plugin & Struts.

2004-05-27 Thread Alan Pocklington
Hi, Is there a Struts version of the tag? What I'm trying to do is something along the following lines: Ideally I'd like a html:rewrite tag to generate the path to the applet's JAR, but I can't achieve this directly or indirectly via a scriptlet. If there isn't a struts version of the jsp:p

RE: HTML To Struts tag

2004-05-27 Thread Kamholz, Keith (corp-staff) USX
Just use the HTML tags like you normally would. Struts apps and JSP's don't need to be completely composed of custom tags. That seems kind of obvious though, so maybe I'm not getting exactly what you're asking... Keith Kamholz IT - Programming and Architecture Moog Inc. -Original M

null form passed to execute method

2004-05-27 Thread MichaelBoucher
Hi folks, I'm experiencing some strange behavior that I can't figure out... The first page of the application is a login page. Its pretty simple, has username and password text fields, and a login button. Every so often, the form parameter of the execute method in my LoginAction class is null.

Re: Struts - not compatible with IE 5.2 on MacIntosh???

2004-05-27 Thread Nathan Maves
I have hear that ie for macs will not send form elements across if they are null. Most other browsers send them across as an empty string or null. I run on a mac so please let me know if you need any testing done. Nathan On May 26, 2004, at 8:12 PM, Kendell Churchwell wrote: Hi - I deployed a

Re: Confirmation Requested: "development has stopped on the presentation tags"

2004-05-27 Thread Joe Germuska
At 8:45 AM -0400 5/27/04, Jay Glanville wrote: > -Original Message- From: Mike Duffy [mailto:[EMAIL PROTECTED] Subject: RE: Are there any IDE's that understand Struts tags? I would strongly suggest that you stay away from (or move away from) the Struts presentation tags and use JSTL i

Re: Struts - not compatible with IE 5.2 on MacIntosh???

2004-05-27 Thread Joe Germuska
At 9:53 AM +0200 5/27/04, Mark Lowe wrote: I've just tested on our staging server. Apache 2 + jk2 the same app, with msie 5.2 mac. And the same multipart form including an image upload worked just fine. Hm. I use Safari and Firefox almost completely these days, but I could swear that we'd run in

RE: version confusion

2004-05-27 Thread Joe Germuska
At 9:12 AM +0200 5/27/04, Zsolt Koppany wrote: Hi Riyad, I used tomcat-4.1.x and struts-1.1 with the contributed JSTL libraries thus I could you use EL expressions also in tomcat-4.1. What is the difference between TC-4.1 and TC-5.0 about the EL expressions? Zsolt Mostly that you can use EL express

RE: Dynamically sized form using dynavalidator

2004-05-27 Thread Jim Kennedy
I figured this one out. Man, what a landmine. BTW, good suggestions from all of you. Here's what I did: In my struts config I named the form property "cart". See below Here's the gotcha: You also have to name the "var" in the loop the exact same na

Confirmation Requested: "development has stopped on the presentation tags"

2004-05-27 Thread Jay Glanville
> -Original Message- > From: Mike Duffy [mailto:[EMAIL PROTECTED] > Subject: RE: Are there any IDE's that understand Struts tags? > > > I would strongly suggest that you stay away from (or move > away from) the Struts presentation tags > and use JSTL instead. Development has essentiall

Re: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Duncan Mills
Oracle JDeveloper 10g (http://otn.oracle.com/products/jdev) understands the Struts tags and will pre-render them at design time if that's what you want to see in the visual editor. For instance a will render as a Text field not as a tag, likewise tags will be resolved at design time so you'

Re: RE: Are there any IDE's that understand Struts tags?

2004-05-27 Thread tnist
You may want to check out the plunin at www.myeclipseide.com, it offers support for both Struts and other tag libs as long as you configure your project correctly. While there is a small fee, 29.95, IMHO it is well worth it. Regards, Todd > > From: Mike Duffy <[EMAIL PROTECTED]> > Date: 2004/

RE: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Mike Duffy
I would strongly suggest that you stay away from (or move away from) the Struts presentation tags and use JSTL instead. Development has essentially stopped on the Struts presentation tags. JSTL has more functionality and JSTL is the "standard". What I would really like to see in an IDE is the

RE: scope and presenting realtime data (fwd)

2004-05-27 Thread ramudu
Dear Alexander and others.. thanks for your input.. definitely i will incorporate these things.. above all, i very much enjoyed this tech. discussion.. thanks & regards -Ramudu On Thu, 27 May 2004, Jesse Alexander (KXT) wrote: > 1) sounds good > 2) why not do this checking every other time y

RE: Are there any IDE's that understand Struts tags?

2004-05-27 Thread Jesse Alexander (KXT)
Dreamweaver's bigger brother "Ultra..." is supposed to know Struts tags. - Websphere Studio (based on exclipse) has a graphical jsp-editor fully aware of Struts. - Weblogic Studio has Page-Flows which is an extension of Struts. Have not yet used it... => has become an Apache project (Beehi

  1   2   >