Re: Tool to convert HTML to Struts JSP's?

2004-08-06 Thread Adolfo Miguelez
To attain such a task, I think you need to develop a framework over struts setting your standard way to proceed with data feeding to pages. In other words you need to do some asumptions since Struts is too general for this task. A friend of me did something similar with quite success. A tip: us

Re: Tool to convert HTML to Struts JSP's?

2004-08-06 Thread Adolfo Miguelez
To attain such a task, I think you need to develop a framework over struts setting your standard way to proceed with data feeding to pages. In other words you need to do some asumptions since Struts is too general for this task. A friend of me did something similar with quite success. Regards,

RE: [very OT] 16 kb limit in XML from Tomcat?

2004-05-17 Thread Adolfo Miguelez
I did have similar experiences parsing files by myself using SAX parsing. Xerces and other parsers chop files in blocks. 16k is the default size for xerces, or at least it was. Hander code must be aware of that, in the events handling, and hold strings from one block to the other if one tag is

RE: Struts 1.0 --> 1.1 on iPlanet

2004-05-14 Thread Adolfo Miguelez
Well, I run in similar issues deploying in iplanetAS 6.0 SP5. I was able to make it start the application by patching the class loading in struts and digester jars, but I rejected in patching the custom tags, so I decided to use plain HTML instead. WHY this happends? Maybe because iPlanet 6.0 i

Re: Filters..

2004-04-06 Thread Adolfo Miguelez
Filters require servlets 2.3+ From: [EMAIL PROTECTED] Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: Filters.. Date: Tue, 6 Apr 2004 10:23:51 -0400 VJ, Filters are a good way of extending an existin

Re: OFF-TOPIC - Paging Results

2004-03-30 Thread Adolfo Miguelez
A question that I wondered for long. AFAIK, there are 2 paging policies: - paging in app server memory, in session scope to enable paging in clustered environments, or - paging in dababase, using scrollable resulsets or related. I guess, paging in app server, can overload server memory if query

Re: OFF-TOPIC - Paging Results

2004-03-30 Thread Adolfo Miguelez
A question that I wondered for long. AFAIK, there are 2 paging policies: - paging in app server memory, in session scope to enable paging in clustered environments, or - paging in dababase, using scrollable resulsets or related. I guess, paging in app server, can overload server memory if query