Re: Filter / Logging

2006-03-14 Thread atta-ur rehman
Hi, What's the url-pattern for you filter? If it's being called more than once for an action I'd guess that you have it set to intercept all the requests. Changing it to something specific, like *.do, might help. LoggingFilter *.do HTH. ATTA On 3/14/06, Hans-Peter Petek <[EMAIL PROTECTE

Re: [OT] Book recommendation requested: Object-Oriented Analysis and Design

2006-03-08 Thread atta-ur rehman
Thank you all for sharing your thoughts. ATTA On 3/8/06, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > > On 3/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I would also get the "Gang of Four" book if you don't have it -- the > original "Design Patterns" book with code examples in C++. >

[OT] Book recommendation requested: Object-Oriented Analysis and Design

2006-03-07 Thread atta-ur rehman
Folks, I was wondering if someone could please share some recommendations on a good beginner book on the topic of OO analysis and design. Thanks. ATTA

Re: Reloading resource properties

2006-02-02 Thread atta-ur rehman
Jim, What do you mean next time login? Logging in without reloading the app or restarting Tomcat? Did you if you had autoload set to on on your Tomcat app? For most of the servers (both servlet containers like Tomcat and app servers like Weblogic for example) I'd expect that you will have to rel

Re: What JDK version are you using?

2006-01-23 Thread atta-ur rehman
[X] JDK 1.5 (or JDK 5) No validator. HTH. ATTA On 1/23/06, Dave Newton <[EMAIL PROTECTED]> wrote: > > Simon Chappell wrote: > > 1.4.1 and Struts 1.1 > > > You're lucky. > > About 2/3 of our deployments are on 1.3. > > We use 1.3, 1.4, and new stuff will (hopefully) be 1.5. > > I'm using validat

Re: form submitted twice

2006-01-06 Thread atta-ur rehman
any anchors, on the page? any chance the image is within a submit tag/button? how/where your action is forwarding after processing? ATTA On 1/6/06, Faisal Shoukat <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I have a problem where for some unknown reason my form is submitted > twice. I have a

Re: Implementation of new row functionality of HTML table in Struts

2005-12-19 Thread atta-ur rehman
("value :" + value); > > > >count++; > > } > > } > > > > Customer[] customers = new Customer[count]; > > System.out.println("Customer[] size :"+customers.length); > > ListTextActionForm f = new ListTextActionForm(); > > > > f.setCustomer(customers); > > > > } else { > > System.out.println("Customer[] is null"); > > } > >} > > > > No error arise if no new row is added and code work fine. > > > > > > Any solution to this issue > > atta-ur rehman: Can i have ur msn/hotmail id for efficient conversation. > > > > Thanks > > > > > >

Re: Implementation of new row functionality of HTML table in Struts

2005-12-19 Thread atta-ur rehman
new row functionality of HTML table in > > Struts > > > > No, user can add has many row he needed before submit... I had just > added > > one row to handle this scenario... It should work for as many row user > has > > added... > > > >

Re: Implementation of new row functionality of HTML table in Struts

2005-12-19 Thread atta-ur rehman
I think, ArrayIndexOutOfBoundsException actually shows that changes to the DOM are being submitted. ATTA On 12/19/05, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > > On 12/18/05, Irfan Shaikh <[EMAIL PROTECTED]> wrote: > > No, user can add has many row he needed before submit... I had just > add

Re: Implementation of new row functionality of HTML table in Struts

2005-12-18 Thread atta-ur rehman
mer[] customers = new Customer[count]; f.set("customer", customers); On 12/18/05, Irfan Shaikh <[EMAIL PROTECTED]> wrote: > > No, user can add has many row he needed before submit... I had just added > one row to handle this scenario... It should work for as many row user

Re: Implementation of new row functionality of HTML table in Struts

