At one point the JavaScript load order when using
Prototype was significant; I had to put the
tag before loading prototype.
Note that Prototype does not always play well with
other libraries.
d.
--- Moacir Cardoso <[EMAIL PROTECTED]> wrote:
> Hello people,
>
> I was unable to make my ajax s:f
--- Arunkumar Balasubramanian wrote:
> org.apache.jasper.JasperException: An exception
> occurred processing JSP page /pages/Address.jsp at
> line 6
>
> 3:
> root cause javax.servlet.jsp.JspException: Missing
> message for key "welcome.title"
That means you don't have a message for the
"welcome
Hi,
I'm trying to use annotations to validate some fields in my application. The
code is this:
@Validation
public class Teste extends ActionSupport {
private Cliente cliente;
@VisitorFieldValidator(message = "")
public Cliente getCliente() {
return cliente;
}
public
Hello people,
I was unable to make my ajax s:form submit to work.
Then I tried to create a simple application from struts2-blank-2.0.9.war
like this:
<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
"h
Hi
I have downloaded source code online and were trying to reuse the files
available to build my own application. I have MyEclipse IDE with Tomcat server
on it. I am developing struts application. Here is what the problem I am
running in to.
If I add all java, jsp, class, ear and war f
Most likely the error wasn't detected until the page had been
"committed". Once the headers and the first part of the page have
been sent to the browser, there's no way to "recall" them to display
the error page, so the best that can be done is adding the error to
the bottom.
One way to prevent t
In my web.xml I have this mapping:
java.lang.Throwable
/error.jsp
However, sometimes when an exception occurs while trying to access some
property on the ognl stack (in this case a
org.hibernate.LazyInitializationException caused when I do ) the
error page is appended to my jsp from the
It is very different, but I'd still encourage you to play with it.
I've been using it for a few months (though I had played with WebWork
before), and I love it. I've found it light years ahead of Struts
1.x, and not nearly as frustrating as Spring MVC. It's got a learning
curve, like any fr
Yeah, I have done more reading about Struts 2 vs 1. Didn't realize it was
that different. I will probably just kick back down to the most recent
Struts 1 release so I am in known territory.
Jim Cushing wrote:
>
> Approach Struts 2 as if you're learning a new web framework, which
> you really
Those files don't exist in Struts 2. Struts 2 is very different than
Struts 1, and is based off of WebWork, so many of the files and JSP
you're used to don't exist, struts-*.tld among them.
All the JSP tags included with S2 start with (e.g., ),
instead of , , etc.
Approach Struts 2 as if
Thanks for the information!
It all makes sense now:-)
I have previously used Struts 1; however, that project was setup long ago
and I just have add to some new fucntionality to on occasion. This is the
first time I have setup a struts application from scratch. The app I am
using as an example
On 10/5/07, mjparme <[EMAIL PROTECTED]> wrote:
> I have scoured google and docs on struts.apache.org and can't find where
> these files are!! It has been very frustrating. All the getting started
> guides say to put these files in WEB-INF but then don't tell you where to
> get these files from!
Y
I downloaded Struts 2.0.9 (binary release) and the files struts-bean.tld,
struts-html.tld, and struts-logic.tld is nowhere to be found. All the
documentation I have read said it should be in the lib directory. This
documentation appears to be geared to Struts 1.x though.
I have scoured google and
Has the problem been solved concerning injecting the T2 controllers
(preparers) with beans from the S2 beanFactory? I have written a
DelegatingTilesController that gets the job done, but I consider it a
workaround.
On 10/5/07, Ted Husted <[EMAIL PROTECTED]> wrote:
>
> Good point. What has actuall
I load it using the following:
<#assign s=JspTaglibs["/struts-tags"]>
You'll also need to load the JspSupportServlet:
JspSupportServlet
org.apache.struts2.views.JspSupportServlet
1
Look at the section called "Tag Support" here:
http://struts.apache.o
Ted --
I have a fairly large S1 web app now infused with S2 capabilities. I am
experimenting with techniques for calling between the two "sides" and have
it working fine using redirect type forward and result mappings. As an
aside, the S1 app used Tiles heavily and the modest S2 app is using T2.
Thanks Antonio --
You mean you have to boot it? :) That was the S2 piece I failed to add to
the S1 web.xml. It seems to be working fine now with S1 and S2 plus T1 and
T2 all in the same web context! This is actually pretty cool! I have added
navigation menus from the S1 app to S2 and vice vers
If I create multiple struts configurations, do my actions end up having the
prefix in the path, so that they could be secured?
ie.
OR, is it that the path is part of the directory where the file is stored (the
input attribute of the action or the forward), and the
Adding the pound sign did work for me in the hardcoded example
Will my action need to add a pound sign as well or is that only because I
was using list instead of href? Right now my action is returning
{"1":"Internet Services"}, which works in 2.0.9. This is what is returned
by the json pl
I double check this, and it seems to be working fine, as Wes mentioned
you need to escape "#" or use something like:
One think to keep in mind is, when you build the json, the key and
the values are in the "wrong" order. So it would be:
{
"Alabama" : "AL"
}
instead of :
{
"Al" : "Alaba
OGNL's anonymous map creation uses the '#' character -
http://www.ognl.org/2.6.9/Documentation/html/LanguageGuide/collectionConstruction.html#mapConstruction
But, if your servlet container uses the Unified EL, then you'll have
to escape the '#',
So, in short try this -
Looking at what you we
Turns out the problem is that the autocompleter is broken for maps. Using
the map example given in the documentation
(http://struts.apache.org/2.x/docs/autocompleter.html) does not work:
However, it works when a list is given:
-Ben
chengas123 wrote:
>
> Converting the tags to use t
2007/10/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
> Are both versions of Tiles supported in the same app?
It is hard to say, since I did not even try it. But I think you have
some problems with configuring Tiles 2 startup. How do you bootstrap
Tiles 2?
Antonio
---
Technically, it's still one application. The Struts 1 framework is
exposed by a servlet, and the Struts 2 framework is exposed by a
filter. But, the Java Web framework is designed so that you can use as
many servlets and filters as you need, and provides a useful "layer"
between the two.
The simpl
There is nothing in the log at startup. I have two rather large
applications I am experimenting with combining together in the same web
context root. Don't ask! Attempt is to have them call into one another.
Ultimately, it will evolve to S2 if need be. It is working fine right now
with both ver
2007/10/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
> Thanks. I am adding S2 components to a S1 application and for some reason I
> am getting a NPE in TilesResult at 104. Looks like this
>
> TilesContainer container = TilesAccess.getContainer(servletContext);
>
> coughing up a null container! Any
You should be able to debug your JSPs, too, although I
haven't tried that with Europa (Europa, so far, is
kind of kicking my butt; can't even re-format a JSP
page :/
But as Wes said, unless something is really wrong in
your setup debugging your actions should be really
easy.
--- Wes Wannemacher <
right-click on your server (Tomcat) and choose 'Debug' ?
You can put breakpoints in your action, etc.
-Wes
On 10/5/07, Viplav Kallepu <[EMAIL PROTECTED]> wrote:
> but I am not able debug my action classes(I atleast understood that i cant
> debug my jsp's). thats what is the problem. If anybody h
but I am not able debug my action classes(I atleast understood that i cant
debug my jsp's). thats what is the problem. If anybody has any good material
for knowing "how to debug in eclipse(WTP)" suggesting me would be a great
help.
On 10/4/07, Dave Newton <[EMAIL PROTECTED]> wrote:
>
> --- Viplav
Thanks a lot,
This article looks promising.
Leena
On 10/4/07, Wes Wannemacher <[EMAIL PROTECTED]> wrote:
>
> I would start here ->
> http://struts.apache.org/2.0.9/docs/struts-1-plugin.html
>
> -W
>
> On 10/4/07, Leena Borle <[EMAIL PROTECTED]> wrote:
> > Hi ,
> > I have started developing
Thanks. I am adding S2 components to a S1 application and for some reason I
am getting a NPE in TilesResult at 104. Looks like this line is
TilesContainer container = TilesAccess.getContainer(servletContext);
coughing up a null container! Any clues? I am running both versions of
Tiles in the
Good point. What has actually happened is that there was never a Tiles
example for WebWork, and no one has volunteered to add an extensive
example for Struts 2 yet.
Though, we do have a small Tiles example in the ShowCase
* http://www.planetstruts.org/struts2-showcase/tiles/index.action
If some
http://svn.apache.org/repos/asf/struts/struts2/tags/STRUTS_2_0_9/plugins/tiles/
Antonio
2007/10/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
>
> I can't find the source for the struts2-tiles-plugin-2.0.9.jar???
>
> --
> Scott
> [EMAIL PROTECTED]
>
Has anyone here tried Prize Tags with Struts 1 for Ajax and other features?
* http://www.jenkov.dk/prizetags/introduction.tmpl
-Ted.
On 9/19/07, Rick Reumann <[EMAIL PROTECTED]> wrote:
> Hey all, unfortunately I'm going to be stuck on a new project has to use
> Struts1.1 - not that I'm against
I can't find the source for the struts2-tiles-plugin-2.0.9.jar???
--
Scott
[EMAIL PROTECTED]
i'm not sure.. i'm not intentionally specifying one. i'm assuming
that it would be jboss-web_4_0.dtd since i'm using jboss 4.2.1 and am
using the servlet 2.4 spec in j2ee 1.4. is it possible that i'm missing
elements in the jboss-web.xml file? i was under the impression that it
was not neces
On 10/5/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote:
>
> Volunteering to do something that is already outdated, and that will be
> removed in favour of Tiles 2?
> I think it's a waste of time IMHO, also because in Struts 1.4 there will be
> support for Tiles 2.
Cool. I didn't even know there wa
2007/10/5, Ted Husted <[EMAIL PROTECTED]>:
>
> I believe the Tiles example we had migrated to tiles.apache.org with
> the rest of the Tiles code, and no one has come up with another.
This is not true, the original Tiles code resides under Struts.
Antonio
As always, it's just a matter of someon
Converting the tags to use the new library wasn't very hard except that I
can't seem to get the new tags to work. I turned the debugging on in the
head tag and the only debug message I got was "DEBUG: please consider using
a mimetype of text/json-comment-filtered to avoid potential security issue
I believe the Tiles example we had migrated to tiles.apache.org with
the rest of the Tiles code, and no one has come up with another. The
same holds true for the documentation. What we had was migrated, and
no one has replaced it. As always, it's just a matter of someone
volunteering to do the work
I'm working on using IDEA for a Struts1.3 project and IDEA was
complaining about my Tiles definition that I had declared:
It was complaining about not defining a controller (even though the
code actually worked without it.)
I decided to look at some examples that
On 10/5/07, Giovanni Azua <[EMAIL PROTECTED]> wrote:
> Meaning we users building from repository should get a more fixed and
> stable version each time.
In general, we do not recommend building from the repository unless
you are following the discussions on [EMAIL PROTECTED] There is no guarantee
Struts 2.0.10 never made it past a test build.
There is a vote pending on dev@ for Struts 2.0.11, which is positive so far.
* http://www.nabble.com/-VOTE--Struts-2.0.11-Quality-tf4511024.html
-- HTH, Ted
Attend "Migrating to Ajax" at ApacheCon US 2007:
* http://us.apachecon.com/us2007/program/
Hi,
I hope someone can help me with this problem.
I have a freemarker file where I need to use struts tags to create url.
My problem is that I don't know what's the correct way to reference the
struts taglib.
My code:
<#assign s=JspTaglibs["/META-INF/struts-tags.tld"]>
">Link her
Struts 2.1.x does have some new "features" one of the most notable
being that he dojo/ajax functionality is moved into it's own plugin.
There are a number of tags that have changed and a few added in the
dojo-plugin. There is more information in the this wiki -
http://cwiki.apache.org/confluence/d
hi all,
It is not clearly stated anywhere ... but seems that version 2.1.0 beta
is a maintenance release and does not include any new features, is that
true? Most of the JIRA entries are bug fix requests.
Meaning we users building from repository should get a more fixed and
stable version ea
46 matches
Mail list logo