Re: special character

2002-11-12 Thread Erich Meier
it gets converted, but when I puts bean:write it prints the value as it is. (in view source it looks like amp;euro; ) please help. Use the filter attribute for that: bean:write name=cur property=value filter=false / This should work. Erich -- Dr. Erich Meier, Consultant method park Software AG

Re: Incompatibilities with new fileupload package in nightly buil d

2002-08-02 Thread Erich Meier
This turned out to be a bug in the Commons FileUpload implementation, which the new Struts fileupload implementation is based on. The bug has been fixed, and will be available in the Struts 8/1 nightly build. I'll check it out and test it. I guess, I will also need the new

Re: Incompatibilities with new fileupload package in nightly buil d

2002-08-01 Thread Erich Meier
On Thu, Aug 01, 2002 at 12:27:17AM -0700, Martin Cooper wrote: -Original Message- From: Erich Meier [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 2:01 AM To: Struts Users Mailing List Subject: Re: Incompatibilities with new fileupload package in nightly buil d

Re: Incompatibilities with new fileupload package in nightly buil d

2002-07-31 Thread Erich Meier
First, the new fileuploader returns the whole file path in getFileName(). [...] This is a bug, and has been fixed in the 20020731 nightly build. Thanks a lot! I'll check it out when it is available. Second, if I submit an upload page without content being uploaded (user did not

Re: ActionErrors in ActionForm and JSP not showing up...

2002-07-31 Thread Erich Meier
:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Dr. Erich Meier

Re: ActionErrors in ActionForm and JSP not showing up...

2002-07-30 Thread Erich Meier
: mailto:[EMAIL PROTECTED] -- Dr. Erich Meier, Software Process Improvement method park Software AG, Wetterkreuz 19a, 91058 Erlangen, Germany phone: +49-9131-97206-316 mailto:[EMAIL PROTECTED] fax: +49-9131-97206-200 http://www.methodpark.de/ -- To unsubscribe, e-mail: mailto:[EMAIL

Incompatibilities with new fileupload package in nightly build

2002-07-29 Thread Erich Meier
-- Dr. Erich Meier, Software Process Improvement method park Software AG, Wetterkreuz 19a, 91058 Erlangen, Germany Tel. +49-9131-97206-316 mailto:[EMAIL PROTECTED] Fax. +49-9131-97206-200 http://www.methodpark.de/ -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

DefineTag broken in nightly build?

2002-07-25 Thread Erich Meier
in the current nightly or is this a version problem with the tomcat 4.0.4 servletapi? TIA, Erich -- Dr. Erich Meier, Software Process Improvement method park Software AG, Wetterkreuz 19a, 91058 Erlangen, Germany Tel. +49-9131-97206-316 mailto:[EMAIL PROTECTED] Fax. +49-9131-97206-200 http

Property exception after upgrading to JDK 1.4

2002-07-08 Thread Erich Meier
) at org.apache.struts.taglib.bean.WriteTag.doStartTag(WriteTag.java:179) Note: not all bean:write tags show this behaviour, only some of them. Did anyone else also run into this problem? Has anyone solved it? How? Thanks in advance, Erich -- Dr. Erich Meier, Software Process Improvement method park

html taglib usage slooow

2002-05-21 Thread Erich Meier
to speed this up? Thanks in advance, Erich -- Dr. Erich Meier, Software Process Improvement method park, Wetterkreuz 19a, 91058 Erlangen, Germany Tel. +49-9131-97206-316 mailto:[EMAIL PROTECTED] Fax. +49-9131-97206-200 http://www.methodpark.de/ -- To unsubscribe, e-mail: mailto:[EMAIL

Re: html taglib usage slooow

2002-05-21 Thread Erich Meier
- From: Erich Meier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 11:57 AM Hi, after adding a few more fields to a form (ok, after adding 20 more fields...), my app became veeery slooow. It takes over ten seconds to build and render the form on a decently sized server machine

Re: html taglib usage slooow

2002-05-21 Thread Erich Meier
On Tue, May 21, 2002 at 12:24:20PM -0400, Galbreath, Mark wrote: What app server are you using? Tomcat 4.0 (see first email). Erich -Original Message- From: Erich Meier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 12:11 PM To: Struts Users Mailing List Subject: Re: html

Re: html taglib usage slooow

2002-05-21 Thread Erich Meier
Hi, after adding a few more fields to a form (ok, after adding 20 more fields...), my app became veeery slooow. It takes over ten seconds to build and render the form on a decently sized server machine. I am using an old nightly build of struts (20010910) and tomcat 4.0. Is

Re: class cast exception

2002-05-16 Thread Erich Meier
... **) Is it worth it? Regards, Erich -- Dr. Erich Meier, Software Process Improvement method park, Wetterkreuz 19a, 91058 Erlangen, Germany Tel. +49-9131-97206-316 mailto:[EMAIL PROTECTED] Fax. +49-9131-97206-200 http://www.methodpark.de/ -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Problem: multiple browsers and session state

2002-02-06 Thread Erich Meier
Hi! Are there any best practices known, how to deal with a user accessing a struts application with multiple browsers at the same time? Because cookies are shared between browser instances, these browsers run within the same session - this is also true when cookies are blocked and URL session

Re: Problem: multiple browsers and session state

2002-02-06 Thread Erich Meier
On Wed, Feb 06, 2002 at 03:02:15PM -, simon wrote: This is application-independant, in that it's not just struts this affects Correct. One solution is to look for potential collisions and implement a lease/lock strategy on the resources that my collide (similar to std. file/resource

Re: no cache = false

2001-12-18 Thread Erich Meier
for new page every time (even when the browser has set Never check for new page) You have to use GET in your forms instead of the default POST action: html:form action=GET Your URLs will get lengthy, though. HTH, Erich -- Dr. Erich Meier, Software Process Improvement method park, Wetterkreuz

JSP expressions inside custom tags

2001-06-08 Thread Erich Meier
Hi! I am evaluating struts for a new project. One problem I wasn't able to solve was the integration of JSP expressions inside the attributes of custom tags. My code looks like this: logic:iterate id=pelement name=MyBean property=pelements % String name = ((PElement)pelement).getName(); %