Hi Kim,
No, sorry, no resolution to this :-(
I'm waiting for an answer. I hope David will have a solution soon...
If ever you find something to help, could you post it?
Thanks.
Sebastien
On 11/27/06, Kim <[EMAIL PROTECTED]> wrote:
>
> On 11/22/06, Sébastien LABEY gmail.com> wrote:
> >
> > If
It exhibits the same behavior even after converting the "param"
field/parameter to a String.
Is there a way to provide a JUnit test for that?
-Original Message-
From: Ted Husted [mailto:[EMAIL PROTECTED]
Sent: Monday, November 27, 2006 6:52 PM
To: Struts Users Mailing List
Subject: Re: P
Anyone have some docs and a good advanced hello world for struts doing
ajax, preferably with freemarker for the web templating.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi,
According the struts documentation the default implementation of reset()
does nothing, so calling super() will have no effect. When you override
a method it is up to you to call super() or not, in this case I do not
believe it is required.
You only need to reset form elements that DO NOT sub
I am trying to use valueList taglib with my Struts 1.2.x webapp.
I basically have a collection of dto's having the data that I want
to display. I am using Struts with Hibernate 3.0.
I dont have any Spring knowledge. Have any of you been able to use
valueList and its sorting/paging features with m
As someone else pointed out, start here:
struts.apache.org
...more specifically:
http://struts.apache.org/2.x/index.html
...should be a good place to start.
Frank
Caroline Jen wrote:
Where do I find all the new features of the Struts 2
and start using them?
--- "Frank W. Zammetti" <[EMAIL
Where do I find all the new features of the Struts 2
and start using them?
--- "Frank W. Zammetti" <[EMAIL PROTECTED]> wrote:
> Yes, as a correction to my previous response, Struts
> 2 was released in
> BETA on 10/20/2006. I may have made it sound like
> it was a GA release,
> but it was not (sti
>
> On 11/22/06, Sébastien LABEY gmail.com> wrote:
> >
> > If I don't register the Tiles listener in the web.xml, Tomcat starts, my
> > webapp works, but when I ask for a page build with tiles, I have a
> > ClassDefNotFoundException on the TilesContext class...
> >
> > Maybe this can help you to
Thanks for your response. yes, I am using reset method only for resetting
the checkboxes. With all your help now I understand the reset method.
What I want to know is, in reset method in my formbean do I have to call the
super.reset() ???
When initialize is used on a form property and if sup
I've had this problem many times before. You found the solution: remove
the local version from WEB-INF/lib. This is totally a class loading
issue and you should not have xercesImpl.jar there if the server already
provides it.
Jason X. Jia wrote:
Hi,
I had an interesting issue with struts 1.2
Hi,
I had an interesting issue with struts 1.2.9 on AS400. Briefly, it
throws an SAXNotRecognizedException when initializing the
ActionServlet. Struts 1.2.9 uses commons-digester (1.6) to parse the
struts-config.xml. And for whatever the reason, the original
application put a xercesImpl.jar (2.6
You might look into the Security Filter project at SourceForge (
http://securityfilter.sourceforge.net/), we're using it and it seems to work
very nicely.
(*Chris*)
On 11/26/06, nirmal_hbti <[EMAIL PROTECTED]> wrote:
Hi,
What is the best way to secure struts-webapps without Container Managed
I think you would have to return what you get from
mapping.findForward("goto_graceful_error_page")
to make it work, just calling it doesn't do anything by itself.
(*Chris*)
On 11/26/06, Romu <[EMAIL PROTECTED]> wrote:
try without exception & see if the "goto_graceful_error_page" works
properly
Yes, as a correction to my previous response, Struts 2 was released in
BETA on 10/20/2006. I may have made it sound like it was a GA release,
but it was not (still counts in my book... getting a beta out the door is
an important step for any resonably-sized project).
Frank
--
Frank W. Zammetti
Caroline,
why do you ask? I am no insider of the project, but as far as I can see
there are many activities going on: v 1.3.x (in the strain of old "Struts
Action") being developed, v2.x coming soon (the merge with WebWorks), and
Shale (the JSF variant) being developed in parallel.
For me there ar
Yes, the Struts project is "still going on"... Struts 2 (by and large what
used to be called WebWork) was released a short time ago, and is a hotbed
of activity. The Struts 1 branch (what you are probably familiar with as
"Struts") is still being worked on by at least a few dedicated souls and
is
Caroline, yes! Keep up on it at:
https://issues.apache.org/struts/browse/STR?report=com.atlassian.jira.plugin.system.project:roadmap-panel
We have exciting new features in 1.3.6+ being worked on as I type. :-)
Caroline Jen wrote:
Hi, can we still expect newer versions of Struts in
the futur
If you consult the documentation for the reset() method [1], you'll
see it's mainly for resetting checkbox values:
"This method is not the appropriate place to initialize form value for
an "update" type page (this should be done in a setup Action). You
mainly need to worry about setting checkbox
On 11/27/06, Gilbert, Antoine <[EMAIL PROTECTED]> wrote:
Hi list,
I have a Web application under NetBeans 5.5 using default Struts library
1.2.9 with the built-in Tomcat 5.5.17
For some reasons the file commons-digester seem to always be locked by
this Tomcat; I can't "clean and build" my appli
Hi, can we still expect newer versions of Struts in
the future? Or the Struts is no longer an onging
project and JSF is the replacement?
Could anybody provide some information about it?
Thank you.
Do you Ya
Try it again using a String property, to be sure it is not a problem
with the type conversion.
On 11/27/06, Tarek Nabil <[EMAIL PROTECTED]> wrote:
To clear my doubts, I re-built this application using WW 2.2.4. I
expected that it will work perfectly and that would prove it's some sort
of a bug.
Hi list,
I have a Web application under NetBeans 5.5 using default Struts library
1.2.9 with the built-in Tomcat 5.5.17
For some reasons the file commons-digester seem to always be locked by
this Tomcat; I can't "clean and build" my application while Tomcat is
running.
One more thing an
Have the below in the form bean.
public void reset(ActionMapping mapping,
javax.servlet.http.HttpServletRequest request)
{
super.reset(mapping, request);
set("empCost", Boolean.FALSE);
set("orders", Boolean.FALSE);
}
To clear my doubts, I re-built this application using WW 2.2.4. I
expected that it will work perfectly and that would prove it's some sort
of a bug. To my surprise, it exhibited the exact same behavior!
Now, since it's quite remote that such a drastic bug exists in WW 2.2.4,
I'm starting to th
Thanks Peter and Ted.
I'm afraid I didn't understand your advice regarding the IDE with
integrated debugging. Would that require me to use the source of Struts
2 rather than the JAR files as part of my application?
To keep things simple, I started an application from scratch. Kept
things to the b
Hi Nils!
Yes, i've renamed xwork.xml to struts.xml.
I've reviewed all sturts jars as well and did not find
struts-portlet-default.xml in any of them.
Exception trace is:
javax.portlet.PortletException: Could not find action index
at
org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher.ser
Hi!
Have you tried renaming the xwork.xml to struts.xml? The
struts-portlet-default.xml is inside the struts jar files. What error
messages do you get in the jetspeed2 logs?
Nils-H
Alex Andrushchak wrote:
>
> Hello!
>
> I've tried to launch struts2 portlet application under jetspeed2 but
>
27 matches
Mail list logo