This is very impressive. Would you be interested in donating it to
the official Struts 2 documentation, or at least, allowing us to link
to it?
Don
On 12/1/06, Mark Menard <[EMAIL PROTECTED]> wrote:
After extending the xhtml theme to handle multi-column layouts I wrote up a
tutorial covering h
Looks like it is that issue indeed :(
From: Ted Husted [mailto:[EMAIL PROTECTED]
Sent: Fri 12/1/2006 4:34 PM
To: Struts Users Mailing List
Subject: Re: Parameters not being set on Action in Struts 2
On 12/1/06, Tarek Nabil <[EMAIL PROTECTED]> wrote:
> I'm ope
After extending the xhtml theme to handle multi-column layouts I wrote up a
tutorial covering how I did it, and a sample project illustrating it. Anyone
interested in extending the S2 GUI tags might find this helpful. There were
several things that I stumbled on in the process, so you can learn fro
JDK 1.5.0_06
Tomcat 5.5.7
Thanks
Zhaoren
On 12/2/06, Don Brown <[EMAIL PROTECTED]> wrote:
What Java version and application server are you using?
Don
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
> Hi guys,
>
> I am study Struts2. When I run struts-blank.war, I get some error trace.
I
>
Are you using localization features? If Struts 1.x is selecting the
locale for you, it will create a session to store it.
Bryce Nesbitt wrote:
Thanks for the tip. I do that but I still get jsessionid's in the URL:
WEB-INF/tiles-defs.xml
...
jsp/common/layouts/mainLayout.jsp:
<%@ page sess
Hey guys; I have a really annoying problem that I've killed far too much
time on- I was hoping someone might have some additional insight. I
created a page that uses a to populate a table with an
ArrayList of Beans. This works beautifully on first view, but subsequent
page views and refreshes do n
Powerful stuff!
OGNL expression parsing for expression validation
Ability to turn off singleton for each Action,Interceptor or Result Bean..nice
IoC for components
and validator rules searched on inheritance tree
not to mention ValueStack allowing next Acion to access previous Action
pertaining t
I prefer dynaforms as I don't need *any* explicit formbean classes.
With a good-sized application there's 30 classes I don't need to
maintain. For a further reduction, use Lazy-flavor Dyna beans, then no
changes to XML are required, just change the action class and JSP.
-ed
On 12/1/06, Thomas Th
If u add a property in a bean, or remove ...
I think u will have to change the code anyway and recompile ...
2006/12/1, Dave Newton <[EMAIL PROTECTED]>:
From: Thomas Thomas [mailto:[EMAIL PROTECTED]
> There is not much code for a FormBean in Java ...
> I don't see the point to have it in XML
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
Mississippi John Hurt wrote:
> I notice if the quote is escaped as... \'
> then it works fine, the problem is it will display wrong looking exactly
> like above, so I have to escape it 2 different ways...
Yeah, that's pretty much the deal. You
From: Thomas Thomas [mailto:[EMAIL PROTECTED]
> There is not much code for a FormBean in Java ...
> I don't see the point to have it in XML
Okay.
Dave
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:
> eval() evaluates JavaScript, not XML or HTML.
Not quite true, in case of
eval("")
it will write to the html source, and then it's up
to browser how it will be interpreted, if its valid markup it will not say
anything, otherwise it will complain, that explains why you get those two
errors bel
I notice if the quote is escaped as... \'
then it works fine, the problem is it will display wrong looking exactly
like above, so I have to escape it 2 different ways...
Using ' the default in most cases, but using the \' just for this
javascript workaround.
Is this correct, there's got to be a b
On Fri, 2006-12-01 at 20:10 +0100, Thomas Thomas wrote:
> There is not much code for a FormBean in Java ...
> I don't see the point to have it in XML
Thomas,
The benefit is that you can edit the XML and redeploy without
recompiling your app.
Chris
--
Christopher D. Goldman
[EMAIL PROTECTED]
Actually its escaping it fine but it just doesnt work... The rendered html
looks like... Can anyone spot what's wrong? Don't see why this wouldn't set
the myNameProp.
On 12/1/06, Christopher Schultz <[EMAIL PROTECTED]> wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
Mississippi
My advice is that you start by installing tomcat, and then test it with a
struts-blank application...
|--
|SOF - Dragone
|Jose Luis
Hi
Can you please send me examples or link on how to start with struts
I'm working with easy eclipse 3.1 but unfortunately I don't have much idea
on how to setup struts on eclipse or how to run applications on it
Thanks
Jose
*** ADVERTENCIA *** - El contenido del presente mensaje y
There is not much code for a FormBean in Java ...
I don't see the point to have it in XML
From: Thomas Thomas [mailto:[EMAIL PROTECTED]
> Well there is still code in the XML,
> what's the point for having this code in XML then in Java in this
> case.
Less "code."
Dave
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
Mississippi John Hurt wrote:
> ';
> return
> true" property="takeaction" src="button.gif" >
Sorry, I didn't see that you were using . Is there a Struts tag
that can help you with this?
If not, you might have to do it yourself by writing a shor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
Mississippi John Hurt wrote:
> I have onclick handler which sets a form property via javascript.
> Problem is when the myWeirdName has a quote in the name, this breaks
> my javascript handling below.
I had this same problem using Velocity Tool
Well there is still code in the XML,
what's the point for having this code in XML then in Java in this case.
2006/12/1, Dave Newton <[EMAIL PROTECTED]>:
From: Thomas Thomas [mailto:[EMAIL PROTECTED]
> I don't know if I need to choose an ActionForm or DynaActionForm for
> the login page. When do
On 12/1/06, Mark Menard <[EMAIL PROTECTED]> wrote:
On 12/1/06 12:01 PM, "Don Brown" <[EMAIL PROTECTED]> wrote:
> Well, I had some free time (holding my new son to let mom get some
> sleep) and figured everyone deserved at least a reply. Yay for
> GMail's search.
>
> Anyways, cool, thanks for th
I don't work with tags, but why don't you create a String
variable and then use that in your onclick:
String strOnClick = whatever + "something else" + whatever2 + "return
true";
Gary
>>> [EMAIL PROTECTED] 12/1/2006 12:35:48 PM >>>
Hi,
I have onclick handler which sets a form property via jav
Hi,
I have onclick handler which sets a form property via javascript. Problem is
when the myWeirdName has a quote in the name, this breaks my javascript
handling below. Can anyone help me get around this easily? Thanks.
'; return
true" property="takeaction" src="button.gif" >
On Fri, 2006-12-01 at 12:16 -0500, Monkeyden wrote:
> Does anyone know of an OSS log file reporting tool? We're using a very old
> version of WebTrends, which usually works fine (but sometimes not). MGMT
> doesn't want to "pony up" so, well, you know. Was hoping that Apache had
> something.
Mon
On 12/1/06, Monkeyden <[EMAIL PROTECTED]> wrote:
I was referring to web server access log files, by which to generate traffic
reports. I looked at Chainsaw but it's basically just a log file viewer. I
need something that will process, and report on, a 10 million line
access.log file.
So... Ap
I was referring to web server access log files, by which to generate traffic
reports. I looked at Chainsaw but it's basically just a log file viewer. I
need something that will process, and report on, a 10 million line
access.log file.
On 12/1/06, Wendy Smoak <[EMAIL PROTECTED]> wrote:
On 12/
On 12/1/06 12:01 PM, "Don Brown" <[EMAIL PROTECTED]> wrote:
> Well, I had some free time (holding my new son to let mom get some
> sleep) and figured everyone deserved at least a reply. Yay for
> GMail's search.
>
> Anyways, cool, thanks for the update. I don't know of a better tag,
> but we ar
On 12/1/06, Monkeyden <[EMAIL PROTECTED]> wrote:
Does anyone know of an OSS log file reporting tool? We're using a very old
version of WebTrends, which usually works fine (but sometimes not). MGMT
doesn't want to "pony up" so, well, you know. Was hoping that Apache had
something.
What sort o
Does anyone know of an OSS log file reporting tool? We're using a very old
version of WebTrends, which usually works fine (but sometimes not). MGMT
doesn't want to "pony up" so, well, you know. Was hoping that Apache had
something.
I don't see why not...let us know what you find out.
Don
On 12/1/06, Dave Newton <[EMAIL PROTECTED]> wrote:
Hi,
Will XWorkList automagically do the right thing for a 2D array?
Uh... just noticed the docs say it's deprecated; would the S2 cookbook
recipe now just use an ArrayList anyway?
I ha
What Java version and application server are you using?
Don
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
Hi guys,
I am study Struts2. When I run struts-blank.war, I get some error trace. I
google internet but get nothing to solve this. Who can help me ?
Thanks.
javax.xml.transform.Tran
If you don't get any replies for Struts 2, google for webwork 2 as the
code is very similar.
Don
On 12/1/06, Martin Gainty <[EMAIL PROTECTED]> wrote:
Good Morning Everyone
If someone is interested in deploying Struts2 but is absolutely dedicated to
JRun 4 Appserver
Is/Are there any deploys av
Well, I had some free time (holding my new son to let mom get some
sleep) and figured everyone deserved at least a reply. Yay for
GMail's search.
Anyways, cool, thanks for the update. I don't know of a better tag,
but we are always open for a patch... :)
Don
On 12/1/06, Mark Menard <[EMAIL PR
Hi guys,
I am study Struts2. When I run struts-blank.war, I get some error trace. I
google internet but get nothing to solve this. Who can help me ?
Thanks.
javax.xml.transform.TransformerFactoryConfigurationError: Provider
org.apache.xalan.processor.TransformerFactoryImpl not found
jav
1.3.1 . I can visit Springframework.
On 12/2/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
How to look version of my subversion?
Thanks
On 12/1/06, P Y <[EMAIL PROTECTED]> wrote:
>
> what version of snv are you using?
>
>
> On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
> > Hi Wdndy,
> >
> >
How to look version of my subversion?
Thanks
On 12/1/06, P Y <[EMAIL PROTECTED]> wrote:
what version of snv are you using?
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
> Hi Wdndy,
>
> I can browser the http://svn.apache.org/repos/asf/struts/current . And I
> have tried 'https', but it d
what version of snv are you using?
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
Hi Wdndy,
I can browser the http://svn.apache.org/repos/asf/struts/current . And I
have tried 'https', but it doesn't work.
It's puzzled.
I will try again.
Thanks
On 12/1/06, Wendy Smoak <[EMAIL PROTECTED]>
Hi Wdndy,
I can browser the http://svn.apache.org/repos/asf/struts/current . And I
have tried 'https', but it doesn't work.
It's puzzled.
I will try again.
Thanks
On 12/1/06, Wendy Smoak <[EMAIL PROTECTED]> wrote:
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
> I can't get source code fr
On 12/1/06 10:51 AM, "Juan Espinosa" <[EMAIL PROTECTED]> wrote:
> All that is working ok but i cant get the validation working because every
> customer has its validation logic, i want to know if there is a way to
> validate this object programaticaly-..i dont want to create an action
> for
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
I can't get source code from Struts source code repository in the past
months. Now I also can't get any according to the instruction on the struts
homepage .
I guessed that a network error in the past. But this error is exists all the
time. Plea
Help me , please.
Thanks very much.
ZHaoren
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote:
Hi, guys
I can't get source code from Struts source code repository in the past
months. Now I also can't get any according to the instruction on the struts
homepage .
I guessed that a network error
Hi,
Will XWorkList automagically do the right thing for a 2D array?
Uh... just noticed the docs say it's deprecated; would the S2 cookbook
recipe now just use an ArrayList anyway?
I have a list of data a[0][0], a[1][0], a[2][0] and I'd like to be able
to [optionally] add an a[0][1] say, and an a
Sorry, I forgot to post that I found the mistake, a few days after my first
post and my holidays... I made an error in the action, just one letter wrong
("accueil" and "acceuil") and this was redirected to the "default" action...
whatever, thanks for your answer
Sebastien
On 12/1/06, Don Brown
Hi to all im making an application in struts2 where you can create diferrent
types of customer
I have two action the first one where you select the customer type you want
to create, when you select the customer type
i redirect to the correct view, to create the customer (i store in a session
variab
Hi, guys
I can't get source code from Struts source code repository in the past
months. Now I also can't get any according to the instruction on the struts
homepage .
I guessed that a network error in the past. But this error is exists all the
time. Please tell me whether you can check out normal
Hi All,
This is not a question about Struts or Java at all. But it might :-)
Here at work I have been assigned the creation of a tool with a nice Web
GUI so that a non technical user can create filters for reports we are
making. This of course means that the nice GUI is a Query Building Tool
that
Good Morning Everyone
If someone is interested in deploying Struts2 but is absolutely dedicated to
JRun 4 Appserver
Is/Are there any deploys available for Struts 2 to build JRun sars?
(does'nt appear to be too difficult a task but I was wondering if anyone has
been down that road)?
Thanks,
M-
On 12/1/06 3:21 AM, "Don Brown" <[EMAIL PROTECTED]> wrote:
>
> On 8/30/06, Mark Menard <[EMAIL PROTECTED]> wrote:
>> Is this following possible?
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> If it isn't how do you change the value of something on the value stack once
>> you are either into a JSP o
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Mark,
Mark Menard wrote:
> On 11/30/06 7:45 PM, "Christopher Schultz" <[EMAIL PROTECTED]>
> wrote:
>> Sorry for poking my nose in, but wouldn't this be horrendously
>> non-threadsafe?
>
> No problem. If your thinking of Actions from the perspective o
From: David H. DeWolf [mailto:[EMAIL PROTECTED] On Behalf Of David H.
> No worries, I just created it a week or so ago. I think that you
> submitted this before that ;)
*lol*
Usually I'm just oblivious; nice to know I wasn't for once! ;)
Dave
--
No worries, I just created it a week or so ago. I think that you
submitted this before that ;)
Dave Newton wrote:
From: Don Brown [mailto:[EMAIL PROTECTED]
On 10/12/06, Dave Newton <[EMAIL PROTECTED]> wrote:
(For future reference, what component should I have ticketed
this under? I wasn't su
Anything?
Is this going to end up being one of those things retro won't handle
because of the 1.5-specific ThreadLocal call?
From: Dave Newton [mailto:[EMAIL PROTECTED]
> Subject: [s2] 1130 nightly java 1.4 FilterDispatcher startup error
>
> Could not load user defined filter in web.xml:
> org.a
From: Don Brown [mailto:[EMAIL PROTECTED]
> On 10/12/06, Dave Newton <[EMAIL PROTECTED]> wrote:
>> (For future reference, what component should I have ticketed
>> this under? I wasn't sure so I put "unknown," sorry!)
>
> Use "Plugins".
Hmm, you'd think I'd have thought of that, huh :/
Dave
From: Thomas Thomas [mailto:[EMAIL PROTECTED]
> I don't know if I need to choose an ActionForm or DynaActionForm for
> the login page. When do u choose to make it a DynaActionForm ? What's
> the advantage of it.
No code; it's declarative.
Dave
--
Hi,
I'm using array notation in an s:textfield value attribute. The name
renders properly, the id is being rendered all funky with the index
value un-parsed and the various EL prefixes still in there, so it looks
something like exdata_[%{#status.index}]__foo.
I was following the guidelines in the
On 12/1/06, Tarek Nabil <[EMAIL PROTECTED]> wrote:
I'm open to any suggestions on how to get to the bottom of this issue.
Maybe it's this
* http://forums.opensymphony.com/thread.jspa?messageID=94747𗈛
The sample was testing GET but not POST.
-Ted.
Thanks Ted.
This is getting interesting. I was really surprised that it worked for you, I
couldn't even wait til the weekend is over. On my extremely slow laptop at
home, I went and downloaded Tomcat 5.5.20 and Struts 2.0.1, and tried it.
Surprisingly, it DOES work!
I've been trying this fro
Why do you need to modify? What about just pushing something else
that effectively overrides the existing value?
Don
On 8/30/06, Mark Menard <[EMAIL PROTECTED]> wrote:
Is this following possible?
If it isn't how do you change the value of something on the value stack once
you
Thank you all for your replies! They have been very helpful. I'm happy to
have found such an active forum.
Thanks again.
--
View this message in context:
http://www.nabble.com/Struts-2-and-passing-data-using-interceptors-tf2734105.html#a7634983
Sent from the Struts - User mailing list archive a
This is so Struts can support both Velocity and Freemarker with
Sitemesh. The end user shouldn't have to ever see it.
Don
On 9/27/06, Garner Shawn <[EMAIL PROTECTED]> wrote:
Can somebody show me an implementation of this class?
I'm not sure what I'm suppose to do with the abstract method.
Sha
Nope...is this still a problem?
Don
On 9/27/06, Garner Shawn <[EMAIL PROTECTED]> wrote:
I'm seeing some kind of inconsistent rendering and I don't know why:
Home
|
Products
renders as
Home
|
Products
Any help?
-
To
That is strange. Perhaps a Firefox thing? What happens when you try
other browsers?
Don
On 9/28/06, Labey Sébastien <[EMAIL PROTECTED]> wrote:
Hi,
I have a strange problem : I have 2 links in my page to change the locale. The "english"
and the "french" link are not build the same way (for t
Hi All,
I've an ArrayList that contains EmployeeID String objects. I need to
show the List box from this ArrayList with List value and Key being the
same EmployeeID.
Any sample code would be much helpful.
Regards
Tamil
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
On 10/12/06, Dave Newton <[EMAIL PROTECTED]> wrote:
From: Don Brown [mailto:[EMAIL PROTECTED]
> Hm..when extracting tiles into a plugin, we could have misplaced the
> TLD. Add a JIRA ticket for the issue so we don't forget it.
Done. (For future reference, what component should I have ticketed t
Hmm...what happens when you put the struts.xml file in a jar instead?
Also, recent changes, to be released in 2.0.2, allow you to write
Struts apps with no XML at all, so perhaps that will also be an
option.
Don
On 10/13/06, Juan Espinosa <[EMAIL PROTECTED]> wrote:
Hi to all, I have a question
You need to include the protocol "request:". Therefore, it should look like:
select="document('request:WEB-INF/pages/welcome.xml')/page" />
Don
On 10/27/06, Kimus Linuxus <[EMAIL PROTECTED]> wrote:
Hi,
I'm using the xslt resut type and I cant use xsl:include, xsl:import, or
document()!
I
68 matches
Mail list logo