Re: [OT] Is it possible to use commons-el in a standalone application?

2004-03-23 Thread Martin Cooper
You're much more likely to get a good answer to this if you post to commons-user, where it would be ON topic. Asking on struts-user if you can use a non-Struts library in a non-Struts app isn't the best approach. ;-) -- Martin Cooper Daniel H. F. e Silva [EMAIL PROTECTED] wrote in message news

Re: Please help....Struts 1.0.2b and JDK 1.4.2

2004-03-23 Thread Martin Cooper
You asked exactly the same question only 24 hours ago. Patience is a virtue. ;-) Do you mean 1.0.2 beta? Wow, that's old! There is no reason that it shouldn't, but I haven't run anything that old for some time now. I would recommend upgrading to 1.1 anyway. :-) -- Martin Cooper Kramer, Brad

Re: Changing the FileUpload-Processing

2004-03-22 Thread Martin Cooper
inside the multipart handler itself. -- Martin Cooper [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello everybody! I wrote to the Mailing-List some days ago. That was about the displaying of progress-bars during fileupload. I made progress on this in that manner that I have

Re: File-Upload: Progress-Bar

2004-03-19 Thread Martin Cooper
for this, complete with code: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25830 Expect something along these lines in a forthcoming release of FileUpload, with subsequent support in Struts. -- Martin Cooper Joe -- Joe Germuska [EMAIL PROTECTED] http://blog.germuska.com Imagine if every

Re: Struts cookbook

2004-03-18 Thread Martin Cooper
Struts) will be moving to a new wiki pretty soon, and that one does support attached files. -- Martin Cooper I really got started thinking this way because I was thinking of a personal repository of struts extensions I use in all my projects. It started from that to a more generic cookbook

Re: [OT] JSTL Quick Reference

