Re: Re: Good Struts-tiles example?

2003-06-18 Thread tnist
In addition to the below, I have found the following resource, Tiles 101/201, by Patrick Peak to be very helpful: http://www.theserverside.com/resources/articles/Tiles101/article.html Regards, Todd G. Nist > > From: "Alen Ribic" <[EMAIL PROTECTED]> > Date: 2003/06/18 Wed AM 07:37:18 EDT

Re: RE: question

2003-03-05 Thread tnist
Koby, You may want to email the author, James Mitchell. You can find some information about the package at: http://jakarta.apache.org/struts/news/news_2002_q4.html Along with a link to his email, [EMAIL PROTECTED] If the above package is overkill, you can create your own class which ex

Re: question

2003-03-05 Thread tnist
Koby, There is a package out there developed by James Mitchell called DBMessageResurces or something like thate. I believe that it use to be able to be downloaded from www.open-tools.org/struts-atlanta/downloads. Todd > > From: "Koby Dabush" <[EMAIL PROTECTED]> > Date: 2003/03/05 Wed AM 08:01

Re: RE: Struts and Portlets

2003-02-25 Thread tnist
My fault, I guess I needed a couple more cups of coffee before typing up my response. Liferay has implemented an enterprise portal, which uses Struts 1.b2. As for their adherence to the fore mentioned spec, JSR-168, I am not sure. Sorry for the misinformation. Todd > > From: "Mitchell Morri

Re: Struts and Portlets

2003-02-25 Thread tnist
You could take a look at www.liferay.com, there latest implementation (1.8) follows the Porlet Spec, JSR-168, and is using Struts 1.1b2. Regards, Todd G. Nist > > From: [EMAIL PROTECTED] > Date: 2003/02/25 Tue AM 01:52:38 EST > To: [EMAIL PROTECTED] > Subject: Struts and Portlets > > Hi, > >

Re: Struts Console

2003-02-21 Thread tnist
Edgar, You can currently use Struts Console with Eclipse, see the below link for configuration information. http://www.jamesholmes.com/struts/console/help.html#eclipse Regards, Todd > > From: Edgar Dollin <[EMAIL PROTECTED]> > Date: 2003/02/21 Fri AM 08:12:58 EST > To: "'[EMAIL PROTECTED]'" <[

Re: Re: AW: Refresh on MSIE, PLEASE HELP!! NOT SOLVED

2003-01-15 Thread tnist
Kiuma, As per Microsoft Support site, you will need to place another set of meta tags after the closing tag. This has to do with the way the headers are evaluated and the caching algorithm utilized by IE. So your ending code would look something like this. --- Text in the Browser Wind

Re: Runtime dynamic form/jsp from XML

2002-11-21 Thread tnist
Andrew, You may want to have a look at STXX. It is available at http://www.openroad.ca/opencode/stxx. Here is a generial description from the site: Struts for transforming XML with XSL (stxx) is an extension of the struts framework to support XML and XSL without changing the functionality of

Re: [STRUTS] Form error handling

2002-09-17 Thread tnist
Kiuma, You can use one of the following: tag: If placed at the top of a page, this will cause the errors to be displayed there. You should also ensure that errors.header and errors.footer messages are defined in your application resources file. This will help in the formatti

Re: Including file from different server

2002-09-12 Thread tnist
Khan, If I understand the question, you can use the JSTL and the import tag. http://www.somesite.com/someresource.html";> http://www.somesite.com/someresource.gif";> ftp://ftp.somesite.com/someresource";> The above would cause the resource to be inserted into you page where refer

Re: Re: Reference Struts HTML tags from within a custom tag? *Please help!*

