What is a good design or idea or utility to create a cache collection of N number of elements Least Recently Used?

2001-05-12 Thread Vic Cekvenich
What is a good design or idea or utility to create a cache collection of N number of elements Least Recently Used? Say a hash map with synchronized get and put, that would track LRU and lock at the element level? Must be of fixed size and work at element level. Suggestion please and

remove unsubscribe

2001-04-02 Thread Vic Cekvenich
remove unsubscribe - Original Message - From: Bernard Hartken [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 02, 2001 9:17 AM Subject: Attn: Sales Manager Attn: Sales Manager If you are outsourcing or need to expand your sales force for the short term or long term

Re: LookupDispatchAction Question

2003-02-11 Thread Vic Cekvenich
Alvarado, Juan (c) wrote: From a design point of view, forwarding from one action to another action should be examined closely. It should be the exception rather than the rule. -1. You allways do that, like I have processed this page, go to another page. .V I would suggest you do the

Re: Need Advise: use Struts/XSLT

2003-02-12 Thread Vic Cekvenich
What I do is store XML file as a BLOB field in DB (and somtetimes a HTMLCache field as well). Then I do JSTL x: transform mostly or use the cached HTMLfield version sometimes. .V Jason Yam wrote: Hi everyone, anyone knows what direction the apache group will go related to

OT: Yet another Persistence Survey

2003-02-12 Thread Vic Cekvenich
I am curious as to what is popular and working in larger production sites (as opposed to still in development, or like less than 200 concurent users, or not working well in production or a theory as to what might work well) for persistence: A. Hibernate B. Castor C. Roll Your Own Beans/

Announce: Struts talk .. labs live online w/ 4 Authors

2003-02-17 Thread Vic Cekvenich
Ted James have now both graciously agreed to join the WebEx labs. Try to see them in person! (I just did DC 2 weeks ago). But if you can’t…. you can see their presentation and hear them live from your home or work, shortly after their live shows. This in addition to doing real labs for multi

Re: CMP EJB2.0 Struts Example

2003-02-18 Thread Vic Cekvenich
http://www.trifork.com/web/articles.html http://www.ibatis.com/jpetstore/jpetstore. Both above are PetStore using Struts with source code. .V Zoran Avtarovski wrote: I'm about to start work on a application which I'd like to use the struts framework with CMP2.0 EJBs. Our current structure for

Re: Saving form data

2003-02-18 Thread Vic Cekvenich
http://www.postgresql.org/docs/view.php?version=7.3idoc=0file=sql-select.html one way is to pass the offset above to the RowSet via getParameter. This works with large resultsets. .V Joey Ebright wrote: Is there any piece of functionality in Struts that I can take advantage of in order to save

Re: RowSetDynaClass

2003-02-18 Thread Vic Cekvenich
(my post got lost) bellow: Luiz-Otavio Zorzella wrote: Craig R. McClanahan wrote: Sundar Narasimhan wrote: I agree that this approach works well for small result sets. However, if there are say 10k rows.. it would be nice to have such a class work together with a Pager tag set.. any thoughts

Re: [struts 1.1-b3] problem with server side validation

2003-02-18 Thread Vic Cekvenich
Validator works for me with a late nightly build. Last week I did a class, and every student got server and client side validation working. .V Martins Stephane wrote: Hello Since I've migrated to struts 1.1-b3, I have serious problems with the validator included in struts. Both my webapp and

Re: RowSetDynaClass

2003-02-18 Thread Vic Cekvenich
is sent to the client. I have two questions 1. Is there an alternative to the CachedRowSet that can be used in commercial products? If not what do you use? 2. Does using CachedRowSets cause a lot of network traffic if the size of the set is big? Thanks, Jack -Original Message- From: Vic

Re: [struts 1.1-b3] problem with server side validation

2003-02-18 Thread Vic Cekvenich
extend my validate in the actionform, these validations are done after Javascript (which is ok). But there's this exception when the rules from my validation.xml are done from server-side. I have no problem with struts 1.0.2 with the validator 1.0 ... -Message d'origine- De: Vic Cekvenich

Re: Proper place/tier for retrieving DDLB Values

2003-02-18 Thread Vic Cekvenich
White, Joshua A (CASD, IT) wrote: This is what I have done thus far: 1 Developed domain objects. 2 Developed persistence tier Problem: Where should the code which takes a key from a domain object (for example orderTypeId) and looks it up in a database to get the corresponding values? This

Re: TilesAction and Controller

2003-02-19 Thread Vic Cekvenich
For others... nice write up on this in http://blogs.browsermedia.com/patrick/index.do?date=20030211 .V BaTien Duong wrote: Initially I thought we can use Controller interface to save an extra specification in config.xml and to be more flexible in our design of class structure. We use

Re: slowdown problem

2003-02-19 Thread Vic Cekvenich
How many users? How many objects per session? How complex is the DB access? Set up to monitor the VM in production maybe. Can you reproduce in a Stress test? What is the VM doing during the stress test - like GC? hth, .V Chakradhar Tallam wrote: hi, we got a tomcat(4.1.12) application using

Re: mailing list question

2003-02-20 Thread Vic Cekvenich
Or use news.basebeans.com via news reader in outlook. It has Struts, Resin, Eclipse, Hibreante, Apsect, pgSQL, etc., all the mail lists I think are cool for users, with no need to move, makes it easy to monitor, and post like I do here. .V James Childers wrote: -Original Message-

Re: General-Ledger

2003-02-20 Thread Vic Cekvenich
Great thinking! This is pgSQL based, and to write a few screens to do CRUD against a pgSQL is very do able via Struts. There might be people that have Struts experience that could be hired to write some of the screens for the Web, and screens you need rarley could stay the way they are. .V

Re: OT [ JDBC CachedRowSet]

2003-02-21 Thread Vic Cekvenich
Did you compleate the tutorial? http://developer.java.sun.com/developer/technicalArticles/javaserverpages/cachedrowset/ There should be no questions, look at JavaDoc. If you post questions on mvc- programmers (on news.basebeans.com) I will help, this is a Struts list. .V [EMAIL PROTECTED]

Re: Using Struts for Reporting App

2003-02-21 Thread Vic Cekvenich
I do not know much about your requirements, but I would not use Struts for reporting. A good practice reports is iReports.sf.net. I just make JasperReports into a servelt that ties into iReports. .V Vinh Tran wrote: All: I just wanted to get some of your opinions on this scenario... I am

Re: Using Struts for Reporting App

2003-02-21 Thread Vic Cekvenich
http://ireport.sourceforge.net/ Vic Cekvenich wrote: I do not know much about your requirements, but I would not use Struts for reporting. A good practice reports is iReports.sf.net. I just make JasperReports into a servelt that ties into iReports. .V Vinh Tran wrote: All: I just wanted

Re: can i use native data type

2003-02-22 Thread Vic Cekvenich
BlankDid you try looking this up on the struts user guide page? I will link it for you. http://jakarta.apache.org/struts/userGuide/struts-html.html Also, for others this is a link where you can see a list of questions asked before, you might not be the first to have asked your question.

Re: struts-el with weblogic 7.1 - Error (JSP 1.1 spec, 5.4.1) atline 2

2003-02-22 Thread Vic Cekvenich
Does same work on Tomcat? .V Rabih Yazbeck wrote: Hello, I am using Weblogic 7.1 with Struts-el... and I am receiving the following error while compiling my JSPs from JBuilder 8 Ent. jsp1.jsp: Error in using tag library uri='/WEB-INF/struts-html-el.tld' prefix='htmlel': The Tag class

Re: Best way to write html:select

2003-02-24 Thread Vic Cekvenich
request.setAttribute( ) Chetan Sahasrabudhe wrote: Hi, I have a requirement to populate my html:select list through DB entries. The list will be appearing on multiple forms with respect to different form beans. My problem is, when I define the collection bean for individual html:select,

Re: How to Show gif image instead of html button in the forms forhtml:submit tag ?

2003-02-24 Thread Vic Cekvenich
By searhing the mail archive for you for other times this question was asked: http://www.mail-archive.com/[EMAIL PROTECTED]/msg48962.html Shabbir Khadir Mohammed wrote: Hi All Hope all are doing well. I am using following code for form submit in one of the JSP. html:submit

Re: Struts Installation

2003-02-24 Thread Vic Cekvenich
Did you check the home page of Struts for several great books, some of them available in PDF instantly? .V joseph agunpopo wrote: Hi Can anyone tell me how to install and configure Struts.please? = joseph __ Do You Yahoo!? Everything

Re: [TILES] Foxy Tiles Problem

2003-02-24 Thread Vic Cekvenich
One thing that might help you is this, Tiles 201, that basicaly has a controler for each tile, with it's own setup, it should give you good ideas, else repost. http://blogs.browsermedia.com/patrick/index.do?date=20030211#130200 Templates are deprecated in favor of tiles. .V PILGRIM, Peter, FM

Re: struts book

2003-02-24 Thread Vic Cekvenich
I would recommend you get his: http://www.manning.com/ebook_buy.html?project=husted My book is almost 18 months old and included in Doco of basicPortal.com. .V Griemens, Guenter wrote: Does anybody knows about to get Vik Cekvenich's basebeans-book about struts (2001) in Germany by another

Re: html:image value=???/

2003-02-24 Thread Vic Cekvenich
By searching the mail archive for you for other times this question was asked: http://www.mail-archive.com/[EMAIL PROTECTED]/msg48962.html Vic, a nice guy. Art Vandalay wrote: According to the User Guide the 'value' attribute on html:image is The value that will be submitted if this image

Re: LookupDispatchAction w/ Buttons Images

2003-02-24 Thread Vic Cekvenich
By searching the mail archive for you for other times this question was asked: http://www.mail-archive.com/[EMAIL PROTECTED]/msg48962.html Vic, a nice guy. Art Vandalay wrote: I have a page that has 7 text buttons, an HTML table with repeating rows of data, and 2 images. The images, Previous

Re: LookupDispatchAction w/ Buttons Images

2003-02-24 Thread Vic Cekvenich
, but that older post from the archives does not answer my question. I had searched the archive, like I always do and found no previous answer to my question. Maybe instead of being a nice guy you should concentrate on being an effective guy. --- Vic Cekvenich [EMAIL PROTECTED] wrote: By searching the mail

Re: need to display a tree struture in JSP

2003-02-24 Thread Vic Cekvenich
I saw this but never ttried: http://www.guydavis.ca/projects/oss/tags/ .V Pani Ramasami wrote: Hi: I have a object which contains all the necessary data. Now, I need to display the data in a Tree structure in my JSP. Iam using Stuts 1.1b3. (may be irrelavant) If any of you have done this

Re: Struts and Portlets

2003-02-25 Thread Vic Cekvenich
I found JSR-168 lacking. I have been using Tile 201 like things for a long time to give me a lite and fast version of Portlets features. http://blogs.browsermedia.com/patrick/index.do?date=20030211#130200 .V [EMAIL PROTECTED] wrote: Hi, is there an intention to implement the JSR-168 (Portlet

[Ann]: Live online advanced Struts training by 4 authors for $350- last chance

2003-02-25 Thread Vic Cekvenich
One place for more details and info here: http://www.postgresql.org/event.php?EventID=122 .V - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Struts and Portlets

2003-02-25 Thread Vic Cekvenich
http://nagoya.apache.org/wiki/apachewiki.cgi?PortalProposal Mete Kural wrote: --- Craig R. McClanahan [EMAIL PROTECTED] wrote: There are certainly people in the world who have done this sort of thing already (Liferay, BasicPortal, etc.) for non-JSR-168 portlet APIs, so it's clearly feasible,

Re: Struts and Portlets

2003-02-25 Thread Vic Cekvenich
? -Mete --- Vic Cekvenich [EMAIL PROTECTED] wrote: http://nagoya.apache.org/wiki/apachewiki.cgi?PortalProposal Mete Kural wrote: --- Craig R. McClanahan [EMAIL PROTECTED] wrote: There are certainly people in the world who have done this sort of thing already (Liferay, BasicPortal, etc.) for non-JSR

Re: Tomcat 4.1.18, DBCP, DataSources - What are people using?

2003-02-26 Thread Vic Cekvenich
My DAO's DBCP-standalone works with Tomcat; and you can switch to JNDI pool. Source: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/basicportal/basicportal/src/basicWebLib/org/apache/basicWebLib/DAO/BasicDAOImpl.java .V David Haynes wrote: After working on this for most of the day, I have

Re: struts Content Management System

2003-02-27 Thread Vic Cekvenich
http://jakarta.apache.org/struts/resources/examples.html has a link to a portal w/CMS .V rajiv ahuja wrote: Hi Is there an open source CMS around that works well with struts? I am working on a intranet web application (using struts) that allows designers to create the content , managers to

Re: [Ann]: Live online advanced Struts training by 4 authors for$350 - last chance

2003-02-28 Thread Vic Cekvenich
Vic Cekvenich wrote: One place for more details and info here: http://www.postgresql.org/event.php?EventID=122 .V In addition to above, we might have bonus session(s) at the end, in April for the paid students, subject to changes. Possible topics following, maybe 2 per week in April, TBA

Re: STRUTS with TORQUE

2003-02-28 Thread Vic Cekvenich
If you like Torque, you would LOVE CommonsSQL in the commons CVS sandbox. .V Mitchell Morris wrote: Please summarize your findings to the list, if you would; I would be interested in seeing the group consensus on Torque as well. From following Jetspeed and Turbine user lists it seems that

Re: [struts-el] What's the benefits ?

2003-02-28 Thread Vic Cekvenich
Its worth reading to get EL. I preferred Core JSTL by Geary. alexj wrote: I will read JSTL in Action to have a better knowledege of JSTL. -- Alexandre Jaquet - Original Message - From: alexj [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, March 01, 2003

Re: What is the best struts plugin for Eclipse?

2003-03-03 Thread Vic Cekvenich
I use solar-eclipse plug in to edit ANY xml file and jsp. I also use a resin eclipse plugin if I need to debug JSP. (on resin home page) hth, .V p2 - apache wrote: Agree. It is a good product. Better launch it as standalone or inside Sun ONE Studio/NetBeans. -Original Message- From:

Re: How fast is bean:message?

2003-03-04 Thread Vic Cekvenich
Do we have an idea if same is true of the JSTL FMT tag? (bean tags are now redundant to JSTL). .V David Graham wrote: That's not all that surprising because the java.text.* classes have always been rather slow. I think they create a lot of objects while processing text which slows them down.

Re: Stress Testing Struts apps

2003-03-04 Thread Vic Cekvenich
Great post Joseph. .V Joseph Fifield wrote: http://www.programmerplanet.org/ant-jmeter/ Joe -Original Message- From: Tim Shadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 3:14 PM To: Struts Users Mailing List Subject: Re: Stress Testing Struts apps Do you have an Ant task

Re: Sort a collection in alphabetic order

2003-03-10 Thread Vic Cekvenich
http://edhill.its.uiowa.edu/display-0.8/ Robert Taylor wrote: Do it in the query. select ID, FIRSTNAME, LASTNAME from people order by LASTNAME, FIRSTNAME robert -Original Message- From: Søren Blidorf [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 1:17 PM To: [EMAIL PROTECTED]

Re: [ANN] Struttin' With Struts beta (newbies esp. welcome)

2003-03-11 Thread Vic Cekvenich
Excellent!!! I will take the tutorial. I am wondering what are you doing for your Data Base, is it JDBC or something else. .V Rick Reumann wrote: I created a web site that walks new Struts users step by step through the development of three VERY simple web applications in three lessons. Each

Re: Opinions on Struts code generator - A zipped version

2003-03-12 Thread Vic Cekvenich
It looks good. Consider making a sourceforge project or using someone elses. I like that you start from HTML and do JTidy. Consider a feature request: Make action, sturts-config and formbean generation based on custom template, or that it's easy for people to change what kind of code gets

Re: [ANN] Struttin' With Struts beta (newbies esp. welcome)

2003-03-12 Thread Vic Cekvenich
a pass to see/hear Ted Husted's live presentation via WebCast/Webex this Saturday. pps: I still think RowSet is best practice, but list/collection is a veery, very good practice and should work for most cases. Rick Reumann wrote: On Tue, 11 Mar 2003 06:49:54 -0500 Vic Cekvenich [EMAIL

Re: BaseBean questions [was] [ANN] Struttin' With Struts beta (newbies esp. welcome)

2003-03-13 Thread Vic Cekvenich
Rick Reumann wrote: Thanks vic for the kind words and feedback. I replied to you privately. Rest of this email is in regard to the BaseBeans stuff I looked it. Comments below... On Wed, Mar 12,'03(08:51 PM GMT-0500), Vic wrote: So consider using list/collection based beans. Ex:

Re: Accessing bean in JSP but w/in java

2003-03-13 Thread Vic Cekvenich
write a getX() and just do bean.x in JSP Scott Seong wrote: Hello, I have a little problem that I need help from experienced users. I'm trying to access actionForm value in the JSP inside the java code. Why would I use Java inside the JSP? I needed to derive options values based on the value I

Re: BaseBean questions [was] [ANN] Struttin' With Struts beta (newbiesesp. welcome)

2003-03-13 Thread Vic Cekvenich
Rick Reumann wrote: On Thu, 13 Mar 2003 06:22:58 -0500 Vic Cekvenich [EMAIL PROTECTED] wrote: Also, a bean should not do persistence, but should delegate. So I create a helper object, a DAOImplementation. ( a DAO also has a base). One thing is obvoice, a baseBean needs to CRUD, so it makes

Re: Caching Drop Down List Box Strategies?

2003-03-13 Thread Vic Cekvenich
A good practice is your DAO should or already does caching. - Caching JDBC (ex: phWorks - Caching Connection pool, ex: poolman - DAO, ex: Ibatis.com, Hibrenate Lots of things could be cached, not just drop downs, and you should not need to code any caching for it. It's automatic! my DAO

Re: [Q] Mailing list manager integration with struts?

2003-03-13 Thread Vic Cekvenich
A good practice is to save all e-mail to a db from web app, thus releaseing resources quickly. Then use J2EE1.4 jar from an async cron console application to connect to db and mail server and mail things not flaged as mailed. .V Jeff Smith wrote: I just got a phone call from one of the local

Re: Loading complex forms with Struts.

2003-03-14 Thread Vic Cekvenich
Master detail processing is done all the time in HTML and Struts. One way is to have a bean that contains another bean as property via getBeanX(). .V Simon Kelly wrote: Hi all, I have a form within a page that I need struts to populate in a specific manner. The data selection within the page

Re: Data driven struts application

2003-03-14 Thread Vic Cekvenich
I agree with those that say Dynabeans are not a good practice. It's hard to unit test, or reuse, for example in JSTL or Model 1. It has a CVS hot spot. etc. etc. Best stick with unit tested POJO (and a bean that has a DAO helper, as in my other posts). .V Phil Steitz wrote: I apologize if this

multi page forms workflow recommendation

2003-03-14 Thread Vic Cekvenich
I think that mutli page and worflow type posts are missing the boat and... doing procedural programing; and not event driven programing. In procedural programing (COBOL) the programmer is in charge of what happens next, in event driven programing (Web) the user is in charge of what happens

Re: argh, confused now

2003-03-14 Thread Vic Cekvenich
3 forms, might be 3 actions. The action would then controll where to dispatch to based on what ever your criteria is. ex: do/form2Pg?dispatch=edit Dan Allen wrote: Okay, I think I got too much information and now I am confused all over again. I have a 3 part form. When the user signs up he/she

Re: Validator Indexed Properties

2003-03-15 Thread Vic Cekvenich
It works fine for my clients with 2 diferent patches offered, on dev list a long time ago: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8798 and attached sollution on May of 2002, almost a year ago, you can search the dev list on the topic. Then there is a 2nd better patch that I kind

Re: BeanUtils.copyProperties between from and DAO issues

2003-03-15 Thread Vic Cekvenich
Write a util function link longString in here: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/basicportal/bP/WEB-INF/src/war/org/apache/scaffoldingLib/util/BUtil.java You can just say in bean: List l = getDAOx().getResult(); And now you have a list in you bean, populated by dao. .V Dan Allen

Re: BeanUtils.copyProperties between from and DAO issues

2003-03-15 Thread Vic Cekvenich
The FormBean can easily be populated by an array. casting is easy, and done once in a util function. beanUtils is usefull, but ... maybe not in this case. Maybe, I am just not getting you question, so someone else jump in. .V Dan Allen wrote: Right, but I was hoping that perhaps it should do this

Re: BeanUtils.copyProperties between from and DAO issues

2003-03-15 Thread Vic Cekvenich
I see where you were going: #1. Post a request for enhancement in bugzilla for commons.(which will CC commons-dev), not in Struts, and not in User. #2. Wait a while. #3. Give up waiting, and extend BennUtils to do what you need it to do. #4. Submit a enhancement code to BeanUtils bugzila,

Re: Opinions on Struts code generator - A zipped version

2003-03-16 Thread Vic Cekvenich
Emmanuel Feller wrote: Hi James, I take a look to your paper and i found it very interesting. But I am wondering if every code generator are not taking the problem by a wrong way, because I saw some of them (your, one on Ted Husted's site, one made in my office, and few others which wasn't

Re: Opinions on Struts code generator - A zipped version

2003-03-16 Thread Vic Cekvenich
Like this (but it's read only): http://ireport.sourceforge.net/images/screenshot6.gif It even has a wizzard from SQL. .V James Higginbotham wrote: Interesting.. How about taking this to the next level, which all struts generators have failed to do (except a BEA tool that requires you to buy into

Re: struts jdk1.4 logging

2003-03-18 Thread Vic Cekvenich
Does anyone have a sample (or a link) jdk1.4 logging properties and initalizer for a web app that they can share? tia, .V Robert Taylor wrote: I'm using JDK1.4 logging in parallel with Apache's Commons-Logging and it works fine. The Apache's Common-Logging should be using JDK1.4 logging as well

OT: Re: struts jdk1.4 logging

2003-03-18 Thread Vic Cekvenich
: http://javaalmanac.com/cgi-bin/search/find.pl?words=logging Mark -Original Message- From: Vic Cekvenich [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 12:27 PM Does anyone have a sample (or a link) jdk1.4 logging properties and initalizer for a web app that they can share? tia

Re: jdk14 log

2003-03-19 Thread Vic Cekvenich
()); } } - Original Message - From: Vic Cekvenich [EMAIL PROTECTED] To: Navjot Singh [EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 10:46 PM Subject: jdk14 log | Can you send me the properties files and the command that read it? | I am trying to get JDK1.4 log to work in struts. | thanks | .V

Re: OT: SQL statement generator for a web based list

2003-03-19 Thread Vic Cekvenich
I think this is common, and I (now) use iBatis.com db layer. hth, .V David Gagnon wrote: Hi all, Sorry to bug the list for that .. I looked around and haven't found my answer . and pretty sure you guys had this problem already. My web application support lists. Searches on the list can

OT: Re: [FRIDAY] Microsoft

2003-03-21 Thread Vic Cekvenich
Brian Lee wrote: All of your arguments below are true, but the concern over the TMC report is that if .Net runs apps 50% faster than J2EE then why not use W2k for the app servers running .Net and ditch your J2EE app server. That's the scary argument. Since .Net can communicate with any J2EE

Re: OO Design with ActionForms, Again - Can someone please comment

2003-03-21 Thread Vic Cekvenich
Yes, you can have only one formBean with a jsp form page. But the formBean can contain/compound/nest bean. Example a tax form: You have a formBean that containts a bean of income and bean of expenses. so formBean { incomeBean getIncomeBean() {return _incomeBean;} expenseBean getExpenseBean()

new sample best practice Struts data driven web app for Tomcat5/Resin 3

2003-03-21 Thread Vic Cekvenich
I released a new basicPortal implementation called bP v0.8k available for download on basicPortal.sf.net. - The new version is same simple bean has a dao helper design, but it uses ibatis.com db layer. (the older design used RowSet) Ibatis db layer is very nice. - It now works fine and is

Re: case study with security

2003-03-23 Thread Vic Cekvenich
A good practice is to use decelrative Container Managed Security. This kind of implies you set it up in web.xml (via a /securePath/*) or via action mapping in struts config. (writing you own security is not a good parctice, IMO) hth, V (do not cofuse that with the non container based filter

Re: take over an existing HttpSession

2003-03-24 Thread Vic Cekvenich
Read up on session fail over (based on db fail over most likely) .V Dmitri Ilyin wrote: Hi, i'm may be out of topic. But i think there are a lot of gurus here they could help me. I have to implement one feature in my application for that there is may be already a solution here. Szenario: A user

Re: Paging a collection property

2003-03-24 Thread Vic Cekvenich
Look at display tag in google. hth, .V Jorge Mascena wrote: I need some directions on how to use the struts html and/or neste taglibs to handle the case where there's a collection property of a form bean that may contain a big number of objects. In this case, I'd like to able to do some sort of

Re: RES: Paging a collection property

2003-03-24 Thread Vic Cekvenich
. If so, what do I have to do to accomplish that? Thanks Jorge Mascena -Mensagem original- De: Vic Cekvenich [mailto:[EMAIL PROTECTED] Enviada em: Monday, March 24, 2003 3:22 PM Para: [EMAIL PROTECTED] Assunto: Re: Paging a collection property Look at display tag in google. hth, .V Jorge

Re: Short term fixed price Struts contract on elance

2003-03-25 Thread Vic Cekvenich
I would think most people like this kind of post. $$ Struts does help with time to market, therefore profit per job. (I also guess most people do not appreciate head hunting here). .V Sasha Bilton wrote: Hi, We're posting this to the list because it seems that some of the best Struts people

Re: Short term fixed price Struts contract on elance

2003-03-25 Thread Vic Cekvenich
self post and self promo: Most people take several days per module working average module. In my class, I teach people how to (be more productive and) write several modules per day, and other success strategies. Vic Project Recovery and Training baseBeans.com Vic Cekvenich wrote: I would

Re: [ANN] - Struts-Atlanta meeting

2003-03-25 Thread Vic Cekvenich
Start one, I know a few Struts people there and could help. .V Daniel Jaffa wrote: Now this is great if you live in Atlanta, but what about us that live in New York. :( I have heard of a group in Jersy, but not the city. Dan - Original Message - From: James Mitchell [EMAIL PROTECTED] To:

Re: New York City Struts Group

2003-03-25 Thread Vic Cekvenich
http://groups.yahoo.com/group/struts_NYC OK, you can join here. First topic is when is the first meeting? Ex: 2nd Saturday of every month at 5PM at 23rd street. But best decide that on the list. Majority would rule time and place, I recommend same time same place, and then the group grows. I

Re: Struts Development tool with GUI

2003-03-25 Thread Vic Cekvenich
I got a chance to work on some big Stuts projects, and we did not use any tools. Anycase, that is not the major stumbling block. Mostly people need help with modular programing (and some reuse via OO), and other typical project issues. 100 pages is not that bad at all. Consider having several

Re: Struts and Swing Client

2003-03-26 Thread Vic Cekvenich
On related it is common to share the beans, via Soap or as JAR. Once you have a working Struts app, and working/tested beans, it is easy to make a Soap front end GUI (via Soap, or VB front end) or just include your bean jar in you Swing, assuming POJO. And there are SOAP MVC projects

Re: Struts Module Arch Q

2003-03-27 Thread Vic Cekvenich
Codeing something that is automatic is a bad practice. Consider using Container Mnaager Security, that does this fo you. .V Navjot Singh wrote: Hi List, I want to build some kind of generic login system for my app and I am thinking on these lines Request Flow == test.jsp - TestAction -

getRowCount

2001-09-09 Thread Vic Cekvenich
I swear I was able to do this before in JDBC, now I can't think of it brain freeze. How do I get a row count or an enumeration of a JDBC Result set? (I want to retrieve a few rows and display them and iterate, for which I need an enumeration) TIA, Vic PS: OK you want to be real helpfull?

Re: Problems with PoolMan finding mm.mysql driver

2001-09-17 Thread Vic Cekvenich
This says that your JDBC class is not found, not poolman. Make sure it is in the classpath. Vic Adam Smith wrote: The answer to this has to be painfully easy, but I have gone over this many times now and can't find the answer. I am using Tomcat 3.2.3, Struts 1.0, PoolMan 2.0.3 and the

initial values to edit .... and then view save

2001-09-25 Thread Vic Cekvenich
I am trying to in my action, retreive data from a DB, and then send it to the page for editing. (The page would then send it back to same action to be saved to DB. Also, I would try to use same page and action for insterts and validtaion later). Only I can't get it to work. (looked in mail

RSS now

2001-10-03 Thread Vic Cekvenich
considered would be on the TODO list. There are no other development discussion areas beside the Struts-Dev list. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel +1 716 737-3463 -- http://www.husted.com/about/struts/ Vic Cekvenich wrote

[ANNOUNCE] Fast Track to MVC / JSP Framework Public Workshop

2001-10-23 Thread Vic Cekvenich
Title: !- - commercial Master Struts in three Days! The date is fast approaching. Join our workshop and discover how the MVC/J2EE platform provides a number of benefits for organizations developing intranet and Internet applications. MVC designs require that you separate the

Re: [ANNOUNCE] Fast Track to MVC / JSP Framework Public Workshop

2001-10-23 Thread Vic Cekvenich
Cool. I am real glad Struts is spreading. baseBeans.net courseware is more than 250 text pages (not slides), 6 months in making, not sure if that is a differentiator. It is on Struts 1.1 w/Tomcat4 and J2EE and talks about some good development designs using Struts; people have already signed up

Re: java IDEs

2001-10-27 Thread Vic Cekvenich
I like Netbeans.org. - Original Message - From: Matt Raible [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 26, 2001 5:08 AM Subject: RE: java IDEs I believe in VIM (www.vim.org) - not a memory hog like all the rest of the IDE's. JBuilder seems to get a lot of good

l MVC framework w/XML

2001-11-13 Thread Vic Cekvenich
!--This design came about as I am writing a book, in addition to the training 2 classes almost sold out, 1 week left to register. Chapter 1in the book is on Struts trough chapter 22 is on Struts, and includes content syndication and such - - Yes I tried it, yes it works, yes it is fast, in

Newsgroup

2001-11-15 Thread Vic Cekvenich
There is now another mirror of the Struts mail list at news.basebeans.com as a newsgroup forum. It does not replicate post back to mail list yet ( it will in a week). More good stuff comming HTH, Vic -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

Re: Book for the beginner

2001-11-16 Thread Vic Cekvenich
Vic Cekvenich wrote: 1st Struts book w/ 25 chapters on Struts should ship in 2 weeks. (It covers the class topics found on baseBeans.com list of topics, plus content syndication and a few more topics I can't think of now). You will be able to pre-order some time next week

Struts 1.1 book available for order

2001-11-30 Thread Vic Cekvenich
http://www.atlasbooks.com/marktplc/00670.htm You can order it today, and it will ship next week. It will be on Amazon, etc. in a few more weeks, it takes time. This is the fastest way I know to publish it. Vic -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Re: Struts 1.1 book available for order

2001-11-30 Thread Vic Cekvenich
Amazon will be carrying it as well. [It is much easier to buy from a company we have already established an account with at my company]. Nathan Anderson -Original Message- From: Vic Cekvenich [mailto:[EMAIL PROTECTED]] Sent: Friday, November 30, 2001 9:26 AM To: [EMAIL

Re: Best Struts Web Server

2001-12-07 Thread Vic Cekvenich
OrionServer.com I think is good. It auto reloads changes to class and XML files, it has great debug support and is J2EE. Vic Robert J. Sanford, Jr. wrote: jetty is better than resin? define better. both jetty and jboss are open source if that is important to you (i assume it is since

Re: Tomcat + Struts in Production Environment

2001-12-08 Thread Vic Cekvenich
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 less than 30k but greater than 10k transactions per

Re: Struts 1.1 book available for order

2001-12-08 Thread Vic Cekvenich
Some book reviews are available now in a news reader at news.baseBeans.com in the MVC Programmers news group. There are 35 training reviews, and some mention the book. HTH, Vic Andy Noble wrote: Given the very limited potential readership, I don't think $70 is too expensive... I've

Re: Struts/FOP

2001-12-13 Thread Vic Cekvenich
Cocoon and Struts are different. Since I wanted to avoid server side production load issues (of lots of XSLT) I emit XML from JSP to browses. And the browses then do the XSLT FOP-like for me. This way salability is flat, as more users use it, each user uses its own XSLT on client side. (For

Re: JSTL (standard taglib) Early Access 3

2001-12-13 Thread Vic Cekvenich
We should not do DB access in JSP (or anything much in JSP). Clear MVC is more productive. Vic Shawn Bayern wrote: Once again, I'm happy to announce a new Early Access release of the JSP Standard Tag Library (JSTL). Early Access Release 3 introduces tags for database access and

Struts book on Amazon ...

2001-12-18 Thread Vic Cekvenich
http://www.amazon.com/exec/obidos/ASIN/0971661901/qid=1008701555/sr=1-3/ref=sr_1_0_3/102-5929920-5059309 (easier to order) but the publisher will ship it much sooner and they should charge $10 less from: http://www.atlasbooks.com/marktplc/00670.htm but ordering from them could be a challenge,

Re: Struts book on Amazon ...

2001-12-18 Thread Vic Cekvenich
and a similar shipping date.. it's starting to make you look pretty bad. I really hope that this book meets my expectations.. I am glad to hear that the editorial review from Amazon sounds pretty close to what I have been expecting. Nathan Anderson -Original Message- From: Vic Cekvenich

Re: accessing EJB components from a Struts application?

2001-12-18 Thread Vic Cekvenich
Why are you needing to use EJB? Presumably something distributed, and you do no want to use SOAP. If you use EJB for persistence, I would implement Astral Clones Design Pattern like this: Extend FormBean, and add a property of RowSet (a JDBC interfaces implemented by CachedRowSet). Add geters

  1   2   3   4   >