Re: File Upload : Progress Bar

2002-11-12 Thread John Jones
You might just want to use a small applet(I believe the graphics code is already out there somewhere) and set up a servlet or jsp to check the file size against the Content-Length of the multipart POST (this may be a little off) and return the percentage to the applet so it can move the progress ba

Re: WebLogic/Struts/JSP performance woes...

2002-11-02 Thread John Jones
Not sure what you're code looks like, but you could try actually putting an out.println( //your HTML table row here) in your loop and see if you stop getting that blank page while your waiting for all the data to process. I'd go with the paging approach if your business users would allow it. -

Re: Struts <--> JSF roadmap

2002-09-07 Thread John Jones
Where can I get a copy of these slides? - Original Message - From: "Martin Cooper" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 6:24 PM Subject: RE: Struts <--> JSF roadmap > > > > -Original Message- > > From: Craig R

Re: Passing JavaScript variable to a Java Scriptlet on a JSP page

2002-04-17 Thread John Jones
You're trying to merge client side code and server side code. Your server side code has no idea what the country variable is. Here are only two ways to do this: 1. Build javascript arrays of the information dynamically on the server side and build the proper associations between the data using ja

Re: New Site

2002-04-10 Thread John Jones
Geez. That is one slow site. - Original Message - From: "John Jones" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, April 10, 2002 9:06 PM Subject: Re: New Site > Do you know which content management solution

Re: New Site

2002-04-10 Thread John Jones
Do you know which content management solution they switched to that works with Struts? - Original Message - From: "Galbreath, Mark" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, April 10, 2002 10:28 AM Subject: RE: New Site > We, in fact, are

Application scope beans

2002-03-23 Thread John Jones
Does anyone out there know how to access objects in application scope from a servlet? We want to have a startup servlet that puts a bunch of beans in application scope on application server startup.