Re: Bean - DOM

2002-03-01 Thread Incze Lajos
On Fri, Mar 01, 2002 at 02:38:20PM +0300, Roman V. Petrov wrote: Did anyone write JavaBean-XML DOM converter that can be used with Struts? Sources, URLs and ideas will be appreciated. 1. domify.sourceforge.net. 2. jakarta-commons/jxpath (xpath access to bean and/or xml resources) Not DOM,

Re: Form beans and JAXB........

2002-01-12 Thread Incze Lajos
On Fri, Jan 11, 2002 at 10:31:54PM -0600, Niraj Juneja wrote: Hi Jon, Thanks for the reply, I have not worked with Castor so I cannot comment on that(although I did get an email from castor to evaluate their product). As far as JAXB goes. Right now it is in Early Access and I think it

Re: DO NOT REPLY [Bug 5821] New: - Upload failed on load some binary file.

2002-01-11 Thread Incze Lajos
Upload failed on load some binary file. Summary: Upload failed on load some binary file. Product: Struts Version: 1.0 Final Platform: PC OS/Version: Other Status: NEW Severity: Blocker Priority: Other

Re: FW: Opinion on design ideas???

2001-12-09 Thread Incze Lajos
Though, I suppose, if someone really, really doesn't want to forward control, another approach would be to use a ViewAction as a base class, and then call a render method at the end of perform. public ActionForward render( ActionMapping mapping, ActionForm form,

Re: FW: Opinion on design ideas???