2005-12-18 Thread atta-ur rehman
okay, so you're saying use can add only ONE row dynamically before submit? and that the newly added row's HTML code is: if that's the case, in your ActionForm's reset method, detect that user has added a new row, maybe thru request.getParameter("cus

Re: Implementation of new row functionality of HTML table in Struts

2005-12-18 Thread atta-ur rehman
> so > that i can get the new added row data to create a new Customer bean and > put > it back to Customer[] array (this is my collection) > > Here is the loop for rows genration on JSP page : > > > > > > > > >

Re: Implementation of new row functionality of HTML table in Struts

2005-12-16 Thread atta-ur rehman
Irfan, How are you storing data required for initial rows? As a collection of objects in some scope that uses to paint them on the page? When user submits the page how are you getting the updated values? Populating the objects in the same collection or constructing a new collection and adding a

Re: accessing request attributes

2005-12-06 Thread atta-ur rehman
Chris, I'm sure you'd know scriplet way of doing it, which I'm not going to recommend: <%=request.getAttribute("toDate") %>. Struts' bean:write should do it: Better still if you're using Servlet 2.4 compliant app server/servlet container you could use JSTL expressions: ${toDate} and it will sea

Re: Action.execute() only being invoked the first time a url is requested ??!!!

2005-11-17 Thread atta-ur rehman
Hi, Most probably your page is gettnig cached by the browser. try or <% response.setHeader("pragma", "no-cache"); response.setHeader("Cache-Control", "no-cache"); response.setHeader("Cache-Control", "no-store"); response.setDateHeader("Expires", 0); %> to keep your browser from caching t

Re: how to copy the properties of one Struts form-bean to another?

2005-10-27 Thread atta-ur rehman
Hi Starky, Yes, I'd think that having a common super class for a set of form classes that all have some common fields should be a good idea. Not only you get shared fields but also reset() and validate() can be reused in subclasses, for example. ATTA On 10/27/05, starki78 <[EMAIL PROTECTED]> wr

Re: MockStrutsTestCase problem

2005-10-27 Thread atta-ur rehman
Hi, what's the exception? does your form class has a method getPb()/setPb() and is it non-null for the current instance of the form? ATTA On 10/27/05, Kanuri, Chand <[EMAIL PROTECTED]> wrote: > > Hi, > i am testing my action class using MockStrutsTestCase. > the properties that are threre direc

Re: Struts Form Logic Error

2005-10-24 Thread atta-ur rehman
Asad, Is this your complete struts-config.xml? If so, you're missing collection in it. Please add your form in the and then add the "name" attribute in the action to refer to your form. and then in your action mapping: > > /> > also make sure sure in your JSP you're using html:text

Re: How to handle forward instructions within an action class?

2005-09-30 Thread atta-ur rehman
Jeff, Assuming the code snippet in a method that returns an ActionForward, like the execute() method itself, you can instantiate ActionForward and return it: else if(action.equals("sendMessage")) { String member = request.getParameter("member"); ActionForward forward = new ActionForward(sendMembe

Re: submit buttons - how to put them label from resource

2005-09-30 Thread atta-ur rehman
On 9/30/05, Borislav Sabev <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'd like to set a label of submit buttons getting it from property file. > But seems that this is not possible. > One other problem I see is that value attribute has two purposes: to set > the label, and on submit to provi

Re: reset form in session scope

2005-09-30 Thread atta-ur rehman
. > > > > > > > Reset <- > > ATTA On 9/30/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > To do it the way you have shown then I would have to have a reset > button/link next to the edit/delete link at the bottom of the p

Re: reset form in session scope

2005-09-30 Thread atta-ur rehman
he results > displayed below by clicking on reset. > > At the moment I have > > > > > > > > > > > > > in my jsp and in my form I have a blank reset method. But this does not > get called. > > > > -Original Message- > From: atta-ur rehman [m

Re: reset form in session scope

2005-09-30 Thread atta-ur rehman
button. > How would I blank the search criteria and get rid of the results > displayed below by clicking on reset. > > At the moment I have > > > > > > > > > > > > > in my jsp and in my form I have a blank reset method. But this does not >

Re: reset form in session scope

2005-09-30 Thread atta-ur rehman
in the actionClient action class, on reset button click: ActionForm form = (ActionForm) session.getAttribute("searchClientForm"); if (form != null) { form.reset(...); } only if I understood your question correctly and search form is not doing anything with mapping and/or request in it's reset() m

Re: Serializable

2005-09-30 Thread atta-ur rehman
from: http://java.sun.com/j2se/1.4.2/docs/api/java/io/Serializable.html "When traversing a graph, an object may be encountered that does not support the Serializable interface. In this case the NotSerializableException will be thrown and will identify the class of the non-serializable object." A

Re: How to remove the unwanted ???en_US string from ActionMessages

2005-09-27 Thread atta-ur rehman
Hi there, try this: if (username == null || username.trim().length() == 0){ ActionMessages messages = new ActionMessages(); ActionMessage message = new ActionMessage("credentials.empty"); > messages.add(ActioneMessages.GLOBAL_ERROR, message); > saveMessages(request,messages); } Basically, the

Re: Making cleaning after forwarding to page

2005-06-26 Thread atta-ur rehman
e web layer) to manage the data layer. > > Is that the cleanest way to do that? > > Larry > > > On 6/26/05, atta-ur rehman <[EMAIL PROTECTED]> wrote: > > Servlet filters would be way to go for this particular situation: > > > > http://www.hibernate.org/

Re: Making cleaning after forwarding to page

2005-06-26 Thread atta-ur rehman
Servlet filters would be way to go for this particular situation: http://www.hibernate.org/43.html HTH. ATTA On 6/25/05, Ashraf Fouad <[EMAIL PROTECTED]> wrote: > I'm openning a hibernate session for each request, so I want to close this > after rendering data in JSP, as usually the objects are

Re: access session object

2005-06-08 Thread atta-ur rehman
if you're running servlet container that supports 2.4 servlet specs and you web app is also configured to be of version 2.4, thru element in your xml: ${myobject} in your JSP should print it. in scriptlets: <%=session.getAttribute("myobject")%> should work. "session" is reference to current s

Re: Security in Struts

2005-05-25 Thread atta-ur rehman
Hello Tarek, I'd say front your application with a Servlet Filter that checks for the security of the current page against security runles defined in database/XML and probably cached for the current session to avoid hitting database for every request. ATTA On 5/25/05, tarek.nabil <[EMAIL PROTECT

Re: use action-form's properties in JSTL

2005-05-25 Thread atta-ur rehman
Hi, try formName.property formName is the name that you defined in your struts.xml for the form of current action. it should work. and the reason it works that Struts puts the form object under the 'name' key in either request and session scope depending upon the 'scope' attribute of your curre

Re: Autologin?

2005-05-24 Thread atta-ur rehman
I'll start with the first five :) http://www.google.com.pk/search?q=servlet+filter&sourceid=mozilla-search&start=0&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official ATTA On 5/24/05, Janek Ziniewicz <[EMAIL PROTECTED]> wrote: > Thank you Michael, that link really helped me

Re: [POLL] What do you use action forms for?

2005-05-12 Thread atta-ur rehman
#4 On 5/12/05, Marco Mistroni <[EMAIL PROTECTED]> wrote: > #4 .. > > > #1 - so I generate them from my POJOs using XDoclet. All the other > > frameworks I use (JSF, Spring, Tapestry and WebWork) allow me to use > my > > POJOs directly. > > > > Matt > > > > On May 11, 2005, at 4:02 PM, Michael Jo

Re: getResources(HttpServletRequest) in ActionForm?

2005-04-16 Thread atta-ur rehman
l. > > On 4/16/05, atta-ur rehman <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > Action class defines getResources(HttpServletRequest) method, thru > > which I can get access to MessageResources. > > > > I don't see an equivalant method in Actio

getResources(HttpServletRequest) in ActionForm?

2005-04-16 Thread atta-ur rehman
Hi all, Action class defines getResources(HttpServletRequest) method, thru which I can get access to MessageResources. I don't see an equivalant method in ActionForm. Is it possible to get access to resource files in ActionForm subclasses? If so, how would I do it? Thanks. ATTA ---

Re: Which MVC Layer ActionForm Belongs To?

2005-04-01 Thread atta-ur rehman
ss object. > > The Controller creates it from the request, and it bounces around > > between the Action and the JSP Tags (or other View Tools). But, it > > should *never* go past the Action into another layer. > > > > Aside from that key best practice -- the ActionForm should

Re: Which MVC Layer ActionForm Belongs To?

2005-04-01 Thread atta-ur rehman
Okay, Leon, Now I got to PRINT this and read before I speak! Many thanks for your time and thoughts. ATTA On Apr 1, 2005 5:24 AM, Leon Rosenberg <[EMAIL PROTECTED]> wrote: > On Fri, 2005-04-01 at 05:14 -0800, atta-ur rehman wrote: > > Leon, > > > > Thanks for yo

Re: Which MVC Layer ActionForm Belongs To?

2005-04-01 Thread atta-ur rehman
course, in the end, it doesn't really matter. The ActionForm is > > what the ActionForm is. The one thing it is not, is a business object. > > The Controller creates it from the request, and it bounces around > > between the Action and the JSP Tags (or other View Tools). But,

Which MVC Layer ActionForm Belongs To?

2005-03-31 Thread atta-ur rehman
Dea all, I'm sure I've seen this topic before! Just can't remember where and google won't help either! Can anybody please explain which MVC layer form belongs? TIA. ATTA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: Do I need ActionForm or DynaActionForm?

2004-12-27 Thread atta-ur rehman
No! there won't be any problem at all if you don't use any form at all! Just set your collection of records as request attribute and off it goes to JSP! ATTA On Mon, 27 Dec 2004 17:01:16 +0530, uma.k <[EMAIL PROTECTED]> wrote: > Hi, > I wanted to fetch some records from the database and show it

Confirmation messages in Spring

2004-12-06 Thread atta-ur rehman
Matt, Have you discovered any 'standard' way of putting up confirmation message in Spring or you still advocate using HttpSession a a vehicle as donein Equinox? Regards, ATTA - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Data in a MxN grid

2004-11-29 Thread atta-ur rehman
All, What's the 'standard' way in Struts to input data in a table whose number of rows and columns (yes, for both rows and columns) is decided dynamically on every request? Indexed properties don't seem to be working with variable number of columns. So far I've to deal with only elements but th

Re: [OT] User Preference System Design

2004-11-17 Thread atta-ur rehman
if JDK 1.4 is an option you might want to take a look at: java.util.prefs.* HTH. ATTA On Tue, 16 Nov 2004 19:09:55 -0800 (PST), Julian <[EMAIL PROTECTED]> wrote: > Hi, I am a Struts Newbie and would appreciate if > anyone could give me some pointers on a user > preferences/ configuration syste

Re: Need an alternative to bean:define

2004-11-02 Thread atta-ur rehman
Is JSTL an option? I find Struts Logic tag hard to read! If so, I think this should do: HTH. Of course this is from top of my head, i haven't tried it. ATTA On Tue, 02 Nov 2004 16:16:25 -0800, Janice <[EMAIL PROTECTED]> wrote: > My brain has stopped working. I need an alternative

Re: Location of log4j.xml

2004-10-26 Thread atta-ur rehman
Paul, Putting it in web-inf/classes should do the trick. ATTA On Tue, 26 Oct 2004 11:51:41 -0400, Paul Summers <[EMAIL PROTECTED]> wrote: > I want to use Log4j in my Struts application. Where do I place my > log4j.xml file so that the application loads my loggers? > > In the past I wrote a pl

[OT] Request for comments on DAO pattern implementation

2004-10-08 Thread atta-ur rehman
Dear all, I've contemplated two ways of implementing DAO pattern; and I'm unable to decide which is better :) Any comments on pros and cons of these two approaches will be greatly appericiated. Implementation 1: Have IDAO interface and let all the DAO objects implement this interface; with probab

[OT] Struts + Spring

2004-09-20 Thread atta-ur rehman
Folks, I've seen quite a few references to Struts and Spring integration while browsing this mail archive. I was wondering why would I ever want to use Spring with Struts application? I hope people who have experience with both of these framework would shed some light on this question. Regards,

Re: Idea for chain and DB transactions

2004-09-18 Thread atta-ur rehman
Craig, That sounds pretty exciting. Now, how could I, if at all, incorporate this Filter/Chian functionality in my existing Struts 1.1 app? ATTA On Sat, 18 Sep 2004 07:19:45 -0700, Craig McClanahan <[EMAIL PROTECTED]> wrote: > Commons Chain (on which Struts Chain is based) has a design pattern

Re: Accessing index properties in javascript validator

2004-07-23 Thread atta-ur rehman
heForm"]; > for(i = 0;i < total;i++) { > target = "property["+ i +"]"; > element = form.elements[target]; > alert(element.name +"="+ element.value); > } > > Mark > > > > > On 23 Jul 2004

Re: Accessing index properties in javascript validator

2004-07-22 Thread atta-ur rehman
hello, this is how i've done it: textbox = document.getElementById("block[0]"); if (textbox.value ) so basically you use document.getElementById("property[0]") to get the reference of html elment and then use .value or any other stuff on this element. hope this helps! ATTA On Thu, 22 J

Re: Sharing Fields Between 2 Forms

2004-07-22 Thread atta-ur rehman
hi, yes it's possible if both the form classes are inherited from the same base class that has the common field getter/setter defined in it. but why not have the same field in the both the forms? won't it be easier? ATTA On Thu, 22 Jul 2004 18:11:31 +0100, Ciaran Hanley <[EMAIL PROTECTED]> wrot

Re: Tag question

2004-07-20 Thread atta-ur rehman
must be doing something wrong. That's giving me the same value as > Erez's example. Strange, I would have expected it to give me > "/services". I wonder how I am causing it to give me "/usecase/page.jsp". > > > > atta

Re: Tag question

2004-07-20 Thread atta-ur rehman
Hi Erik, This one worked for me: <%= request.getServletPath() %> HTH, ATTA On Tue, 20 Jul 2004 16:20:30 -0400, Erik Weber <[EMAIL PROTECTED]> wrote: > How can I set a variable (I assume with c:set) that will hold the value > of request.getServletPath, so that I can use it in el ta

Re: # anchor

2004-07-09 Thread atta-ur rehman
okay some wrong key i pressed! so to continue: on body onload onload="location.hash='newBlock'"; > does the trick for me! ATTA - Original Message - From: "atta-ur rehman" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EM

Re: # anchor

2004-07-09 Thread atta-ur rehman
Hello Glenn, I've used a little javascript to the trick; though i'm sure there must be some better way of doing it: have an anchor in your jsp: - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 09, 2004 10:55 AM Subject: # anchor > Hi, > > This

Re: Form with n columns and m raws

2004-07-09 Thread atta-ur rehman
Hello Damien, have a new class called row: public class Row { private List items; public Row(int size, String defaultValue) { items = new ArrayList(size); for (int i = 0; i < size; i++) { items.add(defaultValue); } } public Row(int size) { this(size, ""); } public List getIte

Re: Form action relative path

2004-07-07 Thread atta-ur rehman
How about: ATTA - Original Message - From: "toto2004b2000" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 07, 2004 1:34 AM Subject: Form action relative path > Hello, > > My application is "toto" and with this struts tag > > the generated HTML code is > > > I n

Re: Submitting Indexed Properties and List Size/Resize

2004-07-06 Thread atta-ur rehman
Hello Dave, I think you're pretty close! I don't see why do you have to resize the list in the setter though? Here is what I've done and it works: public BlockEffort getBlock(int index) { while (blockEffortList.size() <= index) { blockEffortList.add(new BlockEffort()); } return (BlockEff

Re: Form tag problem

2004-07-05 Thread atta-ur rehman
Weber wrote: Thanks for helping. I assume you mean this part: controller / The above code works (hooray), but if I try to change the url pattern to anything more specific (such as /login, or /login*, or /login/*) I get the wrong action parameter value . . . atta-ur rehman wrote: Okay, now you ne

Re: Form tag problem

2004-07-05 Thread atta-ur rehman
#x27;t want to use extension mapping. I want to use path mapping. Is this where the problem is? atta-ur rehman wrote: Hello Erik, Is it possible for you to show your struts-config.xml file? ATTA On Jul 5, 2004, at 4:01 PM, Erik Weber wrote: Could someone please tell me what would cause t

Re: Form tag problem

2004-07-05 Thread atta-ur rehman
fixes including "/login" and "/login/*" and "/". None of them result in the correct action parameter in the form. I don't want to use extension mapping. I want to use path mapping. Is this where the problem is? atta-ur rehman wrote: Hello Erik, Is it possibl

Re: Form tag problem

2004-07-05 Thread atta-ur rehman
Hello Erik, Is it possible for you to show your struts-config.xml file? ATTA On Jul 5, 2004, at 4:01 PM, Erik Weber wrote: Could someone please tell me what would cause the html:form tag to ignore the value I specify to the action parameter, and instead, rewrite the action parameter value to be e

Re: [OT] Netscape 7.1 WOW!

2004-06-30 Thread atta-ur rehman
I think Mozilla Firefox 0.9.1 would make you WOW! (all capitals!) http://www.mozilla.org/products/firefox/ ATTA - Original Message - From: "Michael McGrady" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, June 30, 2004 9:51 AM Subject: [OT] Netsc

Re: Problem with displaying a subset of error messages using

2004-06-24 Thread atta-ur rehman
to find a value for "key" in object of > class "java.lang.String" using operator "." (null) > at org.apache.taglibs.standard.tag.el.core.IfTag.condition(IfTag.java:102) > > Any ideas? > > -Asif > > - Original Message - > From: "atta-ur

Re: Problem with displaying a subset of error messages using

2004-06-24 Thread atta-ur rehman
Hello Asif, Now I havn't checked what I'm going to write here but am pretty sure it should work. First of all while adding your ActionError to ActionErrors use 'company' as the key for the company errors and 'factory' for factory related error messages. like: ActionErrors errors = new ActionErr

Re: [SOLVED] Re: Struts alternative to using request.getParameterValues in an actionform?

2004-06-17 Thread atta-ur rehman
t; > } > > > public void setSite(int index, SitesDTO site) { > > this.sitesList.add(index,site); > > } > > > where "site" in the logic:iterate has a matching "site" SiteDTO object in > the actionform. > > -Asif > > > >

Re: Struts alternative to using request.getParameterValues in an actionform?

2004-06-15 Thread atta-ur rehman
okay, the other link was http://jakarta.apache.org/struts/userGuide/building_view.html#indexed hope this helps. ATTA - Original Message - From: "atta-ur rehman" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>; "Asif Rahm

Re: Struts alternative to using request.getParameterValues in an actionform?

2004-06-15 Thread atta-ur rehman
Hellow Asif, "Indexed Properties" is exactly what you need here. For more info, please search thru the mail archive at: http://www.mail-archive.com/[EMAIL PROTECTED]/ or at: - Original Message - From: "Asif Rahman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 15, 20

Re: file upload problem(illegal argument)

2004-06-06 Thread atta-ur rehman
Hello there, Does your tag has attribute enctype="multipart/form-data" set? HTH, ATTA - Original Message - From: "swarna" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, June 06, 2004 2:23 PM Subject: file upload problem(illegal argument) > Hi, > I am trying to do

Re: Can I use multibox with text fields?

2004-06-02 Thread atta-ur rehman
Hello Miguel, You might want to search the archive for "indexed properties"; I think that's what you're looking for. HTH, ATTA - Original Message - From: "Miguel Arroz" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, June 02, 2004 4:04 PM Subjec

Re: use of session object in Action Form?

2004-05-17 Thread atta-ur rehman
Hi, As far as I know, both the reset() and validate() method are passed the request object. You could get the session from this request object. HTH, ATTA - Original Message - From: "Shyamal Shah" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, May

Re: background process

2004-05-03 Thread atta-ur rehman
Hello Robert, As far as I know Struts doen't provide anything like this. And actually it should not! You'd use Thread class to implement such a task that needs to return immediately while running in the background. Hope this helps. ATTA - Original Message - From: "Wei, Robert (MAN-Cor