2004-03-18 Thread Martin Cooper
Not in the quick-ref format, but not much longer (20 pages vs 13 pages: http://www.manning-source.com/books/bayern/bayern_apxA.pdf I've been using that as a quick-ref since the book it's from (JSTL In Action) was published. -- Martin Cooper Bill Siggelkow [EMAIL PROTECTED] wrote in message

Re: What is the best way to pass a parameter to a forward?

2004-03-16 Thread Martin Cooper
to find out whether we have a bug, or you're using a version prior to the forwards being frozen. -- Martin Cooper That being said, your point about modifying an action mappings forwards is a good one. It is unfortunate that the ActionForward class doesn't have a copy constructor -- Jay

Re: What is the best way to pass a parameter to a forward?

2004-03-15 Thread Martin Cooper
of trying to modify Struts' one. You can do that with something like this: ActionForward goto = mapping.findForward( success ); String path = ...; // Put together your new path ActionForward myGoto = new ActionForward(path, goto.getRedirect()); return myGoto; -- Martin Cooper

Re: multipart-request / file upload problem

2004-03-01 Thread Martin Cooper
().getFileElements(); I'll be the first to admit that the current multipart implementation is a little, um, arcane (not that I invented it ;). The plan is to completely rewrite it for Struts 2.x, when we get there. Hope this helps. -- Martin Cooper Adam On 02/29/2004 07:05 PM Adam Hardy wrote: I

Re: Problem with tags and overloaded methods

2004-02-27 Thread Martin Cooper
with that method in the past, though. Shouldn't be a problem - I've used it for exactly this purpose (although I'm using JDK 1.4.2, not 1.3.1). -- Martin Cooper -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail

Re: [ANNOUNCE] Struts 1.2.0 Test Build available

2004-02-27 Thread Martin Cooper
of the sample web apps have been merged into one, thus demonstrating modules as well. -- Martin Cooper -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Friday, 27 February 2004 13:52 To: Struts Users Mailing List Subject: RE: [ANNOUNCE] Struts 1.2.0 Test Build

Re: [ANNOUNCE] Struts 1.2.0 Test Build available

2004-02-27 Thread Martin Cooper
! -- Martin Cooper Nico. Martin Cooper a écrit : The Struts 1.2.0 Test Build is now available here: http://www.apache.org/~martinc/struts/v1.2.0/ This is the first Struts build being made available following the same test-and-release process that has been used successfully by the Tomcat

Re: [ANNOUNCE] Struts 1.2.0 Test Build available

2004-02-27 Thread Martin Cooper
Oswald Campesato [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Martin Cooper [EMAIL PROTECTED] wrote: The Struts 1.2.0 Test Build is now available here: Excellent:) http://www.apache.org/~martinc/struts/v1.2.0/ This is the first Struts build being made available following

Re: [OT] JSP or Velocity

2004-02-27 Thread Martin Cooper
limitations in certain application scenarios. Most of its competitors, Velocity included, do not suffer from these same kinds of issues. -- Martin Cooper A.White [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Howdy I am starting to develop an application using struts and have been looking

[OT] Maven (was Re: [ANNOUNCE] Struts 1.2.0 Test Build available)

2004-02-27 Thread Martin Cooper
to IDEs, though, most of them know about Ant, but don't yet know about Maven at all, so there's not so much of a case for Maven there, IMHO.) -- Martin Cooper Anyway, no need to proselytize... Joe -- Joe Germuska [EMAIL PROTECTED] http://blog.germuska.com Imagine if every Thursday

Re: Problem with tags and overloaded methods

2004-02-26 Thread Martin Cooper
Tim is trying should work. I'd put the failure down to a buggy introspection implementation, although it's possible that dropping in a later version of Commons BeanUtils might work around it. -- Martin Cooper WLS = WebLogic Server. -Original Message- From: Slattery, Tim - BLS [mailto

Re: html:text works, bean:write fails

2004-02-26 Thread Martin Cooper
the value. The difference is in the bean that is being referenced. Unless your form bean happens to be named 'total', these two statements are referencing completely different beans. If there is no bean named 'total' in scope, then you would see exactly what you are seeing. -- Martin Cooper it won't

[ANNOUNCE] Struts 1.2.0 Test Build available

2004-02-26 Thread Martin Cooper
release. Once feedback has been collected on the stability and general quality of this build, a determination will be made as to whether it should be promoted to Alpha status. -- Martin Cooper - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to deploy a war file in Apache?

2004-02-03 Thread Martin Cooper
the relevant requests to something that knows what to do with war files, such as Tomcat, Resin, Jetty, etc. -- Martin Cooper Thanks, S.Srikanth - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Why doesn't ActionForm's constructor have access to HttpServletRequest?

2004-02-02 Thread Martin Cooper
as member data, which would not be too cool if the bean was created in session scope... -- Martin Cooper Jeff Skubick [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is the absence of a reference to the HttpServletRequest object that triggered the creation of a new ActionForm object in its

Re: error-page does not work with IOException?

2004-01-30 Thread Martin Cooper
Um, you might want to try java.io.IOException instread of java.lang.IOException... ;-) -- Martin Cooper Song Qiu [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I use error-page to do global error handling. It works perfectly for ServletException. I can see the eror page displayed

[FRIDAY] Re: What does do stand for in .do files

2004-01-30 Thread Martin Cooper
to This program cannot be run in DOS mode.. ;-) -- Martin Cooper -- Tim Slattery [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

PLEASE READ: Spam block

2004-01-29 Thread Martin Cooper
Folks, I've requested a block on all those AUTO messages, so it should quiet down soon. Please, no more follow-ups on that thread - it only makes the noise worse, and doesn't help anyone. We can all see there's a problem! -- Martin Cooper

Re: Struts upload

2004-01-27 Thread Martin Cooper
is built into Struts, and Struts itself uses Commons FileUpload. If you try to add another layer of file upload functionality, you'll find yourself running into problems with streams that have already been consumed by Struts. -- Martin Cooper Clement - Original Message - From: Edgar

Re: multipart/form-data causes request lost after forward

2004-01-19 Thread Martin Cooper
workarounds? Thoughts... The workaround is to not chain actions in the first place. You'll only give yourself grief (as you have discovered). -- Martin Cooper Many thanks, Mihai -- The contents of this e-mail are intended for the named addressee only. It contains information that may

Re: [General TagLib question] Custom TagLib storing value in PageContext/session and reference by Standard JSTL?

2004-01-16 Thread Martin Cooper
this instead: pageContext.setAttribute(endIdx, new Integer(9), PageContext.SESSION_SCOPE); -- Martin Cooper } I am trying to reference that value in JSTL's c:forEach tag, as in the following .jsp snippet: test.jsp my:custom/ !-- just calls/executes the CustomTag

Re: [General TagLib question] Custom TagLib storing value in PageContext/session and reference by Standard JSTL?

2004-01-16 Thread Martin Cooper
of another tag. You could, however, do something like this instead: c:set var=endIdxpg:endidx//c:set c:forEach var=card items=${cards} begin=0 end=${endIdx} -- Martin Cooper c:out value=${card.name}/ /c:forEach When I use pg:endidx/ outside of the c:forEach tag, it correctly

Re: Still having problems with File upload (multipart-formdata)

2003-12-29 Thread Martin Cooper
is in the key passed to the Validator. The former uses the value of the 'name' attribute from struts-config.xml, while the latter uses the value of the 'path' attribute. (But no, I don't know when you would choose one over the other. ;) -- Martin Cooper -- Brice D. Ruth Sr. IT Analyst Fiskars

Re: File Upload

2003-12-26 Thread Martin Cooper
MultipartRequestWrapper class. Something is very wrong... -- Martin Cooper Jacob Ginu [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, This is the sample code I am using in the action.java file.I have the necessary struts file.But it says Unable to find ServletActionContext

Re: [OT] Who owns Eclipse

2003-12-26 Thread Martin Cooper
Neither. IBM originally created Eclipse, but then donated it to the open source community. See: http://www.ibm.com/news/us/2001/11/05.html My understanding is that Eclipse grew out of IBM's VisualAge for Java project. -- Martin Cooper Ramadoss Chinnakuzhandai [EMAIL PROTECTED] wrote

Re: [OT] I didn't know Struts was an antipattern

2003-12-15 Thread Martin Cooper
It would be nice if the author could at least spell Craig's name correctly... Robert Taylor [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] A coworker sent me this link and said it was an interesting read. http://today.java.net/pub/a/today/2003/12/11/mvc.html?page=1 Personally I

Re: Tags between custom tags not evaluating

2003-12-15 Thread Martin Cooper
What value are you using in the body-content element for your 'checkLogon' tag (in the TLD)? It should be 'JSP' to have the content evaluated as JSP. -- Martin Cooper Andy Engle [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hookom, Jacob [EMAIL PROTECTED] wrote: I don't see

Re: Can large upload cause tomcat hanging?

2003-12-10 Thread Martin Cooper
have a system issue; otherwise you must be doing something differently from the example that's causing the problem. Also, are you really using a version 1.2 JRE? Can you try something a bit more, um, modern? -- Martin Cooper Zsolt Koppany [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED

Re: Can large upload cause tomcat hanging?

2003-12-10 Thread Martin Cooper
this up, if you would. Read these: http://jakarta.apache.org/site/mail.html http://www.catb.org/~esr/faqs/smart-questions.html#forum The first lists the rules you agreed to abide by when you subscribed to the list. This includes the rule Do not cross post messages. -- Martin Cooper Lukas

Re: Can large upload cause tomcat hanging?

2003-12-10 Thread Martin Cooper
not cross post messages. Understood, but this is a Jakarta rule, not a standard Internet rule. You cross-posted to at least two Jakarta mailing lists. The rule applies. -- Martin Cooper The second URL you posted about smart questions states to not cross-post to too many different newsgroups. Too

Re: Can large upload cause tomcat hanging?

2003-12-10 Thread Martin Cooper
attention to senders. ;-) -- Martin Cooper I was just wondering why people are extremely sensitive about what I consider to be valid cross posts. Lukas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: White Space

2003-12-05 Thread Martin Cooper
The catch with this is that you have to take account of things like pre tags and JavaScript string literals. A naive whitespace collapsing filter is likely to be a buggy one. ;-) -- Martin Cooper Wendy Smoak [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Derek Clarkson wrote

Re: Stupid Bean tricks

2003-12-05 Thread Martin Cooper
Why not convert your Set into a Map keyed by language / locale? Then get(locale) is effectively provided for you. -- Martin Cooper Joe Hertz [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Probably a very basic question, and infinitely dealableI hope. I have a User object

Re: Stupid Bean tricks

2003-12-05 Thread Martin Cooper
Assuming your User object is stored in the request under the key user, the language you want is en (English), and the UserData property you want is message, you would do: bean:message name=user property=en.message/ -- Martin Cooper Joe Hertz [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: [OT] RE: File Download?

2003-12-04 Thread Martin Cooper
machine. I believe that's probably as good as it can get, since there's no standard mechanism for multi-file downloads from a single request. -- Martin Cooper Thanks again. Jerry Jalenak Development Manager, Web Publishing LabOne, Inc. 10101 Renner Blvd. Lenexa, KS 66219 (913) 577-1496

Re: Disadvantages of Struts?

2003-12-04 Thread Martin Cooper
useful when an app needs to be customised after the fact, and when the source code is not available (e.g. by a customer, in their own environment). -- Martin Cooper Even though each Action's configuration may be small, the configurations for all the Actions need to be kept track

Re: Database

2003-12-03 Thread Martin Cooper
Dynamic Systems [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Another problem. I've setup a database connection in the struts-config.xml. Is the data-sources position correct? No. http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd -- Martin Cooper I'm getting

Re: getParameter() returns null on multipart requests

2003-11-24 Thread Martin Cooper
, depending on whether or not you have a wrapped request. (In many places, you will not have a wrapped request, because the Servlet 2.2 spec does not permit such a thing, and Struts 1.x is Servlet 2.2 compatible.) -- Martin Cooper I also tried instantiating my own MultipartRequestWrapper by doing new

Re: getParameter() returns null on multipart requests

2003-11-24 Thread Martin Cooper
done it already, without you having to implement any file upload functionality in your actions. (In fact, I'm not sure I understand how your code can work, given that Struts will already have parsed the input stream, making it unavailable to a second parse.) -- Martin Cooper // Assuming

Re: Which framework to choose?

2003-11-18 Thread Martin Cooper
you say a little about how you would choose one of these over the other? (I do mean you and not one - I'm interested in your personal experience-based opinion. ;) -- Martin Cooper It's all the same to me. I push as much of the work back to the business layer as possible, so the frameworks boil

Re: File upload problem with Struts 1.1

2003-11-12 Thread Martin Cooper
, and not in a container-specific lib directory. -- Martin Cooper Raman Garg [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, We are getting error while file uploading using struts 1.1. We have a demo code for file uploading which demostrates the file uploading using struts. When we run there application

Re: OT - what is a blonk

2003-11-06 Thread Martin Cooper
[EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] This is off topic but I couldn't wait til casual friday... Please respect the custom of the list and keep this type of post OFF the list until it IS Friday. That way, people are more likely to respect you in return. -- Martin Cooper

Re: Basic JSTL Question...

2003-11-06 Thread Martin Cooper
subscribe to. -- Martin Cooper 1. In c:foreach how do I check whether the collection contains values??? When it has values, it iterates a loop fine... Now, if I want to specify 'No records' how do I do that??? 2. How do I check condition.s.. for eg. I wanna alternate row colors... when I do

Re: Problem with UTF-8 characters in a mutlipart/form-data encoded form

2003-10-29 Thread Martin Cooper
from that page. Make sure that you use a meta element in your head to specify UTF-8. -- Martin Cooper Paul Barry [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I think you are correct. When I was looking at the packets and seeing two characters, it is actually the characters

Re: declaring action mappings at runtime

2003-10-29 Thread Martin Cooper
does not need to be synchronised once the app is up and running, thus leading to much improved overall performance.) -- Martin Cooper Thanks in advance -- Ahmet ISIK Ideal Teknoloji Bilisim Çözümleri A.S.- Iliskisel Is Kanali Yazilim Muhendisi http://www.idealteknoloji.com

Re: declaring action mappings at runtime

2003-10-29 Thread Martin Cooper
the module config, so you wouldn't need to look it up, as you mentioned you are doing.) If you're doing it outside of a plug-in, then I'm puzzled. Once Struts loads the config, it freezes it and throws IllegalStateException if you attempt to modify it. -- Martin Cooper Martin Cooper wrote: Ahmet

Re: Struts php file upload

2003-10-23 Thread Martin Cooper
is 256KB. -- Martin Cooper * How do I move the data to a particular place on the server? If you've got the uploaded data in memory, this seems like a pretty simple task ... open an output file and write the uploaded bytes to it. If you stored the uploaded data into a disk file instead

Re: Good list for JSTL questions?

2003-10-23 Thread Martin Cooper
The Jakarta taglibs-user list is probably the best one, since the JSTL RI implementors are on that list, along with a good number of JSTL users. -- Martin Cooper Ruth, Brice [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] What's a good list to address JSTL questions to? Thanks

Re: JSTL - use class constants

2003-10-22 Thread Martin Cooper
You could use the 'bind' tag from the Unstandard tag library in Jakarta Taglibs, like this: u:bind var=SINGLE_PUNCH type=your.package.QuestionType field=SINGLE_PUNCH/ c:when test=${minipollQuestion.questionType == SINGLE_PUNCH} -- Martin Cooper Joseph Toth [EMAIL PROTECTED

Re: Does multiple modules work?

2003-07-11 Thread Martin Cooper
resource bundles. (I'll be checking in the fix for it this weekend.) Other than that, modules work just fine. By the way, you should really upgrade from 1.1rc2 to 1.1 Final. :-) -- Martin Cooper Cheers Ben -Original Message- From: ben [mailto:[EMAIL PROTECTED] Sent: Dienstag, 8

Re: JSTL Book

2003-07-10 Thread Martin Cooper
other JSTL books. (I haven't felt a need to.) -- Martin Cooper Mike Duffy [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Does anyone have a recommendation for a good JSTL book? __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http

Re: [ANNOUNCEMENT] Struts 1.1 Final released

2003-07-02 Thread Martin Cooper
Arnaud HERITIER [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I believe that it is the 2.0.7 release. Actually, ORO 2.0.6 is bundled with Struts 1.1. -- Martin Cooper Arnaud. -Message d'origine- De : Mark McBride [mailto:[EMAIL PROTECTED] Envoyé : lundi 30 juin

Re: Struts - j2ee compliant

2003-07-02 Thread Martin Cooper
mean JavaMail, then you just need to download JavaMail if your container doesn't already include it. -- Martin Cooper [EMAIL PROTECTED] wrote: On Wed, 2 Jul 2003, objectworlds wrote: What is incomplete in tomcat ? There is no support for EJB, JMS, Connector Architecture

[ANNOUNCEMENT] Struts 1.1 Final released

2003-06-30 Thread Martin Cooper
updated binaries without the sample applications, is available at: http://www.apache.org/dist/jakarta/struts/library/ Details of the changes in this release are available in the Release Notes, which can be found here: http://jakarta.apache.org/struts/userGuide/release-notes-1.1.html -- Martin

Re: getting multipart requests

2003-06-13 Thread Martin Cooper
haven't been able to find any sample code You might want to look at the struts-upload sample that is part of the Struts distribution... -- Martin Cooper , and both of my Struts books have been a bit unhelpful (although in general I've been very happy with Struts in Action). Any help would

Re: commons-fileupload.jar problem with rc2

2003-06-10 Thread Martin Cooper
, and not the container one. -- Martin Cooper Ben Sion [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Is anyone else having this problem? I have just updgraded to rc2 and got this problem. When I replaced the commons-fileupload.jar with the version from rc1, everything works like magic

[ANNOUNCEMENT] Struts 1.1 Release Candidate 2 released

2003-06-09 Thread Martin Cooper
Husted for his help in preparing this release. -- Martin Cooper - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: commons-logging problem in 1.1 RC2

2003-06-09 Thread Martin Cooper
My apologies. Commons Logging now comes as two separate jars, and I bundled the wrong one. I've fixed the problem on the main Apache site. It'll take a little while to propagate to the mirrors, so if you want to download it right away, you probably want to go to the main site. -- Martin Cooper

[ANNOUNCEMENT] Struts 1.1 Release Candidate 1 released

2003-02-23 Thread Martin Cooper
without the sample applications, is available at: http://www.apache.org/dist/jakarta/struts/library/ Details of the changes in this release are available in the Release Notes, which can be found here: http://jakarta.apache.org/struts/userGuide/release-notes-1.1-rc1.html -- Martin Cooper

Re: Struts Upload File Question

2003-02-05 Thread Martin Cooper
t stream. This is not a Struts-related question. -- Martin Cooper dint find the solution to this in the mailing list archive. any comments/ideas are welcome. -Rana. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: struts-layout taglibraries

2003-01-04 Thread Martin Cooper
-servers.com/ -- Martin Cooper On Mon, 30 Dec 2002, usha wrote: Hi Thnaks a lot for replying. yes i defenetly need the help from u in using the struts-layout . i was just struggling to implement the struts-layout from past 1 week. right now i have 1 problem i am using the text tag where i am

Re: Struts v1.1b3 download?

2003-01-02 Thread Martin Cooper
the link below, or get it here: http://www.apache.org/dist/jakarta/struts/ -- Martin Cooper http://jakarta.apache.org/builds/jakarta-struts/release/v1.1-b3/ -- === David M. Karr ; Java/J2EE/XML/Unix/C++ [EMAIL

Re: Struts v1.1b3 download?

2003-01-02 Thread Martin Cooper
The links have been fixed. -- Martin Cooper On Thu, 2 Jan 2003, Martin Cooper wrote: On 2 Jan 2003, David M. Karr wrote: ajTreece == ajTreece [EMAIL PROTECTED] writes: ajTreece I went to the apache site - milestone build for the subject mentioned release, ajTreece

Struts 1.1 Beta 3 now available from mirror sites

2003-01-02 Thread Martin Cooper
Strutting! -- Martin Cooper -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

[ANNOUNCEMENT] Struts 1.1 Beta 3 Released

2002-12-31 Thread Martin Cooper
-- Martin Cooper -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: How to get a reference to an Action instance

2002-12-30 Thread Martin Cooper
that. -- Martin Cooper If there is any other way, can someone please let me know thanks a lot lirian -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

RE: [ANNOUNCEMENT] Commons Validator 1.0.1 Released

2002-12-19 Thread Martin Cooper
On Mon, 16 Dec 2002, Heligon Sandra wrote: To update the Struts-validator, do we just have to replace the commons-validator.jar file delivered with Struts by the new file available in the validator-1.0.1.zip ? Yes, that's correct. -- Martin Cooper -Original Message- From

[ANNOUNCEMENT] Commons Validator 1.0.1 Released

2002-12-15 Thread Martin Cooper
/v1.0.1/ The Validator web site is located at: http://jakarta.apache.org/commons/validator/ -- Martin Cooper -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Loosing form data when chaining actions

2002-12-09 Thread Martin Cooper
that this is not a Struts-related issue. This behaviour is well defined by the Java Servlets spec. -- Martin Cooper Etienne -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: struts 1.1-b2 struts-blank bug????

2002-12-07 Thread Martin Cooper
On Sun, 1 Dec 2002, Hanasaki JiJi wrote: anyone getting the below error from the blank file? There was a bug in the Struts 1.1-b2 version of struts-blank.war that caused this. It was fixed shortly after 1.1-b2 was released. -- Martin Cooper struts-blank/index.jsp type Exception report

Re: Action Name

2002-11-25 Thread Martin Cooper
something like mapping.getPath()? -- Martin Cooper Any ideas would be appreciated. Edgar. -- 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

Re: muliple select lists and DynaActionForms

2002-11-21 Thread Martin Cooper
fine but when I submit the form, the exception below is thrown. Please let me know if you have a solution. Per the documentation for html:select, you need to use an array, not an ArrayList. -- Martin Cooper Thanks, Herb Watkins Root cause of ServletException

RE: name of zip file???chuck cavaness book

2002-11-21 Thread Martin Cooper
are no longer available for download. -- Martin Cooper On Thu, 21 Nov 2002, James Mitchell wrote: -Original Message- From: Shalu Goel [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 7:12 AM To: Struts Users Mailing List Subject: Re: name of zip file???chuck cavaness book

Re: How to build Multi-Lingual Web Site?

2002-11-20 Thread Martin Cooper
have an application in production that uses multiple properties files, and just one of those has around 3500 lines. You have plenty of breathing room yet. ;-) -- Martin Cooper Thanks in advance, Jana. - Original Message - From: Steven Banks [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: Struts file upload validation problem

2002-11-20 Thread Martin Cooper
them server-side before the file is uploaded from its own page. -- Martin Cooper Steve -- 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

Re: Struts file upload validation problem

2002-11-20 Thread Martin Cooper
. -- Martin Cooper Just another $.02 worth... Brian -- Eddie Bush -- 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

Re: Illegal target of jump or branch w/Tomcat

2002-11-20 Thread Martin Cooper
up having to do some time ago because some of my pages were blowing the limit on a daily basis!) -- Martin Cooper Thanks Configuration details: JBoss 2.4.4 bundle w/Tomcat 4.0.1 Struts 1.0.2 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto

Re: Illegal target of jump or branch w/Tomcat

2002-11-20 Thread Martin Cooper
On Wed, 20 Nov 2002, Martin Cooper wrote: On Wed, 20 Nov 2002, Emmanuel Bridonneau wrote: Some double talk, so I ran into this JVM exeption after switching from the oh you're too expensive for me Weblogic to you're great for a free software JBoss. Turns out that Tomcat (used

RE: Enabling debug levels - which way?

2002-11-20 Thread Martin Cooper
that logging.properties has what you need, and it should just work (TM). That said, I had a heck of a time getting logging to kick in the first time I tried to use it on Windows. What finally seemed to get it to work was a reboot (surprise!), but since then it's worked flawlessly. -- Martin Cooper On Wed, 20 Nov

Re: Loosing my parameter in the multipart request

2002-11-19 Thread Martin Cooper
On Tue, 19 Nov 2002, Murray, Christopher wrote: Hey there guys n gals, I seem to be loosing a parameter of my request when I submit a multi-part form. Yes, this is a bug. A fix is already in the works. Thanks for submitting the bug report to Bugzilla. -- Martin Cooper In the page I

Re: Access temporary files

2002-11-19 Thread Martin Cooper
. You are assuming that there *is* a temp file corresponding to the uploaded data. That is an implementation-specific detail, which is why the FormFile interface does not expose it. You can access the uploaded content using the getInputStream() method. -- Martin Cooper -- To unsubscribe, e

Re: Access temporary files

2002-11-19 Thread Martin Cooper
is much faster and much more reliable than the DiskMultipartRequestHandler implementation, which will be deprecated in Struts 1.1. -- Martin Cooper Hope this helps -D - Original Message - From: Bernhard Oberndorfer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 19

Re: Access temporary files

2002-11-19 Thread Martin Cooper
about this. ;-) -- Martin Cooper -Dan - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, November 19, 2002 12:02 PM Subject: Re: Access temporary files On Tue, 19 Nov 2002, Dan Tran wrote: Configure

Re: Access temporary files

2002-11-19 Thread Martin Cooper
decided to move to the Commons FileUpload package for Struts 1.1. That package has no outstanding bugs, and is much faster as well. -- Martin Cooper Bernhard Oberndorfer - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent

RE: JSP's under WEB-INF... or not

2002-11-19 Thread Martin Cooper
would one choose to do this instead of simply locating their JSP pages under WEB-INF (which is also portable)? -- Martin Cooper security-constraint web-resource-collection web-resource-nameSecureAllJSPs/web-resource-name url-pattern

RE: JSP's under WEB-INF... or not

2002-11-19 Thread Martin Cooper
them big time about this. ;-) -- Martin Cooper David From: Martin Cooper [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: JSP's under WEB-INF... or not Date: Tue, 19 Nov 2002 21:54:00 -0800 (PST

Re: Assigning an object(FormFile) to a dynamic form.

2002-11-18 Thread Martin Cooper
dynamic form with this kind of objects? FormFile is an interface, so it can't be instantiated. Try using DiskFile instead - it implements FormFile. -- Martin Cooper Thanks, reza. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: dynamic img with EL

2002-11-18 Thread Martin Cooper
decided that there is no other way. We need URL rewriting. The regular html:img tag doesn't understand the JSTL EL. You'll need to use the corresponding Struts-EL tag, html-el:img, to do what you want. -- Martin Cooper Thanks, Mohan -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Re: In which cases should we use DiskFile?

2002-11-18 Thread Martin Cooper
to specify the class to instantiate for a particular form bean property. -- Martin Cooper Thanks, Huy __ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site http://webhosting.yahoo.com -- To unsubscribe, e-mail: mailto:[EMAIL

Re: Keeping up to date with nightly builds

2002-11-18 Thread Martin Cooper
code references the Commons Validator DTD. The DTD in the Struts tree is maintained for backwards compatibility only. -- Martin Cooper Do I need these .dtd files from the nightly build? Have I missed anything? (It compiles, but I've already caused myself problems by using some files from one

Re: bean:struts problem

2002-11-17 Thread Martin Cooper
data from your struts config file. If you want to access the form bean itself, you should be doing so directly, as it is in either request or session scope. -- Martin Cooper How can I fix this problem? ERROR Message: [ServletException in:/admin/login.jsp] No getter method for property

Re: Small log4j PlugIn-Contribution

2002-11-17 Thread Martin Cooper
and log4j.properties in WEB-INF/classes, it should just work. -- Martin Cooper I wrote a small Struts log4j PlugIn which might be useful to those who do not want to reinvent the wheel ;-) The Plug-In is also able to reload configuration after a given sleep time, because restarting the server on every

RE: Tiles referencing actions.

2002-11-17 Thread Martin Cooper
to communicate information between the tiles on a page. Using a redirect loses att request attributes, because it requires a round trip to the browser and back. -- Martin Cooper Is it a feature? This e-mail is intended only for the above addressee. It may contain privileged information. If you

Re: What can I do to display unicode-string in struts tag?

2002-11-17 Thread Martin Cooper
to storing non-Latin characters in a MySql database. I don't use MySql, so I can't help you with that, but you'll probably find more information in the mailing list archives. -- Martin Cooper Any help is appreciated ! Thanks in advance, Huy

Re: ActionForm manipulation within an Action

2002-11-15 Thread Martin Cooper
will be reset and repopulated from the request. One of the joys of action chaining. ;-) -- Martin Cooper David From: Jorge Martins [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Mailinglist' [EMAIL PROTECTED] Subject: ActionForm manipulation within

  1   2   3   4   5   6   >