2001-12-08 Thread Incze Lajos
That was the one side of the coin. The other is the dispatcher mechanism. It was only a _question_, I am really wonder, why does it count to be the standard, that you give the rendering to a different SERVLET. Is there any advantage (e.g. in the above example using an XSL servlet and

Re: FW: Opinion on design ideas???

2001-12-07 Thread Incze Lajos
You should note, however, that it is also possible for an Action to create the view directly, if you want to: public ActionForward perform(...) ... { ... PrintWriter writer = response.getWriter(); writer.println(...); ... return (null); } Returning null,

Re: FW: Opinion on design ideas???

2001-12-03 Thread Incze Lajos
No, the question is entirely independent from velocity. There are many possibilities to render a view. E.g. Maverick domifies a data structure and gives it to an XSL transformer, etc. What I was wonder was simply the WRAPPING of the view helper. To me it seems to be natural to hide (and make it

Re: FW: Opinion on design ideas???

2001-12-03 Thread Incze Lajos
On Mon, Dec 03, 2001 at 03:29:26PM -0500, Ted Husted wrote: The standard ActionForward and ActionInclude Actions create a RequestDispather in the Action, and do call another servlet directly, without going back to the container.

FYI: WebSphere Version 4 Application

2001-07-26 Thread Incze Lajos
From theserverside.com: -- Posted By: Floyd Marinescu on July 26, 2001 A review version of the new Websphere 4 development Redbook has been posted. This amazing redbook covers everything related to enterprise desgin

WSFL article

2001-06-21 Thread Incze Lajos
IBM's developerworks now has a gentle introduction on thw WSFL (webervices flow language) at http://www-106.ibm.com/developerworks/webservices/library/ws-ref4/index.html?dwzone=webservices incze

Re: Multipart request handling

2001-06-11 Thread Incze Lajos
On Sun, Jun 10, 2001 at 07:09:06PM -0700, Martin Cooper wrote: Incze, The fix for this - unwrapping the request - has been made on the main trunk (Struts 1.1) in CVS, but has not been applied to the Struts 1.0 branch. If you can, you might want to try using the latest nightly build until

Multipart request handling

2001-06-10 Thread Incze Lajos
I've just verified that the detected behaviour (upload bombs when form validation fails) has reason. When a validation error occurs the following code gets executed: //does our form have a multipart request? if (formInstance.getMultipartRequestHandler() != null) {

Multipart problems

2001-06-10 Thread Incze Lajos
Something really went wrong in the multipart request handling (manipulation). The only scenario that works at the moment for me, when the file and the other request parameters all are good, so the file upload was successful. I'm testing with tomcat3.3 and tomcat4 (m3 and b5 versions) and the

Re: Work flow RFC

2001-06-05 Thread Incze Lajos
On Tue, Jun 05, 2001 at 11:46:58AM -0700, Frye, Dave wrote: Keep in mind that Microsoft uses there own version of DTDs and XML Schemas that are not W3C conformant. You would then have to use their XSL tools, which, of course, would be Wintel-based. This would not make for a very platform

SourceForge: Project Info - Ruby Web Application Framework

2001-05-23 Thread Incze Lajos
Just interesting. The charter of the project says: Based on the Jakarta Struts project, the Ruby Web Application framework is a framework for developing web/wap applications founded in the Ruby programming language. http://sourceforge.net/projects/ruby-waf/

JSR-000126 template/component specification

2001-05-15 Thread Incze Lajos
Maybe some of you on the list are interested or even want to participate. (Just saw in the news.) http://java.sun.com/aboutJava/communityprocess/jsr/jsr_126.html icnze

Re: cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/html FormTag.java

2001-04-29 Thread Incze Lajos
On Sun, Apr 29, 2001 at 03:11:40AM -, [EMAIL PROTECTED] wrote: craigmcc01/04/28 20:11:40 Modified:src/share/org/apache/struts/taglib/html FormTag.java Log: Migrate the attributes created by the html:form tag (the form tag instance itself, and a reference to the form

Re: cvs commit: jakarta-struts/src/share/org/apache/struts/util BeanUtils.java

2001-04-16 Thread Incze Lajos
Port a fix from the "commons" version of this module (which Struts will ultimately migrate to when the commons version is released). Just some questions. Will the beanutils be facotred out from struts or they will remain here (with some sort of sync mechanism)? Also, are there other

Re: struts and cocoon

2001-03-29 Thread Incze Lajos
On Tue, Aug 29, 2000 at 10:09:31AM -0400, Ali Ozoren wrote: Hi all- I’ve been trying to get cocoon and struts together, however one is using the servlet.jar the other servlet_2_2.jar. Is it possible to combine these two? Thanks! I guess they are the same. Struts has to differentiate

Re: development issues

2001-03-27 Thread Incze Lajos
On Wed, Mar 28, 2001 at 12:11:37AM +1000, Jim Richards wrote: In Dec-2000 issue of Javaworld, there was an article by "Thor Kristmundsson" about enhancing Struts framework with regex validation and automatic properties. Though the article is outdated due to recent development in Struts but

[jhunter@collab.net: Servlets.com: IE5 file upload workaround]

2001-03-25 Thread Incze Lajos
[FYI] Don't know that the struts upload module was effected by this issue. incze - Forwarded message from Jason Hunter [EMAIL PROTECTED] - Date: Sun, 25 Mar 2001 13:09:13 -0800 From: Jason Hunter [EMAIL PROTECTED] To: Servlets Announce

Re: BaseFieldTag

2001-03-24 Thread Incze Lajos
I'm not sure this is true. In section 17.12.2 of the HTML 4.01 spec (http://www.w3.org/TR/html401/interact/forms.html#adef-readonly) it says; "The following elements support the readonly attribute: INPUT and TEXTAREA." It is supported according to the dtd (and for the TEXTAREA element,

Offtopic: http://jakarta.apache.org

2001-03-22 Thread Incze Lajos
Does anybody else experiancing this problem or only my ISP hoosed up it's DNS. From here (Hungary) the whole apache.org domain is unreachable. http requests sent to jakarta.apache.org go to h31.sny.collab.net (which seems to have the same IP address by nslookup. If it's a local problem I can wait

Re: Request go ahead for structural changes in CVS

2001-03-19 Thread Incze Lajos
If we impose on the developer only that he has the right "ant" or "ant.bat" script available in his or her PATH, do we care anything about Ant's internal organization? It seems to me that the Ant environment should take care of finding its own pieces. Craig Everything used to work

Re: content map population

2001-03-13 Thread Incze Lajos
On Tue, Mar 13, 2001 at 09:57:36AM +0100, Cedric Dumoulin wrote: Not yet, but in a few days I will provide such facilities for Templates. If you want to know how it will work, I have put an extract of a previous mail at the end of this mail. Cedric Will be this facility part of the

Re: localizing direct template content with bean:message

2001-03-01 Thread Incze Lajos
On Thu, Mar 01, 2001 at 12:46:17PM -0500, Deadman, Hal wrote: I wanted to localize direct content when using templates such as the title of a page. I modified the bean:message tag so it would read its key from the tag body if it wasn't specified as an attribute. Is there a better way to

Re: cvs commit: jakarta-struts/src/doc todo-1.1.xml

2001-02-20 Thread Incze Lajos
On Tue, Feb 20, 2001 at 05:28:31PM -, [EMAIL PROTECTED] wrote: craigmcc01/02/20 09:28:30 Modified:src/doc todo-1.1.xml Log: Correct email contact address for Rob. TODO: figure out why my stylesheet is eating the a tags on volunteers... You explicitely say the

bean define with scripting funs

2001-01-20 Thread Incze Lajos
Weird thing at bean:define (probably a tomcat error - I use tomcat 3.2.1 with the IBM jdk 1.3 on linux): Here is a sample JSP (copied from the "Bean User Guide"): -- %@page language="java" contentType="text/html;charset=ISO-8859-1"% %@ taglib uri='/WEB-INF/struts-bean.tld'