RE: Where do YOU put JDBC calls?

2001-07-18 Thread Ritter, Steve
Ryan, you should really read the J2EE blueprints on DAO. It covers everything you need to know. Search aroun javasoft.com for the blueprints (they are documents, not software). --Steve -Original Message- From: Ryan Cornia [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001

RE: Cannot remove attribute from request

2001-06-20 Thread Ritter, Steve
- From: Ritter, Steve [mailto:[EMAIL PROTECTED]] Sent: 05 June 2001 20:03 To: '[EMAIL PROTECTED]' Subject: Need help with Can't remove attributes from request scope probl em. Hi everyone, We ran into a problem running b2/b3 on Servletmill that others seem to have hit with WTE. It occurs when

RE: Who Uses Struts (Struts Acceptance in Industry)

2001-06-20 Thread Ritter, Steve
Hi Stephen, I've used Struts on several projects now. Only one of them was an enterprise class application used for trading securities. The other projects were intranet applications but nonetheless they were transactional and secure (the only thing that made them not conform to an

RE: [EJB] java report article says bye-bye struts

2001-06-19 Thread Ritter, Steve
on this matter is seriously appreciated! Thanks BG... -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 11:14 AM To: '[EMAIL PROTECTED]' Subject: RE: java report article says bye-bye struts On Mon, 18 Jun 2001, Ritter

RE: [EJB] java report article says bye-bye struts

2001-06-19 Thread Ritter, Steve
-Original Message- From: Ritter, Steve [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 19, 2001 5:13 PM To: '[EMAIL PROTECTED]' Subject: RE: [EJB] java report article says bye-bye struts Hi Bob, you make some great comments in this posting. The scenario you describe

RE: java report article says bye-bye struts

2001-06-18 Thread Ritter, Steve
Hi Hal, yeah I read the same article and couldn't help but laugh. Prashant really made some outlandish comments and hopefully those comments will diminish any negative impact his article might have on Struts (or, the adoption of Struts I should say). Craig, if you read this thread it might

RE: java report article says bye-bye struts

2001-06-18 Thread Ritter, Steve
[mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 9:27 AM To: '[EMAIL PROTECTED]' Subject: Re: java report article says bye-bye struts Ritter, Steve wrote: Craig, if you read this thread it might not be a bad idea to send a quick email to the editor's of Java Report and let them know

RE: java report article says bye-bye struts

2001-06-18 Thread Ritter, Steve
Oh yeah, I forgot... thanks for 1.0!! :-) --Steve -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 11:14 AM To: '[EMAIL PROTECTED]' Subject: RE: java report article says bye-bye struts On Mon, 18 Jun 2001, Ritter, Steve

RE: java report article says bye-bye struts

2001-06-18 Thread Ritter, Steve
appreciated! Thanks BG... -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 11:14 AM To: '[EMAIL PROTECTED]' Subject: RE: java report article says bye-bye struts On Mon, 18 Jun 2001, Ritter, Steve wrote: Hi Hal, yeah I read

RE: can't remove attributes from servlet

2001-06-13 Thread Ritter, Steve
pageContext.getRequest().removeAttribute(Constants.BEAN_KEY); pageContext.getRequest().removeAttribute(Constants.FORM_KEY); Jon. -Original Message- From: Ritter, Steve [mailto:[EMAIL PROTECTED]] Sent: 05 June 2001 20:03 To: '[EMAIL PROTECTED]' Subject: Need help with Can't remove attributes from

RE: WebSphere, Jasper and Struts 1.0b3

2001-06-13 Thread Ritter, Steve
Hi John, This problem has been discussed many times in this mailgroup, you aren't alone! I guess there are quite a few servlet engines that are using an old version of Jasper. You might want to check the mailgroup archives, here is a link to a thread that discusses alternatives -- and a

RE: Struts Questions

2001-06-12 Thread Ritter, Steve
Hi Matt, I am now working on my second project where we are using Struts in conjunction with EJBs. Suffice it to say that Struts is awesome. Your performance question is a bit loaded since there are many different pieces but from what I can tell, there do not seem to be any issues with

RE: Struts Questions

2001-06-12 Thread Ritter, Steve
Actually George, I think you and Chris both have the right idea. You are correct in stating that using a SessionBean interface to you appserver is best -- the only issue that remains is what datatypes will the SessionBean return? IMHO, you should avoid the default pass-by-reference model

RE: Putting it all together, help???

2001-06-12 Thread Ritter, Steve
Hi Mike, I hope the following isn't too basic for you! With the Struts implementation of the MVC pattern (really Model-2) the View (JSP) gets access to all the data it needs by accessing objects stored in the session context. So, if the Action class wants to make data available to the JSP,

RE: Where can I get the latest version of Jasper?

2001-06-11 Thread Ritter, Steve
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 09, 2001 4:17 PM To: '[EMAIL PROTECTED]' Subject: Re: Where can I get the latest version of Jasper? On Wed, 6 Jun 2001, Ritter, Steve wrote: Does anyone know how I get the latest

RE: Need help with Can't remove attributes from request scope p robl em.

2001-06-06 Thread Ritter, Steve
pageContext.getRequest().removeAttribute(Constants.BEAN_KEY); pageContext.getRequest().removeAttribute(Constants.FORM_KEY); Jon. -Original Message- From: Ritter, Steve [mailto:[EMAIL PROTECTED]] Sent: 05 June 2001 20:03 To: '[EMAIL PROTECTED]' Subject: Need help with Can't remove

RE: Need help with Can't remove attributes from request scope p robl em.

2001-06-06 Thread Ritter, Steve
. -Original Message- From: Ritter, Steve [mailto:[EMAIL PROTECTED]] Sent: 06 June 2001 15:28 To: '[EMAIL PROTECTED]' Subject: RE: Need help with Can't remove attributes from request scope p robl em. Hi Jon, Thanks for the reply, I tried the recommended change to the source code and still

RE: Need help with Can't remove attributes from request scope p robl em.

2001-06-06 Thread Ritter, Steve
occurs in FormTag.doEngTag. Are you sure you are picking up the edited class? You might want to add some debug to doEndTag. Jon. -Original Message- From: Ritter, Steve [mailto:[EMAIL PROTECTED]] Sent: 06 June 2001 16:40 To: '[EMAIL PROTECTED]' Subject: RE: Need help with Can't

RE: Need help with Can't remove attributes from request scope p robl em.

2001-06-06 Thread Ritter, Steve
this. As to the stack trace; it confirms that the error occurs in FormTag.doEngTag. Are you sure you are picking up the edited class? You might want to add some debug to doEndTag. Jon. -Original Message- From: Ritter, Steve [mailto:[EMAIL PROTECTED]] Sent: 06 June 2001 16:40 To: '[EMAIL

Where can I get the latest version of Jasper?

2001-06-06 Thread Ritter, Steve
Does anyone know how I get the latest version of Jasper? Do I have to download Tomcat and if so which version? Thanks in advance!!! --Steve

ClassNotFound Exception in struts-example (b3)???

2001-06-06 Thread Ritter, Steve
Hello, I've got struts-b3 installed here and we were stepping through the struts-example. A problem arises when I click on the submit button in logon.jsp -- I get a ClassNotFound exception: [06/06/2001 16:12:39:511|17000] (ERROR) request_handler: Servlet Error: ClassNotFoundException: logon

Need help with Can't remove attributes from request scope problem.

2001-06-05 Thread Ritter, Steve
Hi everyone, We ran into a problem running b2/b3 on Servletmill that others seem to have hit with WTE. It occurs when trying to access the login page from struts-example, you get an IllegalArgumentException with message Can't remove attributes from request scope. It seems this thread

How do I contribute?

2001-06-04 Thread Ritter, Steve
Hello, I would like to contribute some information on using Struts with Persistence PowerTier (Apache/Servletmill). What's the best way to do this? --Steve

Is struts-documentation really *required*?

2001-06-04 Thread Ritter, Steve
I found that I could not successfully deploy struts-example.war without first deploying struts-documentation.war. Does this sound right or is it maybe something specific to my servlet container (Servletmill from PowerTier)? --Steve

RE: Is struts-documentation really *required*?

2001-06-04 Thread Ritter, Steve
To: [EMAIL PROTECTED] Subject: Re: Is struts-documentation really *required*? No, it's not required at all. What kind of error are you getting? -- Dan Miser http://www.distribucon.com From: Ritter, Steve [EMAIL PROTECTED] I found that I could not successfully deploy struts

RE: Is struts-documentation really *required*?

2001-06-04 Thread Ritter, Steve
-documentation really *required*? Are you able to deploy the other Struts WARs. There have been issues in getting the example to run with some containers that are not 100% compliant with the specification. http://jakarta.apache.org/struts/installation.html Ritter, Steve wrote: Ok

RE: Is struts-documentation really *required*?

2001-06-04 Thread Ritter, Steve
as a compatibility test, so you should be sure to check with PowerTier too. Ritter, Steve wrote: Here are the results of trying to install the struts sample webapps without first deploying struts-documentation.war for Servletmill. Webapp Works w/o doc