Re: Tomcat + Struts in Production Environment

2001-12-09 Thread Sean Owen
Regarding Struts's scalability, I don't think that it will be the bottleneck in your application by far. We have successfully used Struts on a site that handles 1,000+ transactions per minute, so even 100,000 a day is no sweat for Struts itself. I think it's your DB that will be the bottleneck,

struts-html.tld: Failed to find TEI class

2001-12-09 Thread @Basebeans.com
Subject: struts-html.tld: Failed to find TEI class From: Paul Heath [EMAIL PROTECTED] === I'm getting the following message on compilation of a JSP: Warning: struts-html.tld: Failed to find TEI class 'org.apache.struts.taglib.html.MessagesTei', reason: org.apache.struts.taglib.html.MessagesTei.

Re: action chaining without resetting action forms

2001-12-09 Thread Paul Devine
Hi Mohammed sorry for my late reply. If you want to use use action chaining to accomplish this, you will need to define both Action1 and Action2 mappings in your struts-config.xml file. In the Action2 mapping, define a forward... for let's call it login_failed which points to /action1.do. I

RE: 2 problems with html:errors

2001-12-09 Thread Mike Hoeffner
I'm at a loss for why, but I did a lot of trial and error and the following solved my first problem: logic:iterate id=children name=adForm property=children indexId=index % String errorKeyChildFirstName = children[+index.intValue()+].firstName; % html:errors

JDOM vs Digester

2001-12-09 Thread Gary Struthers
Digester looks like it is meant to be JDOM like with Rules. Would anyone like to compare and contrast them. When would Digester be a better choice if I'm already using JDOM? Thanks, Gary -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

Re: Tomcat + Struts in Production Environment

2001-12-09 Thread L. Yeung
--- Vic Cekvenich [EMAIL PROTECTED] wrote: Hi All! Just a little intro about my work and myself. I'm the only employee of a startup software company writing database solutions. I'm told to write an application for POS, invoicing and inventory modules that should scale for around

Constructor in a Action class not being called

2001-12-09 Thread antony
Hi I have a Action class with a constructor in it, public final class BbsAction extends Action { public BbsAction() { System.out.println(BbsAction.BbsAction() I am testing constructor call); } } but this constructor is not being called. How can I make it be called?

cant remove Attributes from request scope

2001-12-09 Thread Sunil Mandya
Hi folks, I'm new to Struts and to JSP's. I'm trying to convince my team to use struts in a project. I have been unable to setup the example application... I'm running WebSphere 3.5.4 and went through the installation procedure outlined in the website. I can see index.jsp, but can't see

RE: 2 problems with html:errors

2001-12-09 Thread Mike Hoeffner
Removing: init-param param-namenull/param-name param-valuefalse/param-value /init-param from my web.xml seemed to solve #2. -Original Message- From: Mike Hoeffner [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 09, 2001 2:26 PM To: [EMAIL PROTECTED] Subject: RE: 2 problems with

Bug or Misunderstanding?

2001-12-09 Thread Antony
Hi all: I`m working with resin, struts,db2 7.1 According to struts framework, data retrived from jdbc had better be mapped to javabeans and passed to jsp pages in request scope beans. However I`m unable to do this with resin, I just cannot request.setAttribute(name, obj); and find that

Re: strut help

2001-12-09 Thread Yee Keat
On Sunday 09 December 2001 03:41 am, you wrote: try this a href=javascript:send('logon.do'); img scr=image.gif/a As far as I know, this solve my problem on netscape 4.x, in IE, Mozilla and Opera your version works fine. Please help. I'm in a dead-end. I need to write the submit button

Re: JDOM vs Digester

2001-12-09 Thread Yee Keat
Digester is a JDOM with javabeans mapping, if you use Digester, you should have a couple of javabeans on hand, and than you can do one-to-one mapping with the xml file, for loading purpose mainly. If you use JDOM, can get all the attributes out, but you will have to call the setter of the

Passing variables with the html:link tag, how do I do this?

2001-12-09 Thread antony
Hi I have a very simple question, I want pass a variable to a page, I have html:link forward=bbs paramId=page paramPropery=next -(1) and want this to expand to http://localhost:8180/testproject/bbs.do;jsessionid=EB98798BC98658698989879878page=next -(2) But (1) is not doing what I want