Fw: Regarding invocation of bean methods from Action class

2001-06-30 Thread suhas
I typed it wrongly in previous mail.   Rather  I want to call the EJB session beans methods  from within my Action class to retrieve the data  .  I read that EJB Session beans handles one request at a time . But how will I do this if I've  to call session bean methods from the web tier. ?

Fast Hashmap doubt .

2001-06-30 Thread suhas
I was going through put ( ) and putAll ( ) methods in Fast HashMap code in the struts . But did not get why we need to clone the HashMap and add a entry to that cloned map then move that cloned map to original HashMap . In multi- threaded enviornment anyway we synchronized the code that acce

Regarding invocation of bean methods from Action class

2001-06-30 Thread suhas
Hi ,     I've a basic question in design . I want to call the EJB Session bean to retrieve the data from my Action class ( which extends from Struts Action ) Do I directly lookup for that session bean and call methods on that bean . But I  read in the mail listing that a business delegat

Found possible Bug in struts-form.tld (options tag)

2001-06-30 Thread Scott Smith
The options tag definition should be changed FROM: options org.apache.struts.taglib.html.OptionsTag empty ... TO: options org.apache.struts.taglib.html.Options1Tag empty ... Notice the implementation class is

Forwarding Forms (or More Scope Problems)

2001-06-30 Thread DWH
I have a working Search Form that returns a vector of User Forms. The page iterates through the vector displaying some info from the form, and provides each iteration with a submit(modify) button.   I would like to take the UserForm of that iteration, and forward it to the action class.  Cu

[Fwd: VOTE: JSR052 (JSP Standard Tag Library) RI]

2001-06-30 Thread Ted Husted
Here's a bit of good news -- the early release of JSR052 is to be hosted at Jakarta Taglibs! Of course, they have to finish voting for it to be official, but the +1's are flying! Pierre Delisle wrote: All, As many of you know, I am a committer on the jakarta-taglibs project and also happen

Error - MultipartIterator: no multipart request data sent

2001-06-30 Thread nuray . baskal
Hi everbody, I am writing a program that needs to process form data. I have an uploadForm (that is an insatance of org.apache.struts.action.ActionForm). I have no problem with uploading a file via this form. After uploading the file, I am executing a couple of procedures inside the uploadActio

RE: View data

2001-06-30 Thread Satyen . Chikane
Hello Debashish, (If I have got your question correctly) The mapping looks something like this in the config file... now your data will be send in the request object to the OrderList.jsp which will display it, you dont require any other action again... -Satyen -Orig

RE: More on running Tomcat+Struts w/o internet connection

2001-06-30 Thread Satyen . Chikane
I'm using Visualage with tomcat patch and the following is working fine I have also added the folder in the classpath... try some permutations and u'll get it done... http://localhost:8080/examples/myproj/struts-config_1_0.dtd";> Regards, Satyen -Original Message- From: Thomas Burns

RE: Cannot get request dispatcher for path login.jsp

2001-06-30 Thread Satyen . Chikane
Check the path given for the jsp in the input... -Original Message- From: Aaron Crandall [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 5:26 AM To: [EMAIL PROTECTED] Subject: Cannot get request dispatcher for path login.jsp Hello all, I began to get the above error after addi

Constructing a calendar using struts / taglibs

2001-06-30 Thread Matt Raible
Has anyone constructed a "month view" of a calendar using struts, date/time taglibs, or scriplets? If anyone has implemented anything like this with JSPs, and is willing to share, please let me know! Thanks, Matt __ Do You Yahoo!? Get personalize

RE: Basic Q

2001-06-30 Thread Satyen . Chikane
Hi, U r right!!! Moving to struts will be really moving to true MVC... I'm right now making some servlets struts compatible, just have to move the business logic to some java class from the servlet, add appropriate action class and update the config file... it works and is worth doing that -

RE: unit testing struts classes

2001-06-30 Thread Niall Pemberton
Cactus: http://jakarta.apache.org/commons/cactus/ httpunit: http://sourceforge.net/projects/httpunit http://www.mail-archive.com/struts-user@jakarta.apache.org/msg05908.html http://www.mail-archive.com/struts-dev@jakarta.apache.org/msg01275.html http://www.mail-archive.com/struts-user

unit testing struts classes

2001-06-30 Thread Ian Kallen <[EMAIL PROTECTED]>
Any techniques for unit testing Action and ActionForm subclasses folks could share? I've been wondering about creating fake container environments and servlet contexts to support this but it seems like a big PITA, so if someone's been down that road, please post what you've done :) cheers, -Ian