RE: MS SQL JDBC Drivers?

2001-08-20 Thread Kevin McLain
Inet Software makes some really good JDBC drivers. I have used Inet Opta 2000 before and I was very impressed with its performance and specification conformance. www.inetsoftware.de -Original Message- From: Mikkel Bruun [mailto:[EMAIL PROTECTED]] Sent: Friday, August 17, 2001 3:05 AM To:

RE: Scalability

2001-08-09 Thread Kevin McLain
The only thing I would add to your argument is the fact that Struts relies fairly heavily on Reflection to set attributes on beans. Since Reflection incurs a much higher overhead than a straight method call (although I have heard that JDK 1.4 improves this performance considerably) - I did a rough

RE: unsubscribe !!!!!!!!!!!!!!!!!!!!!!

2001-08-07 Thread Kevin McLain
unsubscribe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Siping Liu Sent: Tuesday, August 07, 2001 10:05 AM To: [EMAIL PROTECTED] Subject: unsubscribe !! please unsubscribe me

RE: save dynamic jsp content

2001-08-01 Thread Kevin McLain
This will get you an input stream containing the content for the resource. try { Url url = new Url(""); InputStream is = url.openStream(); // use input stream to get content to pass through SMTP session } catch (MalformedURLException ignored) { } catch (IOException igno

Reflection vs. Direct Method Call

2001-07-26 Thread Kevin McLain
Hello All, Just a general performance question Does anyone know the performance difference between a direct method call and introspection like Struts uses? I would be interested in hearing the differences for different Java implementations (I have heard that JDK 1.4 will be making huge impro

RE: newbie question

2001-07-25 Thread Kevin McLain
What steps did you take to get to that point? What web container are you using? -Original Message-From: Jonathan Yang [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 25, 2001 8:35 PMTo: strutsSubject: newbie question Hi,all    Why can't correctly run the "str

RE: Missing type on declaration - any poniters 1 error left

2001-07-25 Thread Kevin McLain
You need to close the brace on your class declaration I believe. Like this: > > public class ActionForward { > > public perform(ActionMapping mapping, > > ActionForm form, > > HttpServletRequest request, > >

Concurrency with ActionForms

2001-07-18 Thread Kevin McLain
Does anybody know how Struts handles concurrency when it uses Reflection to update ActionForm attributes? I am assuming that it doesn't but this can be problematic if, in the case of a web application, you have two browser windows - for the same session (this can de done in IE but opening a new br