Re: [INVITATION] Velocity-Struts integration

2001-04-16 Thread Geir Magnusson Jr.
Incze Lajos wrote: > > I'm really happy with this, me myself was on this move. My motivation > was simple. In my application I have to manufacture form-based files, > so needed a general purpose template engine. So, I started to stare > tea and velocity as template engines capable rendering not o

Re: [INVITATION] Velocity-Struts integration

2001-04-16 Thread Incze Lajos
I'm really happy with this, me myself was on this move. My motivation was simple. In my application I have to manufacture form-based files, so needed a general purpose template engine. So, I started to stare tea and velocity as template engines capable rendering not only web pages but fill-in file

Problem using link tag

2001-04-16 Thread Vimal Kansal
Can someboddy tell me, how do I specify the link tag so as to achieve the following : __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/

Re: Oracle Servlet Engine

2001-04-16 Thread Incze Lajos
On Mon, Apr 16, 2001 at 07:14:15PM +0200, Michael Schommer wrote: > Hi, > > we work with Oracle (8.1.7) in our company. Now, I want to know if Struts > works with the Oracle ApplicationServer. > If anyone has any know-how with the Oracle Servlet Engine and Struts or the > Oracle 8i ApplicationSer

RE: FIELD POPULTION ON 2ND JSP

2001-04-16 Thread dhay
I just did session.setAttribute("LogForm", logForm); in my first Action, and it worked fine. Can you post some more of your config/code? Dave [EMAIL PROTECTED] on 04/16/2001 02:15:01 PM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: David Hay/Lex/Le

RE: How to use the html:img tag?

2001-04-16 Thread Suriyanarayanan, Senthil Kumar
If I use inside tag, I get an exception. Looks like I need to use with regular image tag as Exception: <[WebAppServletContext(8358178,WebApp) ] exception raised on '/WebApp/recentactivity.jsp' javax.servlet.ServletException: runtime failure in custom tag 'link' at jsp_ser

RE: getting values from bean: newbie

