Re: [OT] Re: WeakReference

2004-12-01 Thread Dakota Jack
Thanks for the response, Paul. Here's what I am up to. I can get an object from the weak reference created from a strong reference. What I want to do, and am not sure if I can (I am starting to think I cannot), is to grab the object with the weak reference and make changes which will happen also

[OT] Re: WeakReference

2004-12-01 Thread Paul Speed
A WeakReference is just a way of holding a reference to an object that will not keep it from being garbage collected (a very useful thing). There are also ways that you can track when it has been garbage collected. Once it has been garbage collected, it's gone though. All you have is any data

[Apache Struts Wiki] Updated: StrutsDocTiles

2004-12-01 Thread dev
Date: 2004-12-01T22:05:37 Editor: BillKeese <[EMAIL PROTECTED]> Wiki: Apache Struts Wiki Page: StrutsDocTiles URL: http://wiki.apache.org/struts/StrutsDocTiles no comment Change Log: -- @@ -1,9 +1,9 @@

[Apache Struts Wiki] New: StrutsDocTiles

2004-12-01 Thread dev
Date: 2004-12-01T21:41:18 Editor: BillKeese <[EMAIL PROTECTED]> Wiki: Apache Struts Wiki Page: StrutsDocTiles URL: http://wiki.apache.org/struts/StrutsDocTiles no comment New Page: ##language:en == Tips on Tiles == Here are some tips on using tiles. === Nested tiles === P

[Apache Struts Wiki] Updated: StrutsDocComments

2004-12-01 Thread dev
Date: 2004-12-01T20:58:31 Editor: BillKeese <[EMAIL PROTECTED]> Wiki: Apache Struts Wiki Page: StrutsDocComments URL: http://wiki.apache.org/struts/StrutsDocComments Add page about tiles Change Log: --

DO NOT REPLY [Bug 32485] - Cannot use rebuilt struts-blank example; message-resource param in struts-config.xml is wrong.

2004-12-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32485] - Cannot use rebuilt struts-blank example; message-resource param in struts-config.xml is wrong.

2004-12-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32485] - Cannot use rebuilt struts-blank example; message-resource param in struts-config.xml is wrong.

2004-12-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32484] - Cannot use rebuilt struts-blank example; doesn't work because of bad message-resource parameter.

2004-12-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32485] New: - Cannot use rebuilt struts-blank example; message-resource param in struts-config.xml is wrong.

2004-12-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32484] New: - Cannot use rebuilt struts-blank example; doesn't work because of bad message-resource parameter.

2004-12-01 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: [OT] SVN / Eclipse / Subclipse error [resolved]

2004-12-01 Thread James Mitchell
Matt, thanks for the link. (I'm using Eclipse 3.0.1 with Subclipse 0.9.22 which was installed via Software Update) As I read over that page and tried various things, nothing seemed to work. I did try the link in IE, and yes, the accept certificate popped up, I did what the page suggested, but i

WeakReference

2004-12-01 Thread Dakota Jack
Working here on a "new" paradigm, sort of, I think. Apparently you can track what has happened to a strong reference with a weak reference but you cannot manipulate the object referred to by the strong reference by manipulating the weak reference. Is that right? Seems odd to me. Jack -- "Y

Re: Struts-BSF, Struts-Scripting [was Re: Proposal: Javascript-to-Java object conversions]]]

2004-12-01 Thread Frank W. Zammetti
I don't have any resources to offer as all the apps I've done along these lines have been custom jobs. I have a rather substantial library that I've built up over the years or client-side functions, widgets and sich, as probably anyone who's done apps like this has, but none of it is published

broken link on jakarta site

2004-12-01 Thread Matt Bathje
Hi guys Not sure where to send this, but I figured one of you would. On the Jakarta FAQs page, there is a link to the Struts Kickstart FAQ that is broken. The broken link is on this page: http://jakarta.apache.org/site/faqs.html under the FAQs header. Matt ---

Re: Struts API Bean (was Spring dreaming)

2004-12-01 Thread Levieux Cedric
+1 for this - Original Message - From: "Don Brown" <[EMAIL PROTECTED]> To: "Struts Developers List" <[EMAIL PROTECTED]> Sent: Wednesday, December 01, 2004 1:00 AM Subject: Struts API Bean (was Spring dreaming) > On the topic of a Struts API bean, I completely agree. We should have > o

Re: Struts API Bean (was Spring dreaming)

2004-12-01 Thread Ted Husted
The public API bean (where the "rubber meets the road") could *not* be stored in application scope, since some of the Struts resources are request and session based. The original idea was the ViewContext (fka ConfigHelper) would be created on a per-request basis (like a Velocity tool). The View

Re: Experiences with MockObjects for Servlet testing?

2004-12-01 Thread Gareth Webbley
Hi Joe, Sorry I don't know of any better documentation. The way I understand things is that mockobjects allows you to check that the code you are testing requests attributes the exact number of times you expect. So for example if you are testing some code which should call getAttribute on th