RE: Encode/Encrypt url parameters?

2004-02-25 Thread Todd G. Nist
Jacob, I would be interested in looking at your solution for this problem. Thanks in advance. Regards, Todd -Original Message- From: Hookom, Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 12:00 PM To: Struts Users Mailing List Subject: RE: Encode/Encrypt url paramet

RE: Help on ApplicationResources

2004-03-04 Thread Todd G. Nist
Kamakshya, There is an implementation of this available at http://sourceforge.net/project/showfiles.php?group_id=49385. Go to the above site and about halfway down the page you will find a project category called: MessageResources Impls Under this you will find a package called:

RE: [OT] eclipse and jsp editing

2003-12-31 Thread Todd G. Nist
MyEclipse works well. It dose cost $30.00, but seems well worth it based on the features and ease of use and no I am not associated with the company. For more information look at: http://www.myeclipseide.com Hope that helps. Regards, Todd -Original Message- From: Ashish Kulkarni [mai

RE: hibernate-struts example -- where is it?

2004-02-12 Thread Todd G. Nist
Daniel, It appears to be out there at the following url, about half way down the page. I would also look at the "appfuse" project on the same page, it provides a very good example. http://sourceforge.net/project/showfiles.php?group_id=49385 There are also several other examples out ther

RE: hide section of form

