RE: Expert guidance required for Configuring Struts. !! S O S !!

2002-02-06 Thread jayanta . roy
Hi Mikkel, Thanks for your reply. It would be really great if you could send me a write up on how you made it move on iPlanet 4.1 By the way, I am able to run the custom tag library thing on iPlanet that I have written for my self. Am sure once the Struts thing is working on my iPlanet, I can

ActionServlet problem

2002-02-06 Thread jayram joshi
I have written MyActionServlet which extends ActionServlet, have overridden the init method ensuring a call to super.init(), made proper changes to web.xml. Now when i try to invoke this ..I get following exception ... avax.servlet.ServletException: Cannot find message resources under key

ActionServlet problem

2002-02-06 Thread jayram joshi
I have written MyActionServlet which extends ActionServlet, have overridden the init method ensuring a call to super.init(), made proper changes to web.xml. Now when i try to invoke this ..I get following exception ... javax.servlet.ServletException: Cannot find message resources under key

RE: Expert guidance required for Configuring Struts. !! S O S !!

2002-02-06 Thread Suresh_Babu
Does iPlanet 4.1 WebServer support WAR deployment? Regards Sureshbabu -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 2:04 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject:

RE: Expert guidance required for Configuring Struts. !! S O S !!

2002-02-06 Thread jayanta . roy
No... but version 5.0 and above do... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 2:01 PM To: [EMAIL PROTECTED] Subject:RE: Expert guidance required for Configuring Struts. !! S O S !! Does iPlanet 4.1

RE: Expert guidance required for Configuring Struts. !! S O S !!

2002-02-06 Thread Suresh_Babu
How do you deploy an Struts based application on a WebServer which doesn't support WAR deployment? Regards Sureshbabu -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 2:13 PM To: [EMAIL

RE: Expert guidance required for Configuring Struts. !! S O S !!

2002-02-06 Thread jayanta . roy
You explode the war file yourself and post the code in appropriate folder that Mikkel has been talking about... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 2:10 PM To: [EMAIL PROTECTED] Subject:RE: Expert

RE: Design question about ActionForm's validate method

2002-02-06 Thread Jonathan Gibbons
Hi, live and learn eh! I revise my recommendation, you still need two URL's, but they can go to defined action paths. However, beware of users browsing directly to the JSP's and code with that in mind. Also to stop yourself going mad, make sure the GET path and POST path are different

Re: Tiles Definitions - how to I 18n them?

2002-02-06 Thread Ivan Siviero
definition name=index path=/layouts/courseBuilder.jsp put name=title value=Course Builder / put name=header value=/common/header.jsp / put name=menu value=doc.menu.main / put name=footer value=/common/footer.jsp / put name=body value=doc.portal.body / /definition

RE: HOW TO: Running struts 1.0 on Iplanet 4.1 on Solaris and it works on NT too!