2002-09-12 Thread tnist
John, If you want to create your own tag and still leverage the existing BaseTag, HtmlTag or anyone of the strut tags, you can create a reference to them by doing the following in you tag: public class YourTag extends TagSupport { protected org.apache.struts.tag.ib.html.BaseTag baseTag =

Re: RE: Security and Struts

2002-09-10 Thread tnist
Darren, Have you looked at the SecurityFilter project by Max Cooper? Not sure what all you need to achieve but this project provides a fairly extensible Security module. You can find it at: http://securityfilter.sourceforge.net/ Regards, Todd G. Nist > > From: Darren Hill <[EMAIL PROTECTED

RE: logic:iterator - how to determine if this is the first time t hrough an iteration

2001-12-20 Thread tnist
Viplava, I would take a look at the RowTag available at http://husted.com/struts/resources/rowtag.zip. Works great and requires no scriplets, which is what you will have to resort to otherwise. Perhaps something like this, but again, I would strongly encourage the RowTag. <%! String[] colors =

RE: logic:iterator - how to determine if this is the first time through an iteration

2001-12-20 Thread tnist
Duh, I did not realize there as an indexId property on the logic:iterator tag which indicates the current iteration. By using this in conjunction with the logic:equal tag it is quite easy.

RE: Iterator - determining that this is the first time through

2001-12-20 Thread tnist
Duh, I did not realize there as an indexId property on the logic:iterator tag which indicates the current iteration. By using this in conjunction with the logic:equal tag it is quite easy.

CachedRowSet and toCollection() method

2001-12-05 Thread tnist
Hello, I am using the CachedRowSet object from sun for our data access and manipulation within Struts. There is a method on it, "toCollection()" which according to the documentation should return a collection of the rows. My code is generating a valid result set but when I issue the "toCollecti

RE: HOW TO: set up a pager with struts

2001-11-14 Thread tnist
Chuck, May I also get a copy of this example? Thanks, -Original Message- From: Chuck Stern [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 8:13 AM To: Struts Users Mailing List; 'Oleg V Alexeev' Subject: RE: HOW TO: set up a pager with struts If possible can you post

RE: Exception: Cannot retrieve mapping for action

2001-11-02 Thread tnist
Thank you, I realize that the *.do will work, I had it that way initially. However, I was reviewing the "Artimus" example by Ted Husted and liked how he had the URL mapping setup and the struts-conf.xml file so I thought I would give it a try. But so far, it has not worked at all in my applicatio

Exception: Cannot retrieve mapping for action

2001-11-02 Thread tnist
Hello, I have the following Strut-Config file. My web.xml maps the action to /do/* like below. action /do/* My pages are all located under the WEB-INF directory to prevent prying ey

Newbe - problem with Struts-Config.xml

2001-11-02 Thread tnist
Hello, I am relatively new to Struts and am encountering a problem with the struts-config.xml file. I have set up a global-forwards like below: Then I set up an action like below: Then I wrote the following index.jsp page: <%@ page language="java" %> <%@ taglib uri="/tags/str

HTML taglib - dynamic sizing and formatting of elements

2001-11-01 Thread tnist
Hello, I have a question with regards to the html tag library. We would like to have the ability to set the size, format and other attributes for the html tags dynamically. The attributes would be set in the action form by the action class as it queries the database and would use the meta data

RE: How to handle a PopUp Form from another Form?

2001-10-24 Thread tnist
Dan, There is an example of called "Simulating Modal Dialog Windows" available at the below URL: http://developer.netscape.com/viewsource/goodman_modal/goodman_modal.html HTH, Todd G. Nist -Original Message- From: Dan Hodge [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 5:

RE: Please - a little help with "NoSuchMethodError" with Tomcat, Struts and Apache

2001-10-03 Thread tnist
Rick, I took your advice and started with a clean install of Tomcat 3.2.3. I then installed struts and placed the struts*.war file in the tomcat webapps dir. I then tested it in standalone and all worked fine. So then I added back in the mod_jk and ajp13 connection to Apache and low and behold

RE: Please - a little help with "NoSuchMethodError" with Tomcat, Struts and Apache

2001-10-03 Thread tnist
Rick, I placed them there after receiving the NoSuchMethodError thinking that perhaps they would make a difference, but they did not. Thanks, Todd -Original Message- From: Rick Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 9:00 AM To: [EMAIL PROTECTED]; Todd Nist S

RE: Please - a little help with "NoSuchMethodError" with Tomcat, Struts and Apache

2001-10-03 Thread tnist
Rick, I have removed all the sub directories of the "work" directory under Tomcat and this has made no difference. I have set the jasper log to "debug" to try to see if it would shed any light on what was happening. I did the following test: 1. First I hit the standard examples provide

Unable to get Struts working with Tomcat and Apache - NoSuchMethodError (Day 3)

2001-10-03 Thread tnist
Hello, I apologize for this duplicate post and its length, but I have not received much input on my first post, so I am trying again with some additional information. My environment is as follow: Struts 1.0 Tomcat 3.2.3 Apache 1.3.14 Windows 2000 mod_jk i

RE: Please - a little help with "NoSuchMethodError" with Tomcat, Stru ts and Apache

2001-10-02 Thread tnist
John, I tried as you suggested, but to no avail. The same error is still being produced. Any other ideas as to where to look? Regards, Todd -Original Message- From: John Raley [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2001 4:51 PM To: [EMAIL PROTECTED] Subject: Re: Please

Please - a little help with "NoSuchMethodError" with Tomcat, Struts and Apache

2001-10-02 Thread tnist
I followed the instructions in the installations (tomcat-apache.conf). However, when I try to run an example like struts-example, I am encountering the below error, NoSuchMethodError. I have included the JkMount /*.do ajp12 in my mod_jk.conf-prod file referenced by Apache, and it appears correct.

Error: 500 - Getting examples to work with Tomcat and Apache

2001-10-02 Thread tnist
Hello, I followed the instructions in the installations (tomcat-apache.conf). But when trying to run an example like struts-example, I am encountering the below error, 500. I have included the JkMount /*.do ajp12 in my mod_jk.conf-prod file referenced by Apache, and it appears correct. I have r

RE: Configuring Struts with Tomcat and Apache

2001-10-02 Thread tnist
Martin, Thank you for the response. I have included the JkMount /*.do ajp12 and it still has not alleviated the problems. I no longer think that it is related directly to the mod_jk now. I have noticed the following in the jasper.log file: 2001-09-09 11:39:01 - Scratch dir for the JSP engine

Configuring Struts with Tomcat and Apache

2001-10-01 Thread tnist
I am a new-bie to Struts and have just installed 1.0 with Tomcat 3.2.2 and Apache. I followed the instructions in the installations (tomcat-apache.conf). But when trying to run an example like struts-example, I am encountering the below error. In the documentation there is a description for tomca

RE: Struts Development : tep by step.

2001-03-22 Thread tnist
Title: Struts Development : tep by step. The url for Bluestone is below:   HP Bluestone is pleased to offer you another free download: Struts Trail Map www.bluestone.com/download. Regards,Todd -Original Message-From: Nanduri, Amarnath [mailto:[EMAIL PROTECTED]]Sent