2001-04-16 Thread Natra, Uday
Hey Nishit, Its ok. Can U send me Ur Jsp file?? Thanks, Uday. -Original Message- From: Nishit Trivedi [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 3:33 PM To: '[EMAIL PROTECTED]' Subject: RE: getting values from bean: newbie i tried that too...i got this error.. javax.servle

RE: getting values from bean: newbie

2001-04-16 Thread Nishit Trivedi
i tried that too...i got this error.. javax.servlet.ServletException: bean abf not found within scope sorry to bother you.. Nishit -Original Message- From: Natra, Uday [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 4:26 PM To: '[EMAIL PROTECTED]' Subject: RE: getting values f

RE: getting values from bean: newbie

2001-04-16 Thread Natra, Uday
Why don't U try instead of Thanks, Uday. -Original Message- From: Nishit Trivedi [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 3:27 PM To: '[EMAIL PROTECTED]' Subject: RE: getting values from bean: newbie sorry...I tried to use but now it gives me NullPointer exception

RE: getting values from bean: newbie

2001-04-16 Thread Nishit Trivedi
sorry...I tried to use but now it gives me NullPointer exception... here is how i use tag... - - and down the line i try to print this on screen: - - I did not chan

RE: FIELD POPULTION ON 2ND JSP

2001-04-16 Thread TIqbal
I tried this but still does not work. request.getSession().setAttribute("MainForm",mm); > -Original Message- > From: Natra, Uday [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 16, 2001 12:45 PM > To: '[EMAIL PROTECTED]' > Subject: RE: FIELD POPULTION ON 2ND JSP > > Also U need to

RE: getting values from bean: newbie

2001-04-16 Thread Natra, Uday
I think U should use the tags to access the formBean instead of UseBean Tag. Uday. -Original Message- From: Nishit Trivedi [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 2:32 PM To: [EMAIL PROTECTED] Subject: getting values from bean: newbie hi.. I have a form through which

getting values from bean: newbie

2001-04-16 Thread Nishit Trivedi
hi.. I have a form through which i insert some data into DB... I store all these form properties in a form bean... When the form is submitted, DB insert is fine But when i try to dislay the form properties on screen, it gives me nothing... I tried to follow struts example as far as the config fi

Re: Server Reloading classes

2001-04-16 Thread dhay
Craig, Are you saying that 3.x versions of Tomcat reload okay if place files in WEB-INF/classes dir? Placed mine in WEB-INF/classes/beans and couldn't get mine to!! As I posted, it was only in 4 beta1 that it worked. Dave "Craig R. McClanahan" <[EMAIL PROTECTED]> on 04/13/2001 11:18:37

RE: Pre populating a Form Bean

2001-04-16 Thread dhay
Hi. Had similar problems earlier. Check that the scope in your config file for jsp2 is indeed request. If it is session you will need to add the form to the session, not request object. Dave "Tewathia, Atul" <[EMAIL PROTECTED]> on 04/15/2001 03:56:52 AM Please respond to [EMAIL PROTECT

Re: Oracle Servlet Engine

2001-04-16 Thread Rob Leland
No, And it will not work with 9i either. Both use JServ which is a JSP 1.0, Servlet 2.0 container. However, I know 9i uses Apache which could then be modified to use tomcat. Oracle 8i may also use Apache but I am not sure. -Rob Michael Schommer wrote: > > Hi, > > we work with Oracle

Oracle Servlet Engine

2001-04-16 Thread Michael Schommer
Hi, we work with Oracle (8.1.7) in our company. Now, I want to know if Struts works with the Oracle ApplicationServer. If anyone has any know-how with the Oracle Servlet Engine and Struts or the Oracle 8i ApplicationServer I will be very happy for every information send directly to my eMail-addre

RE: Exception creating bean: java.lang.ClassNotFoundException

2001-04-16 Thread Anthony Martin
I've had this happen too. The classes compile, but fail to run. It always turns out to be some sort of CLASSPATH problem. Check *.properties and make sure any place you define classpath has the required classes there. If you use WinNT/2K, and Tomcat runs as a service, make sure you also check

Exception creating bean: java.lang.ClassNotFoundException

2001-04-16 Thread Fei Xie
Can anyone help me with this? I have the classes in the right folders. However, the ActionForm is not visible to the jsp page. javax.servlet.ServletException: Exception creating bean of class messageboard.Message: java.lang.ClassNotFoundException: messageboard/Message at org.apache.j

RE: FIELD POPULTION ON 2ND JSP

2001-04-16 Thread Natra, Uday
Also U need to set the MainForm object in the request/session scope as per Ur requirements. ex. request.getSession().setAttribute("MainForm",mm)/request.setAttribute("MainF orm",mm) Thanks, Uday. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16

Data Connection Pool

2001-04-16 Thread Anthony Martin
I have been very pleased with the Struts framework. I'm sure this issue has been dealt with, I'm just not sure how to approach it. When I leave my database pooled connections open for long periods of time, there is a possibility that the server will reset. When this happens, my database driver

RE: FIELD POPULTION ON 2ND JSP

2001-04-16 Thread TIqbal
Here is my code that I have in LoginAction class but this does not work. MainForm mm = new MainForm(); mm.setSinNum(sinNum); > -Original Message- > From: Natra, Uday [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 16, 2001 12:05 PM > To: '[EMAIL PROTECTED]' >

RE: FIELD POPULTION ON 2ND JSP

2001-04-16 Thread Natra, Uday
Instantiate the MainForm.java class in the Action class that handles the LoginForm.java and set the SSN value in the MainForm.java from the LoginForm.java Thanks, Uday. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 11:06 AM To: [EMAIL

FIELD POPULTION ON 2ND JSP

2001-04-16 Thread TIqbal
Can someone help how I can solve this problem I have 2 JSP and 2 forms beans as below: LoginForm.java MainForm.java Login.jsp Main.jsp I have a field called SIN # on Login.jsp and Main.jsp When user Enter SIN # on Login.jsp upon success it goes to Main.jsp. I have also SIN# on Main.jsp. I want

Deploying struts-example WAR using NSAPI plugin with Weblogic6.0

2001-04-16 Thread Suriyanarayanan, Senthil Kumar
Hello, I'm using Weblogic6.0 with IPlanet WS with NSAPI plugin. When I deploy the struts-example.war on my Weblogic6.0 server and try to access using http://localhost/weblogic/struts-example, all those links inside the jsp refer as http://localhost/struts-example/... and hence they are bro

Re[2]: maxFileSize and file upload

2001-04-16 Thread SPietsch
>>Because the file is then temporarily written to disk, which >>is a possible security risk. Michael> Could you elaborate? Sure! If don't mind my English. one possible attack to a server is to consume all the temp space on the server. Maybe the best way is to give the relevant part of

encoded URLs

2001-04-16 Thread Jesse Vitrone
If I do a mapping.getForward("x"), is the URL that goes to encoded with the session and stuff? Thanks, Jesse

RE: maxFileSize and file upload

2001-04-16 Thread Schachter, Michael
Soeren, >As far as I understood the maxFileSize init parameter >for the action servlet should limit the maximum file >size of the file uploaded to the server. >If I set this to 200K I can still upload files with more the 2MB. :( I'll check this out today, look for a commit later tonight if I c

RE: Equivalent of jsp:setProperty

2001-04-16 Thread Suriyanarayanan, Senthil Kumar
Just wondering was there any struts equivalent similar to bean:write. The reason being, use struts where ever possible instead of coding using both struts and jsp tags at the same time. Thanks Senthil Kumar. -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: F

where other struts examples ??

2001-04-16 Thread majid kamal
Hi, did someone extended the struts example, or created other web applications using struts, I just start learning struts. Thanks -- majid kamal [EMAIL PROTECTED] - email (781) 685-1450 x2371 - voicemail/fax __ FREE voicemail, email, and fax...a