2002-02-06 Thread jayanta . roy
Thanks Mikkel for the details... I am trying it out and will let you know any further implications I face... -Original Message- From: Mikkel Bruun [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 2:23 PM To: '[EMAIL PROTECTED]' Subject:HOW TO: Running

Jetspeed iCalendar

2002-02-06 Thread Martin Farrell
Hi I am interested in adding calendar functionality to my application, and the best option i have found has been jetspeeds iCalendar implementation - http://jakarta.apache.org/jetspeed/site/icalendar.html My question is has anyone had any experience with this implementation? the current status

RE: speed of struts

2002-02-06 Thread Christopher Cheng
My form does not have a lot of tag processing (acutally none) The time it takes to load the page is proportional to the number of instances of form objects appeared on the JSP. For instance, outputting a radio set is A LOT slower than outputting a drop down list since you just have to pass a

Re: Best pratice for using Log4j, EJB, Struts, and WebLogic 6.1 together

2002-02-06 Thread holger.wiechert
Sorry, that I continue this line even though this is not a Struts issue. There's more to think about within this setup. Log4J does not include any transactions/synchronisation for the appenders (you would have to implement your own to do so). Let's say: you want to log into the same RFAppender

Problem Printing out bean with SHIFT_JIS information in it

2002-02-06 Thread Antony Stace
Hi I am pulling some Shift_JIS data out of a database and then populating a bean with this data. This data is then displayed on a page, the trouble is that the data is coming out as garbage. I have at the top of the page %@ page contentType="text/html; charset=SHIFT_JIS" % and have in the

Novell Bordermanager

2002-02-06 Thread David Bolsover
Hi all I have a struts application hosted on a W2K server running Apache/Tomcat. The application runs fine for most uses - but I have one user who is accessing application from a system protected by bordermanager. For this user, the pages do not refresh correctly (old pages are returned)

RE: speed of struts

2002-02-06 Thread ltorrence
I had a form with lots of custom tags. When run under the Sun 1.3 JDK it was slow as molasses. Sun 1.2 JDK or IBM 1.3 was instantaneous. A few mailing list posts pointed me to a bug in Sun's 1.3 having to do with nested try/catch blocks in the compiled JSP. Try your page under Sun 1.2 or the IBM

Long term Session attributes [ was RE: Wizard Interface question ]

2002-02-06 Thread Peter Pilgrim
I suppose you can make all your big session object implement a `Leaseable'. public interface SessionLeaseable { public void updateLastModified(); public long getLastModified() ; } Have a background thread or even better a java.util.Timer on each session object or per user. The

Re: Novell Bordermanager

2002-02-06 Thread Jonathan Gibbons
My guess is that there is proxy caching going on someplace. Setting the HttpServletResponse header fields should do it, not sure if there is a tag, but its easy enough to do in the JSP itself % response.addHeader(Pragma,no-cache); response.addHeader(Cache-Control,no-cache); % Jonathan

Re: OReilly Struts book - EJB/STRUTS Application?

2002-02-06 Thread Hertzel Karbasi - OPTinity eBusiness Solutions
Chuck, Is there any code available for Struts/EJB application on the web? Any references will be appreciated. Thanks Hertzel - Original Message - From: Chuck Cavaness [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Tuesday, February 05, 2002 5:30 PM Subject:

Re: Long term Session attributes [ was RE: Wizard Interface question ]

2002-02-06 Thread Duncan Harris
[EMAIL PROTECTED] (Peter Pilgrim) wrote: Have a background thread or even better a java.util.Timer on each session object or per user. The sleeper or swiper continuous timer wakes up every 10 minutes or so iterates through the attributes in the session looking especially for Leasable

RE: bean passing

2002-02-06 Thread Steven Banks
Stephen: Your answer is a solution to a problem I have been trying to grasp for awhile. We use a connection pool and I was trying to figure out how to page through large resultsets without having to rerun the entire query and then move through the resultset to the correct position each time.

RE: Can anyone help me how to unsubscribe

2002-02-06 Thread Galbreath, Mark
Welcome to the Hotel California Mark -Original Message- From: Krishnamoorthy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 1:12 AM To: Struts Users Mailing List Subject: Can anyone help me how to unsubscribe Actually I tried in all the possible ways to unsubscribe.

RE: bean passing

2002-02-06 Thread Jonathan Gibbons
Hi Stephen, Download my struts example, it includes paged searches implemented in stateless session beans - actually pretend stateless session beans, so you don't need an app server. http://www.faraway.co.uk/tallsoft/lowroad/ click on downloads, agree, examples, example 2 Jonathan

RE: Poolman User Group

2002-02-06 Thread Galbreath, Mark
Is there a way to strip the mumbo-jumbo disclaimer from your emails to save some bandwidth? Mark -Original Message- From: Jerome Josephraj [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 3:56 AM Hi, Is there a user group for poolman? Ta, Jerome

RE: speed of struts

2002-02-06 Thread Galbreath, Mark
50 fields in a form??? Me thinks the bug is in the design. Cheers! Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:02 AM To: [EMAIL PROTECTED] Subject: RE: speed of struts I had a form with lots of custom tags. When run

RE: Can anyone help me how to unsubscribe

2002-02-06 Thread Jim.W.Berg
You can send an email to the following: [EMAIL PROTECTED] When you get a response back, make sure that you send a blank reply to the address indicated in the message. If you do not follow the instructions, then you will not be unsubscribed. I successfully unsubscribed last Friday and then

Re: Novell Bordermanager

2002-02-06 Thread Christian Bouessay
In web.xml, you could add: init-param param-namenocache/param-name param-valuetrue/param-value /init-param for Action Servlet configuration. -- C. Bouessay Jonathan Gibbons wrote: My guess is that there is proxy caching going on someplace. Setting the HttpServletResponse header

Tiles: specifying an insert attribute that is not required

2002-02-06 Thread Matt Raible
That worked beautifully - thank you. A new question - is it possible to specify something like the following in my layout JSPs: tiles:insert attribute=search required=false/ This would enable my definitions the option of defining content for this region, and I might be able to use a common

RE: Can anyone help me how to unsubscribe

2002-02-06 Thread jayanta . roy
Hey buddy, If it's that problem some to unsubscribe, just mark a ban to all messages sent to Struts Users Mailing List ! That simple... Till then, hang around and have fun... Roy. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06,

Re: Can anyone help me how to unsubscribe

2002-02-06 Thread STEVE WILKINSON
One note, you MUST make the request with the SAME email address to which you subscribed. If you don't you will not be unsubscribed. FYI when you remember the email address that you subscribed and make sure that you make the request from that return address it works like a champ. Obviously,

RE: speed of struts

2002-02-06 Thread Matt Raible
I think this is reasonable, what if you have editable list screens - 5 columns, 10 records at a time... It's amazing that customers will ask for ;) Matt --- Galbreath, Mark [EMAIL PROTECTED] wrote: 50 fields in a form??? Me thinks the bug is in the design. Cheers! Mark -Original

RE: bean passing

2002-02-06 Thread Matt Raible
I downloaded this example yesterday and the one thing I noticed it was missing was the ability to sort each column. Otherwise, nice work! Matt --- Jonathan Gibbons [EMAIL PROTECTED] wrote: Hi Stephen, Download my struts example, it includes paged searches implemented in stateless

Re: Tiles: specifying an insert attribute that is not required

2002-02-06 Thread Cedric Dumoulin
Doesn't the ignore property work for you ? tiles:insert attribute=search ignore=true/ Cedric Matt Raible wrote: That worked beautifully - thank you. A new question - is it possible to specify something like the following in my layout JSPs: tiles:insert attribute=search

Software Requirements Specification document templates

2002-02-06 Thread MARK NICHOLS
All - I am working in a new initiative for my client to develop an enterprise web application using Struts. As this project is piloting new (to the client) technologies they want a complete SRS document as an example for future development projects. Does anyone have or know about a freely

Re: speed of struts

2002-02-06 Thread Ted Husted
This comes up fairly often, and around 50 does seem to be a cut-off point for some reason. A number of things can affect the speed the form renders, including the browser and, as mentioned, the JVM. One interesting thing would be to try the same page under VelServlet.

Re: Software Requirements Specification document templates

2002-02-06 Thread Ted Husted
There's a rough outline here that some people have found useful. If you improve on it, and want to contribute something back, that would be great! http://husted.com/struts/resources/example-spec.html -- Ted Husted, Husted dot Com, Fairport NY USA. -- Java Web Development with Struts. -- Tel

RE: speed of struts

2002-02-06 Thread Fingerhut Michael (KASR 22)
-Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 2:50 PM To: Struts Users Mailing List Subject: Re: speed of struts This comes up fairly often, and around 50 does seem to be a cut-off point for some reason. A number of things can affect

Re: Software Requirements Specification document templates

2002-02-06 Thread MARK NICHOLS
Ted - Thank you! This should be very helpful. /\/\ark _ /\/\ark /\/ichols Ooo. They've got the Internet on computers now. - Homer Simpson [EMAIL PROTECTED] 02/06/02 07:53AM There's a rough outline here that some people have found useful. If you improve on

RE: Novell Bordermanager

2002-02-06 Thread McDowell, Mark
My group has run into this kind of problem. We found that bordermanager defaults to not caching .asp files, but most everything else is cached. In our case, we use lots of .jsp files, so we could have the sysadmin configure bordermanager to not cache .jsp files, and we were good. I'm guessing

RE: Novell Bordermanager

2002-02-06 Thread McDowell, Mark
A problem we've run into is that even with the methods used below, caching servers like bordermanager are not precisely *required* to obey. So, even when you tell it, *DO NOT CACHE*, it still may unless configured properly... :( Mark -Original Message- From: Christian Bouessay

RE: Software Requirements Specification document templates

2002-02-06 Thread Mikkel Bruun
Sounds like they are refereing the Rational Unified Process document... I dont thkn there's any official RUP templates thats freely available... if you really need an official template go get the RUP Tool...it contains both word and html templates for SRS... i would make up my own though or

Dynamic tiles (attn: Cedric)

2002-02-06 Thread Jim Crossley
I've just started using Tiles, and I really like it. I want to be able to overload my attributes in my struts actions prior to forwarding to the tiles definitions, but I'm having some trouble. I found this message in the archives:

PropertyMessageResourcesFactory Question

2002-02-06 Thread Todd G. Nist
Title: PropertyMessageResourcesFactory Question I have a few questions on the creation of a custom MessageResourcesFactory which I am hoping someone can help answer. We have a database which contains most of the translation string for our application, so I would like to create the

RE: Can anyone help me how to unsubscribe

2002-02-06 Thread Bill Page
actually it was McCoy. bill page [EMAIL PROTECTED] Digital Garden Software, Inc. 856 US Hwy 206 Bldg B Ste 15 Hillsborough, NJ 08844 908.904.0664 Good luck. Remember Scotty never did trust the transporters. Jim Berg Sr. Software

How to use Transactional Control Tokens?

2002-02-06 Thread Greg Hess
Hi, Could anyone provide an explination of how to use the transactional control tokens? Thank you, Greg -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Problem: multiple browsers and session state

2002-02-06 Thread Erich Meier
Hi! Are there any best practices known, how to deal with a user accessing a struts application with multiple browsers at the same time? Because cookies are shared between browser instances, these browsers run within the same session - this is also true when cookies are blocked and URL session

Re: Design question about ActionForm's validate method

2002-02-06 Thread Sean Willson
RE: Design question about ActionForm's validate methodFor reference I wanted to share how we are using the action framework in our web application. Every single call to every single view on our web site goes through Struts. There are several reasons for this, one we are using Tiles for navigation

RE: Implementing HTTPS in Struts

2002-02-06 Thread Robert Scaduto
Thanks, Max, In the mean time as a work around I will just mark the action called before any secure data is posted is also secure, ensuring that the data is sent encrypted. Thanks Again, Rob -Original Message- From: Max Cooper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05,

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Cedric Dumoulin
First, check that you use tilesForStruts1.0.jar, as you are using Struts1.0.1. Second, check if your tiles/struts1.0.1 installation works : * install tiles-doc.jar or struts-tiles.jar * replace WEB-INF/lib/struts.jar with struts.jar from 1.0.1 * replace tiles.jar with

Re: Problem: multiple browsers and session state

2002-02-06 Thread simon
This is application-independant, in that it's not just struts this affects One solution is to look for potential collisions and implement a lease/lock strategy on the resources that my collide (similar to std. file/resource locking), although with a lease on the lock due to the stateless nature

Struts/EJB (Yet another newbie question)

2002-02-06 Thread Roland Chan
Hello, I am evaluating the usage of struts w/ JBOSS and have a design question: Firstly, I am keeping all my EJB interaction in my Action classes. One thing I am unsure of is what I should do on my ActionForward. That is, should I be placing my EJB directly into the session, or should I be

Heavy weight objects in the Session

2002-02-06 Thread Greg Hess
Hi, I am new to web app development and I am currently writing a statistical reporting app. I have seen some of discussion regarding code optimizations/considerations when developing in regards to Vectors/Arraylist, Calendar/DateFormat. I am using beans to build statistic reports and they live

RE: Design question about ActionForm's validate method

2002-02-06 Thread Greg Hess
I would like to see some examples, I have found my apps to be a bit bloated since introducing struts and my Action classes are very small. Thanks -Original Message- From: Sean Willson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 9:06 AM To: Struts Users Mailing List

RE: speed of struts

2002-02-06 Thread cody.burleson
Good point. Under no circumstances whatsoever should the user be expected to do data entry for 50 items on a single web page unless they items all happen to be simple checkboxes. This is a known principal in user-experience architecture and Web site usability. If you need some lab data or

RE: [Off Topic] get/set method generation

2002-02-06 Thread Mac Ferguson
Eclipse rocks! but anyone who's thinking of using it should grab the stable nightly build as it's much slicker than the V1 release. I've been using it heavily at work for a month and it's rock solid. -Original Message- From: Dirk Storck [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February

RE: Tiles Definitions - how to I 18n them?

2002-02-06 Thread Andre Beskrowni
another alternative is just to nest the resource retreival within the put tag. for instance: tiles:insert definition=index flush=true tiles:put name=title.key type=string bean:message key=my.title.resource.key/ /tiles:put ... /tiles:insert this keeps you from having to keep your

Error with Recent Nightly builds

2002-02-06 Thread Ashish Mahajan
Hi I am getting following error message.I am using struts recent nightly build with tomcat 3.3. Please let me know if anyone has any idea as how to fix this. OR if it is a bug? log4j:ERROR No appenders could be found for category (org.apache.commons.digeste r.Digester). log4j:ERROR Please

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Jim Crossley
I don't mean to be a bondhead, but all I did was copy the tiles-doc.jar to Tomcat's webapps directory. Wouldn't it be bundled with the correct struts version? The page, /test/testStrutsAction.jsp, *does* run correctly, but /test/testAction.do does not. It's the latter that seems to be what I

Re: speed of struts

2002-02-06 Thread Sid Stuart
Hi Lee, Did this bug have a tracking number? I would like to find out when it gets fixed. Sid Stuart [EMAIL PROTECTED] wrote: I had a form with lots of custom tags. When run under the Sun 1.3 JDK it was slow as molasses. Sun 1.2 JDK or IBM 1.3 was instantaneous. A few mailing list posts

RE: speed of struts

2002-02-06 Thread Martin Farrell
hi i think it depends on the type of application - if it is similar information then you could have a 10*5 array (some form of corporate time sheet maybe) - to help the user submit the information faster. rather than having 5 * 10 forms with the inevitable network delays that would give the user

RE: Problem: multiple browsers and session state

2002-02-06 Thread Greg Hess
It seems that session beans should have synchronized methods to avoid some of these problems? -Original Message- From: simon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 10:02 AM To: Struts Users Mailing List Subject: Re: Problem: multiple browsers and session state

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Cedric Dumoulin
tiles-doc.jar is shipped with Struts1.1 previous than 15 jan, and is ready to run. So you can try the mentioned url test directly on it, and it should run. If not, let me know. However, you have mentioned that you try to use Tiles with Struts1.0.1. If true, you need to use

feed-forward data

2002-02-06 Thread Folbrecht, Paul
Sorry for the basic question, but I need an answer to this in a hurry and have not had luck searching the archives. All I need to know is: what is the best, simplest mechanism to handle standard feed-forward data in struts? I.e., you have a multi-part form, and the data from the first must be

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Jim Crossley
Cedric Dumoulin [EMAIL PROTECTED] writes: tiles-doc.jar is shipped with Struts1.1 previous than 15 jan, and is ready to run. So you can try the mentioned url test directly on it, and it should run. If not, let me know. This runs: http://localhost:8080/tiles-doc/test/testStrutsAction.jsp

urgent!!!! I have application to go... Dynamic Property.

2002-02-06 Thread Arik Levin ( Tikal )
Hi everybody. I'm new at struts, but I have tried it and It's just what our company wants to our project, and hey... you did a great job. BUT, I have to use some dynamic property because a lot of forms at our app. is dynamic. Thus, I have found at the mailing list a

RE: MultipartRequestHandler Question

2002-02-06 Thread SCHACHTER,MICHAEL (HP-NewJersey,ex2)
Buenos Dias Sean, 1. In looking at the current DiskMultipartRequestHandler I can't tell whether or not the request that is handed and parsed by the MulitpartIterator is already uploaded and complete or is still maybe uploading. Since it is reading a stream I assume that the

RE: feed-forward data

2002-02-06 Thread Stephen Owens
Paul, Just make sure all the fields you want for all the forms are in a single ActionForm, then use hidden fields that refer to the properties of that action form. -Original Message- From: Folbrecht, Paul [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 11:13 AM To:

[ANNOUNCE] Chiki v0.25 released

2002-02-06 Thread Emaho, Ghoot
http://chiki.emaho.org http://chiki.emaho.org Version 0.25 released and ready for download. This release includes: - Ant build scripts - email validation bugs fixed - other minor translator bugs fixed - minor 'buglets' with recent activity and user persistence fixed - other minor updates

Re: Problem: multiple browsers and session state

2002-02-06 Thread Erich Meier
On Wed, Feb 06, 2002 at 03:02:15PM -, simon wrote: This is application-independant, in that it's not just struts this affects Correct. One solution is to look for potential collisions and implement a lease/lock strategy on the resources that my collide (similar to std. file/resource

nesting struts tags

2002-02-06 Thread rob
What is the appropriate way to nest tags in struts? I've seen this posted before but couldn't find a scriptlet free answer so I'm posting myself. I have a collection through which I'm iterating with the logic:iterate tag each item in the collection is meant to be used to create a link to view

asking for comments and validation about Struts UML diagrams

2002-02-06 Thread jean-michel . garnier
Hello, In order to help developers to start with Struts, I did 2 UML diagrams to describe the framework. I am a newbie with Java and Struts ... So before to give it to the Apache Software, I'd like that someone experimented validates it. Contents : - Class Diagram of the

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Jim Crossley
Ok, after looking at testStrutsAction.jsp, I realized that testAction.do is not doing exactly what I thought it was, and invoking it standalone was never going to work anyway. I'm now beginning to think that what I really need is a Controller, so I'm going to focus my efforts there for now. The

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Cedric Dumoulin
So your install seem to work perfectly. Sorry for the wrong response before, it is what happen when you do to much things in the same time. It is normal that the componentContext is not found if you access directly the action (with *.do). The context is set when the tile is inserted, or

Re: Tiles: specifying an insert attribute that is not required

2002-02-06 Thread Matt Raible
Yep, worked like a charm - just starting with Tiles, I'll make sure and help other folks out when I see similar problems to what I'm experiencing. Thanks, Matt --- Cedric Dumoulin [EMAIL PROTECTED] wrote: Doesn't the ignore property work for you ? tiles:insert attribute=search

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Cedric Dumoulin
Jim Crossley wrote: I'm now beginning to think that what I really need is a Controller, so I'm going to focus my efforts there for now. The docs mention that a Controller could be implemented as a Struts action. Does that require the Action to implement the Controller interface or is

ActionForm:reset() method

2002-02-06 Thread rob
Under what circumstances is the reset() method of an ActionForm called on the struts programmers behalf without them (the struts programmer) explicitly calling reset() in their own code? I can't quite figure out when it's being called for me and it's irritating the hell out of me :) Thanks rob

Form bean

2002-02-06 Thread Amir N. Nashat
I am using a form bean for a page called X. Page X has about 6 html elements of which 2 are hidden. Now when this page first renders do the values get initialized from the bean or from the values I explicitly obtain from some business objects I use on the page? The reason I ask is because a

AW: Form bean

2002-02-06 Thread Oliver Refle
Normally the fields are first initialized with the values of the form bean. Because of this you have to have for each used field in your form a getter method in the form bean. Otherwise you get this error message. The page calls the form bean to obtain the initial values from this form Oliver

bean:write ?

2002-02-06 Thread Matt Read
Could anyone tell me what the struts equivalent of this scriplet should be? % if (request.getAttribute(messages) != null) { out.println((String) request.getAttribute(messages)); } % Thanks, Matt. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: Implementing HTTPS in Struts

2002-02-06 Thread Ditlinger, Steve
Rob: Yes that is they way we have used it. People seem to like to see that little lock display on the browser frame when they are entering secret data, even though that does not specify how the data will actually be posted. We will be working on the FormTag to make the same changes we did for

dynamically creating and registering an action with controller

2002-02-06 Thread Scott A. Roehrig
I have a need to do the following... I have an xml configuration file that will contain actions that will be called by struts. I want to be able to parse the file and add the mappings to the controller during setup. I do not want the action mappings placed in the struts-config.xml file. In

RE: Tiles Vs Templates

2002-02-06 Thread nicolas bonvin
Hi everyone, I do not want to start a flame war out here but after trying Templates and Tiles, I recently successfuly used a custom Web Toolkit (wtk) on a couple of J2ee projects. It is available at http://ultrawork.sourceforge.net. The org.ultrawork.wtk.mc package provides a few classes and

ActionError in FormBeans -Redirect vs Forward

2002-02-06 Thread Mark Takacs
Hello, Im having what I hope is a misunderstand of the useage of struts. summary: Error pages are shown with the underlying servlet action URL instead of the JSP input URL I've constructed a simple 2-page test app with one servlet and one FormBeam. action path=/step1

Re: dynamically creating and registering an action with controller

2002-02-06 Thread Scott A. Roehrig
Alright, it is working. However, the put in the org.apache.struts.util.FastHashMap is deprecated. It indicates that the commons fasthashmap will be used? Is this change in the works? Thanks as always:) Scott - Original Message - From: Scott A. Roehrig [EMAIL PROTECTED] To: Struts

Problem compiling bean:define... in Forte v3

2002-02-06 Thread Bob Williams
I get an error when compiling a bean:define.. / tag using the default compiler (javac) in Forte v3. The problem is that the bean in not define/initialized in the code generated by the compiler. It works fine when the same page is compiled using Tomcat 4.0 (jasper?) Here is the JSP:

SAVE and GO

2002-02-06 Thread Kalpana RamiReddy
I have a question here. I have 2 buttons in my page. one is SAVEGO and the other is SAVE. when i click on SAVEGO , it saves the data and goes to another page. And SAVE remains in the same page. Now, I have a jsp page named disposition.jsp This page contains the above buttons and a

Multiple Forms on one JSP...

2002-02-06 Thread Rustad, Aaron
I seem to be running into a bit of a problem with one of my JSP pages that has two forms on it. Only one Form is being instantiated for it. I am sure you should be able to have multiple forms. Here is an example of my JSP: html:form action=/searchFood table width=224 border=0 **

[ANNOUNCE] Struts Console v1.4

2002-02-06 Thread James Holmes
Struts Console version 1.4 is now available. http://www.jamesholmes.com/struts/ http://www.jamesholmes.com/struts/struts-console-1.4.zip This release adds plugin support for the new Oracle JDeveloper 9i IDE. This release also adds significant new funcionality to the JSP Converter and renames

Re: Dynamic tiles (attn: Cedric)

2002-02-06 Thread Jim Crossley
Thanks, Cedric. I got this to work in the perform method of my Action class: ComponentDefinition definition = DefinitionsUtil.getDefinition(mapping.findForward(success).getPath(), request,

RE: Wizard Interface question

2002-02-06 Thread Jakkampudi, ChandraseKhar
Exactly. Which is why, for the original question about the wizard interface, I suggested putting into the session the logical form that spans pages and is broken up into multiple forms physically. As long proper cleanup is done at the last tab of the wizard interface, there should be no session

Hi folks, a newbie asking a question about database access from withinstruts applications

2002-02-06 Thread theron . kousek
Hi Folks: I am a newbie to struts so please excuse my ignorance.Can I ask advice or get comments from the struts gurus on this list? What is the best way to do a client/server application from within struts? Do you have your JDBC calls primarily on the server side in your Model (Business)

Re: Multiple Forms on one JSP...

2002-02-06 Thread STEVE WILKINSON
I use multiple forms successfully in my sample application that I did in the Wrox Pro JSP 2nd Edition book. There is one per entry in the HTML table. --- snip: from showshoppingcart.jsp html:form action=/checkout.do html:hidden property=action value=update / html:hidden property=%=

Used of Struts in a financial company in Spain.

2002-02-06 Thread EESTEVEZ
Hi everyone, My group is in the process of evaluation the use of Struts for the development of business web applications (intranet). I work in a Spanish multinational insurance company with offices along the world. One parameter of the evaluation process is the references in other financial

passing dynamic information from action to forward page

2002-02-06 Thread Jon Burford
I have a form object which has a method called save which the perform method on the action class calls at submit time. The form then does some things with its fields and returns success if all is good. This will then forward to the corresponding page for success, as defined in my

RE: Multiple Forms on one JSP...

2002-02-06 Thread Rustad, Aaron
Yes, I know that would work. However, I want BOTH on the same JSP, at the same time. I don't want one action that decides what to do. I want each form in the One JSP to submit to a different action. Thanks for your help though. -Original Message- From: STEVE WILKINSON [mailto:[EMAIL

How to go about??

2002-02-06 Thread Sanjay Choudhary
Hi Friends, I am very new to Struts. All I have done is worked out couple of examples from web to understand the Architecture. We are in a process of designing a Product and plan to use Struts Framework with EJB's. In my team 1. No one has any knowledge about Struts but they are very good with

RE: Struts/EJB (Yet another newbie question)

2002-02-06 Thread Roland Chan
Excellent, thanks Jon. I've taken your advice and implemented a session façade in a stateless session bean, using a value object factory returning value objects as beans to my view layer. Works like a champ. Cheers. -Original Message- From: Jon.Ridgway [mailto:[EMAIL PROTECTED]] Sent:

RE: Any way to pass parameters to the JDBC driver?

2002-02-06 Thread Drew Sudell
-Original Message- From: Antony Stace [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 2:56 AM To: [EMAIL PROTECTED] Subject: Any way to pass parameters to the JDBC driver? Hi Is there anyway I can pass the parameters -Dfile.encoding=SJIS

Re: How to go about??

2002-02-06 Thread STEVE WILKINSON
Sanjay, 1. Your team will have a learning curve, but that mostly has to do with the tag libraries and the struts-config.xml file. 2. Yes, but you will have to convert the tags to the struts tags. 3. Use it and read about it. see the following web sites: http://www.husted.com/struts Look

RE: Struts Validator Load Failure

2002-02-06 Thread Robert D. Morse
Ted, I finally have this working. Turns out that the Tomcat version that Borland packages with JBuilder 6 Enterprise is buggy. I downloaded the 4.0.1 version, and tried the 1.1a version that you pointed to along with Torque, and everything works just fine! Are there differences between 1.1a

  1   2   >