Re: Links/Articles/Tutorials on DynaValidatorForm ?

2003-12-01 Thread Andrew Kuzmin
http://javaboutique.internet.com/tutorials/Struts11Val/ http://prdownloads.sourceforge.net/struts/The-Validator-Framework.pdf?downlo ad -- Andrew Kuzmin www.java201.com - Original Message - From: Baljinder Singh [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent

Re: Design Patterns in Struts

2003-09-23 Thread Andrew Kuzmin
, Prasenjit Narwade. Struts in Action - Appendix A Design patterns. http://www.husted.com/struts/book.html -- Andrew Kuzmin http://www.java201.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Exception handling in struts

2003-09-23 Thread Andrew Kuzmin
override global exception handlers by defining a handler inside an action definition. A common use of ExceptionHandlers is to configure one for java.lang.Exception so it's called for any exception and log the exception to some data store. /snip -- Andrew Kuzmin http://www.java201.com - Original

Re: How to build an application that is organized as BC4JToyStore example from scratch ?

2003-09-23 Thread Andrew Kuzmin
Maybe this: http://otn.oracle.com/sample_code/products/jdev/bc4jtoystore/readme.html ? -- Andrew Kuzmin http://www.java201.com - Original Message - From: EL AKARI Mehdi [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 1:07 PM Subject

Re: Data Source in struts-config.xml

2003-09-19 Thread Andrew Kuzmin
from name clashes. /snip -- Andrew Kuzmin http://www.java201.com - Original Message - From: virupaksha [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, September 19, 2003 6:26 AM Subject: Data Source in struts-config.xml Dear All, I need to connect to two

Re: Multipage JDBC result

2003-09-17 Thread Andrew Kuzmin
IMHO, this is an excellent article on TheServerSide.com Data List Handler: A Pattern for Large Search Result Sets http://www.theserverside.com/resources/article.jsp?l=DataListHandler -- Andrew Kuzmin http://www.java201.com - Original Message - From: Michael Muller [EMAIL PROTECTED

Re: Sample code for Pagination.

2003-09-17 Thread Andrew Kuzmin
Where can i get the sample taglib for pagination tag. http://edhill.its.uiowa.edu/display/ http://jsptags.com/tags/navigation/pager/ -- Andrew Kuzmin http://www.java201.com Thanks and Regards Deepak - To unsubscribe, e

Re: Multiple message resource files

2003-09-16 Thread Andrew Kuzmin
Hi, struts-config.xml: message-resources parameter=ApplicationResources null=false key=alternate/ message-resources parameter=MyWebAppResources null=false/ jsp: html:errors bundle=alternate/ -- Andrew Kuzmin http://www.java201.com - Original Message - From: [EMAIL

Re: Multipage JDBC result

2003-09-16 Thread Andrew Kuzmin
Hi, see this link http://jakarta.apache.org/struts/faqs/newbie.html#pager -- Andrew Kuzmin http://www.java201.com - Original Message - From: Jonathan Hawkins [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 3:39 PM Subject

Re: getServlet?

2003-09-16 Thread Andrew Kuzmin
getServlet().getServletConfig() ? -- Andrew Kuzmin http://www.java201.com - Original Message - From: Andy Kriger [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 5:04 PM Subject: getServlet? The ServletContext.getServlet() method has

Re: Getting Messages in an Action?

2003-09-16 Thread Andrew Kuzmin
MessageResources resources = getResources(request); java.util.Locale locale = getLocale(request); String yourString = resources.getMessage(locale, yourString); -- Andrew Kuzmin http://www.java201.com - Original Message - From: Carl-Eric Menzel [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: Getting Messages in an Action?

2003-09-16 Thread Andrew Kuzmin
, HttpServletRequest request, HttpServletResponse response) /snip MessageResources resources = (MessageResources) request.getAttribute(Globals.MESSAGES_KEY); -- Andrew Kuzmin http://www.java201.com - Original Message - From: Adolfo Miguelez [EMAIL PROTECTED

Re: Struts with a DHTML menu

2003-09-11 Thread Andrew Kuzmin
Hi, Maybe this http://sourceforge.net/projects/struts-menu/ ? -- Andrew Kuzmin http://www.java201.com - Original Message - From: Mahbub ul Huq Bin Kabir [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 11, 2003 7:38 AM Subject: Struts with a DHTML menu Hi, I'm

Re: navigable search results

2003-09-09 Thread Andrew Kuzmin
Hi, see these links http://edhill.its.uiowa.edu/display/ http://jsptags.com/tags/navigation/pager/ http://www.mail-archive.com/[EMAIL PROTECTED]/msg43661.html -- Andrew http://www.java201.com - Original Message - From: Andy Richards [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: Information about visitors using my portal

2003-09-03 Thread Andrew Kuzmin
hi, This should help: http://orionsupport.com/archive/clickstream/index.html -- Andrew Kuzmin http://www.java201.com/ - Original Message - From: Stefan Trcko [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 12:54 PM Subject

Re: message resource error/Plz Urgent

2003-08-29 Thread Andrew Kuzmin
hi, this should help: struts-config.xml: add message-resources parameter=resources.application/ and place file application.properties to /WEB-INF/classes/resources dir. -- andrew www.java201.com - Original Message - From: mahavir [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: Obtaining valid ModuleConfig.

2003-02-05 Thread Andrew Kuzmin
Hi ! ModuleConfig config = org.apache.struts.util.RequestUtils.getModuleConfig(pageContext); // since 1.1b3 -- Andrew Kuzmin - Original Message - From: Zheng, Gang [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 7:48 PM Subject: RE: Obtaining valid ModuleConfig

Re: Does anyone have the Java Pet Store rewritten with Struts

2003-01-28 Thread Andrew Kuzmin
http://xpetstore.sourceforge.net/ -- Andrew Kuzmin [EMAIL PROTECTED] ICQ 76635687 - Original Message - From: Steven Banks [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Steven Banks [EMAIL PROTECTED] Sent: Monday, January 27, 2003 8:10 PM Subject: Does anyone have the Java Pet Store

Re: Modules and Tiles: Problem

2002-12-10 Thread Andrew Kuzmin
to enable logging for Tiles) ? Cedric I didn't see any errors in the Tomcat console. I enabled logging for Tiles. I just have downloaded new version (jakarta-struts-20021209) and I don't have this problem. Previous version was jakarta-struts-20021114. Andrew Kuzmin wrote: I have two modules