2003-10-24 Thread Todd G. Nist
Jan, Set the attribute display to "none" on the DIV and then set it to "block". By setting it to "none" no space will be allocated for the div. Regards, Todd G. Nist -Original Message- From: Jan Kester [mailto:[EMAIL PROTECTED] Sent: Friday, October 24,

RE: Struts and Jetspeed

2003-07-31 Thread Todd G. Nist
Have you looked at http://www.liferay.com/products/index.jsp which is built open source technologies like Hibernate, Lucene, and Struts. -Original Message- From: BaTien Duong [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 12:13 PM To: Struts Users Mailing List Subject: Re: Struts

RE: Urgent: Editor for JSP in Eclipse

2003-08-01 Thread Todd G. Nist
. HTH. Regards, Todd G. Nist -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:50 AM To: Struts Users Mailing List Subject: RE: Urgent: Editor for JSP in Eclipse Hi, i was looking at http://black-sun.sourceforge.net/ which is the editor

RE: Converting a ResultSet to a List of POJOs

2003-09-06 Thread Todd G. Nist
reflection and the meta data of the resultSet in conjunction with BeanUtils and PropertyUtils to invoke the setters on the POJO. Seems to work fairly well. Regards, Todd G. Nist /** * Populate target bean with the first record from a ResultSet. * * @param resultSet The ResultSet whose

RE: App Resources bundle being read in on Servlet startup?

2002-07-04 Thread Todd G. Nist
Hello Carl, I believe the classes you are looking for are the following: org.apache.struts.util.MessageResourcesFactory org.apache.struts.util.PropertyMessageResources HTH. Regards, Todd G. Nist -Original Message- From: Schmidt, Carl [mailto:[EMAIL PROTECTED]] Sent

RE: Limiting No of Records per page/view

2002-08-03 Thread Todd G. Nist
10 items of the then you would do something like this: Hope that helps. Regards, Todd G. Nist -Original Message- From: Vijay Kumar [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 03, 2002 4:15 AM To: [EMAIL PROTECTED] Subject: Limiting No of Records per page/view Hi, I

RE: Model 2X

2002-08-09 Thread Todd G. Nist
Darren, Have you looked at "Struts for transforming XML with XSL (stxx)" project by Jeff Pennal, Openroad Communications. May help in what you are trying to achieve. http://www.openroad.ca/opencode/stxx/index.html Regards, Todd G. Nist -Original Message- From: Darren Hi

Sorry - test message PLEASE DELETE

2002-08-16 Thread Todd G. Nist
test message -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Help - xml to pdf using struts

2002-08-16 Thread Todd G. Nist
RE: Help - xml to pdf using strutsMike, Did you set the content type to "application/pdf" and then return "null" from you action once you successfully completed the transformation? That is what we do and it appears to work fine. Regards, Todd G. Nist try { // FO/Tran

RE: Servlet Validation

2002-08-19 Thread Todd G. Nist
David, Look at using a filter or the better yet the SecurityFilter project by Max Cooper which mimics container managed security. SecurityFilter information can be found at: http://securityfilter.sourceforge.net Hope that helps. Regards, Todd G. Nist -Original Message- From: David

RE: IFrame Newbie Looking for IFrame Advice

2002-08-19 Thread Todd G. Nist
is to simply create a iframe 0px by 0px and then use it for the RPC. Let me know if you have any questions. Regards, Todd G. Nist -Original Message- From: Molitor, Stephen [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 7:08 PM To: 'Struts Users Mailing List' Subject

RE: Help - xml to pdf using struts

2002-08-21 Thread Todd G. Nist
. Regards, Todd G. Nist <--- Servlet > import javax.servlet.*; import javax.servlet.http.*; import java.io.ByteArrayOutputStream; import java.io.BufferedReader; import java.io.File; import java.io.IOException; import org.apache.avalon.framework.logger.ConsoleLogger;

RE: Container-managed authentication not possible

2002-08-21 Thread Todd G. Nist
t and deployment advantages." See the Home Page http://securityfilter.sourceforge.net at for more details. Regards, Todd G. Nist -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 2:48 PM To: Struts Users Mailing List Subject: RE:

RE: Cannot Retrieve Mapping for Action

2002-08-29 Thread Todd G. Nist
Chandra, Remove the .do from you action attribute in the form definition: <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> . . . HTH. Regards, Todd -Original Message- From: Chandrasekar [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 12:36 AM To: Struts Users

RE: alternating row colors in the iterate tag.

2002-09-10 Thread Todd G. Nist
; } /* Odd row */ td.row1 { background-color: "#cc"; } ... your text or data here Hope this helps. Regards, Todd G. Nist -Original Message- From: Nani Jon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 3:32 PM To: Struts Users Mailing List S

RE: Example for Struts in Cocoon

2003-04-02 Thread Todd G. Nist
Kavitha, There was a post awhile back by Don Brown about a prototype of a Struts 1.1 plugin that integrates Cocoon into the Struts framework he developed. More information, including how and why, and a demo, visit: http://www.twdata.org/struts Hope this helps. Regards, Todd G. Nist

RE: Struts with WAP+HTML projects

2002-04-19 Thread Todd G. Nist
HTH. Regards, Todd G. Nist -Original Message- From: Abhishek Srivastava [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 11:18 AM To: [EMAIL PROTECTED] Subject: Struts with WAP+HTML projects Hello All, I am working on a project which is for a portal which serves to HTML and WAP

RE: WebPim

2002-06-04 Thread Todd G. Nist
Claudio, The password is "cc". -Original Message- From: Struts Newsgroup [mailto:@[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 7:40 AM To: [EMAIL PROTECTED] Subject: WebPim Subject: WebPim From: "Claudio Parnenzini" <[EMAIL PROTECTED]> === Hi all, I have downloaded the WebPim Samp

RE: related to: Re: #2 - Use DispatchAction to organize related operations

2002-06-04 Thread Todd G. Nist
I have to ask a question; Why not use a filter to handle this? The filter will be called before any components of struts are invoked. It has access to the request, response and session and can handle forwarding the request to the login page or error page if they are not currently logged in. If

RE: Design Help

2001-12-13 Thread Todd G. Nist
getDelgate() { return this.delgate; } Then in the view how do I reference the values in the DAO? Is it just something like: Where dao is the Data access object, and value is a getter in that object. Is this the correct flow or am I missing something? Thanks in advance. Regard

Iterator - determining that this is the first time through

2001-12-20 Thread Todd G. Nist
first iteration? Is there away to test to see if this is the first Iteration and if so take some action? Thanks in advance Todd G. Nist -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

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

2001-12-20 Thread Todd G. Nist
Hello, Is there a way when iterating through a collection to determine if this is the first time through the iteration when using the logic:iterator tag? Thanks in advance, Todd G. Nist -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mail

OT: onblur Javascript validation

2002-01-31 Thread Todd G. Nist
field.focus(); return false; } return true; } Date before MM/DD/: Date After MM/DD/: Any ideas or suggestions are appreciated. Regards, Todd G. Nist Email: [EMAIL PROTECTED]

Boost Struts with XSLT and XML - JavaWorld.com

2002-02-02 Thread Todd G. Nist
.html? Todd G. Nist -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

MessageResources - Design question - loading resources from a DB by creating you own PropertyMessageResourcesFactory

2002-02-05 Thread Todd G. Nist
s createResources(String config) { System.out.println("======="); System.out.println("Config: " + config); System.out.println("==="); return new BasePropertyMessageResources(this, config, this.returnNull); } } So what am I missing here? Any ideas or suggestions are appreciated. Thanks in advance. Regards, Todd G. Nist Email: [EMAIL PROTECTED]

PropertyMessageResourcesFactory Question

2002-02-06 Thread Todd G. Nist
ch is created from within the factory, BasePropertyMessageResources.  Below is the initApplication() method which we have added to the extended ActionServlet to invoke the method "dbLoad()" in the BasePropertyMessageResources class. Thanks in advance. Todd G. Nist Email:   [

RE: PropertyMessageResourcesFactory Question

2002-02-06 Thread Todd G. Nist
ick change to the database, the default getMessage() works fine. What a silly mistake. Sorry for the wasted bandwidth but thought someone else may find this useful in the future. Again, thanks Erich for the assistance. Regards, Todd G. Nist -Original Message- From: Erich Meier ---

RE: Poolman query

2002-02-08 Thread Todd G. Nist
Hello Jerome, Here is how we use poolman to obtain a connection to the datasource. Hope this helps. Regards, Todd G. Nist // Code from www.husted.com scaffold project import java.sql.Connection; import java.sql.SQLException; import javax.sql.DataSource; import com.codestudio.sql.PoolMan

RE: how to use an images for submit, cancel button etc

2002-02-22 Thread Todd G. Nist
You could try something like the below: for cancel you could do this: for the others you would need to do something like: Regards, Todd G. Nist -Original Message- From: KM [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 10:27 AM To: Struts Users

RE: Using 2.3 Filters and Struts

2002-03-23 Thread Todd G. Nist
----Original Message- From: Todd G. Nist [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 7:09 AM To: 'Struts Users Mailing List' Subject: RE: Using 2.3 Filters and Struts In your filter, you can do something like the below. We have implemented something similar to this but have