Re: Struts 2.1 book

2009-11-04 Thread Dave Newton
James Cook wrote: I have that book and thoroughly enjoyed it, gave me a great platform for me to transition from S1 to S2... So I second the recommendation Thank you both very much--that means a lot to me. Stay tuned for "Inside Struts 2" as well, although I'm a bit delayed at the moment :/

RE: Struts 2.1 book

2009-11-02 Thread James Cook
Subject: RE: Struts 2.1 book You may want to get Dave Newton's apache struts 2 web application development book (2009, Packt Publishing) which covers many of the newer features of Struts 2.1.X. Bruce -Original Message- From: Muthu Velappan [mailto:muthu.velap...@aspiresys.com] Sent: S

RE: Struts 2.1 book

2009-11-02 Thread Phillips, Bruce A
09 10:30 PM To: 'Struts Users Mailing List'; w...@wantii.com Subject: RE: Struts 2.1 book Wes, I tried to get access to the MEAP Version lately but publisher site has mentioned that it has been taken out of print. Can we know the status of this book now, will it be published by so

RE: Struts 2.1 book

2009-11-01 Thread Muthu Velappan
] Sent: Monday, April 20, 2009 8:51 AM To: Struts Users Mailing List; w...@wantii.com Subject: Re: Struts 2.1 book thanks wes for the information...will try the MEAP version then Rgds Yanto On Mon, Apr 20, 2009 at 9:55 AM, Wes Wannemacher wrote: > On Sunday 19 April 2009 21:47:24 Yanto wr

Re: Struts 2.1 release date?

2009-08-06 Thread Dave Newton
hisameer wrote: Hi I am using Struts2.1.6 and trying to use DOJO inorder to use tabbed panel using this http://struts.apache.org/2.0.9/docs/ajax-and-javascript-recipes.html#AjaxandJavaScriptRecipes-Reloadtabscontentwhenselected link . I no able to see the tabs at all This is my jsp page: <%@

Re: Struts 2.1 release date?

2009-08-05 Thread hisameer
Hi I am using Struts2.1.6 and trying to use DOJO inorder to use tabbed panel using this http://struts.apache.org/2.0.9/docs/ajax-and-javascript-recipes.html#AjaxandJavaScriptRecipes-Reloadtabscontentwhenselected link . I no able to see the tabs at all This is my jsp page: <%@ taglib prefix="s"

Re: [Struts 2.1] Using a s:select with type conversion

2009-07-13 Thread Musachy Barroso
I don't think you can rely on the select tag for a list of dates, as it (obviously :)) doesn't know how to convert the dates to string. What I find strange is that looking at the freemarker code it seems to be like both the value and the caption should be the same (toString()): <@s.iterator value=

Re: [Struts 2.1]Does an alias result exist in struts 2?

2009-07-13 Thread Musachy Barroso
I think the only way to do that currently, is to define the 2 results with the same location. musachy On Mon, Jul 13, 2009 at 8:13 AM, dcabasson wrote: > > Hi all, > > I am wondering if there is an "alias" result in struts 2. > > The use case for such a result type would be for when some of the r

Re: Struts 2.1 Assigning a property to a JSP variable

2009-06-25 Thread gdown
Well I found 2 ways to assign an action's property to a JSP variable in a scriptlet: Solution 1: Set property as an attribute JSP: <% String myProductType = request.getAttribute("prodType") %> This takes the action's productType property and stores it as an attribute called prodType in the req

Re: Struts 2.1 Accessing the action instance from a JSP

2009-06-25 Thread gdown
I was able to get access to the action from the JSP as follows (it isn't pretty but it worked) JSP: <% com.opensymphony.xwork2.ognl.OgnlValueStack stack = (com.opensymphony.xwork2.ognl.OgnlValueStack)request.getAttribute("struts.valueStack"); MyAction myAction = (MyAction)stack.findValue("actio

Re: Struts 2.1 Accessing the action instance from a JSP

2009-06-25 Thread Wes Wannemacher
Does it have to be in a scriptlet? OGNL will let you call methods, assuming the action is on top of the stack (you aren't inside of another action from the s:action tag, or you aren't in an iterator that is iterating an object that has a matching method) - -Wes On Thu, Jun 25, 2009 at 2:08 PM,

Re: Struts 2.1 book

2009-04-21 Thread Dave Newton
Martin Gainty wrote: is anyone proofreading?..i'll sign up for a free copy > [...] > we cannot take responsibility over the the contents. I think we're doing okay, but thanks. Dave - To unsubscribe, e-mail: user-unsubscr...@

Re: Struts 2.1 book

2009-04-19 Thread Yanto
thanks wes for the information...will try the MEAP version then Rgds Yanto On Mon, Apr 20, 2009 at 9:55 AM, Wes Wannemacher wrote: > On Sunday 19 April 2009 21:47:24 Yanto wrote: > > Hi, > > > > Just wondering currently is there any book that cover Struts 2.1 ? > > try to google but so far

Re: Struts 2.1 book

2009-04-19 Thread Bhaarat Sharma
la > copie > > de ceci est interdite. Ce message sert à l'information seulement et > n'aura > > pas n'importe quel effet légalement obligatoire. Étant donné que les > email > > peuvent facilement être sujets à la manipulation, nous ne pouvons > accepter > >

Re: Struts 2.1 book

2009-04-19 Thread Chris Pratt
de ceci est interdite. Ce message sert à l'information seulement et n'aura > pas n'importe quel effet légalement obligatoire. Étant donné que les email > peuvent facilement être sujets à la manipulation, nous ne pouvons accepter > aucune responsabilité pour le contenu fourni.

RE: Struts 2.1 book

2009-04-19 Thread Martin Gainty
ponsabilité pour le contenu fourni. > From: w...@wantii.com > To: user@struts.apache.org > Subject: Re: Struts 2.1 book > Date: Sun, 19 Apr 2009 22:12:06 -0400 > > On Sunday 19 April 2009 22:07:00 Dave Newton wrote: > > Yanto wrote: > > > Just wondering current

Re: Struts 2.1 book

2009-04-19 Thread Wes Wannemacher
On Sunday 19 April 2009 22:07:00 Dave Newton wrote: > Yanto wrote: > > Just wondering currently is there any book that cover Struts 2.1 ? > > try to google but so far not found yet. > > Struts 2 Web Application Development includes S2.1, but is more of an > S2.1-based end-to-end webapp development

Re: Struts 2.1 book

2009-04-19 Thread Dave Newton
Yanto wrote: Just wondering currently is there any book that cover Struts 2.1 ? try to google but so far not found yet. Struts 2 Web Application Development includes S2.1, but is more of an S2.1-based end-to-end webapp development book rather than S2.1 reference, for which we have the documen

Re: Struts 2.1 book

2009-04-19 Thread Wes Wannemacher
On Sunday 19 April 2009 21:47:24 Yanto wrote: > Hi, > > Just wondering currently is there any book that cover Struts 2.1 ? > try to google but so far not found yet. > > Thanks & Regards > Yanto Yes, my book is in the works and when published, it will cover 2.1. You can find a link to it in my sig

Re: Struts 2.1 validation with annotations

2009-02-20 Thread Musachy Barroso
irection of what I am missing? >> >> >> Norris Shelton >> Software Engineer >> Sun Certified Java 1.1 Programmer >> Shelton Consulting, LLC >> ICQ# 26487421 >> AIM NorrisEShelton >> YIM norrisshelton >> >> >> >> >> __

Re: Struts 2.1 validation with annotations

2009-02-20 Thread billgloff
__ > From: Musachy Barroso > To: Struts Users Mailing List > Sent: Thursday, February 19, 2009 3:45:35 PM > Subject: Re: Struts 2.1 validation with annotations > > It seems like the default message for that validator is null. Try > adding a break p

Re: Struts 2.1 validation with annotations

2009-02-19 Thread Norris Shelton
List Sent: Thursday, February 19, 2009 3:45:35 PM Subject: Re: Struts 2.1 validation with annotations It seems like the default message for that validator is null. Try adding a break point to ValidatorSupport:getMessage and see if the defaultMessage is null. musachy On Thu, Feb 19, 2009 at 3:31

Re: Struts 2.1 validation with annotations

2009-02-19 Thread Musachy Barroso
It seems like the default message for that validator is null. Try adding a break point to ValidatorSupport:getMessage and see if the defaultMessage is null. musachy On Thu, Feb 19, 2009 at 3:31 PM, Norris Shelton wrote: > validateObject -- "Hey you! Would you help me to carry the stone?" Pin

Re: Struts 2.1 Tree Problem

2008-09-12 Thread Narayana S
i found solution to the parent node item. here is the code snippet .. *tree construction * - - *java Script code * dojo.event.topic.subscribe("treeExpand", function treeNodeExpanded(message) { alert(message.node.widgetId); }); while constructing the tree expandedNotifyTop

Re: Struts 2.1 Tree Problem

2008-09-11 Thread Jukka Välimaa
As far as I know, there is no way to set some nodes already extended server-side. You can open the nodes you want client-side using javascript, however. On Fri, Sep 12, 2008 at 6:48 AM, Narayana S <[EMAIL PROTECTED]> wrote: > Hi Jim, > >Thanks for your reply, tree control default shows

Re: Struts 2.1 Tree Problem

2008-09-11 Thread Narayana S
Hi Jim, Thanks for your reply, tree control default shows only root node, but 1. i want it to be shown extended by default to show the specified active node. 2. if i pass any node i want to find out the parent node of that node in the jsp page itself (in DOJO) i am kind of stuck in my

Re: Struts 2.1 Tree Problem

2008-09-11 Thread Jim Kiley
We aren't deliberately ignoring you... many readers of this list are in the Americas, and you sent your first message after most of us went to bed and your followup before most of us woke up. :-) (I have no idea what the answer to your question is, I have not used the tree control at all -- but wha

Re: Struts 2.1 Tree Problem

2008-09-11 Thread Narayana S
did any one see this email please help me On Thu, Sep 11, 2008 at 10:17 AM, Narayana S <[EMAIL PROTECTED]> wrote: > Hi, > >now i am working with tree control, when i load the tree i want to load > it default extended and what ever the node id i pass that should be > activated. how i can a

Re: Struts 2.1 release?

2008-08-28 Thread Laurie Harper
Oleg Mikheev wrote: Hi guys! What are the plans for v2.1 release? Is there any roadmap available? Like this one but with dates: http://cwiki.apache.org/S2WIKI/21-to-25-roadmap.html Thanks With dates; no. Work happens as the project's volunteers find time to do it. Anyone interested in forthc

Re: Struts 2.1 Tree Problem

2008-08-22 Thread Narayana S
Hi, Issue is solved and migration is successful with respect to tree control, i found solution in code pencil blog. Have a nice time. On Thu, Aug 21, 2008 at 6:44 PM, Narayana S <[EMAIL PROTECTED]> wrote: > Hi, > >i was using struts 2.0.11 and we know tree control is having some

Re: Struts 2.1 Tree Problem

2008-08-21 Thread Narayana S
Hello,,, Can any one please reply to this mail On Thu, Aug 21, 2008 at 7:05 PM, "Stephan Schröder" <[EMAIL PROTECTED]>wrote: > > some example i tried on struts-blank-2.1.2 it is working and recognizing > > events and responding. am i missing any imp" step in migration, is that >

Re: Struts 2.1 Tree Problem

2008-08-21 Thread Stephan Schröder
> some example i tried on struts-blank-2.1.2 it is working and recognizing > events and responding. am i missing any imp" step in migration, is that > replacing jar files is not enough for migration? many of the struts2-tags use the "var"-attribute instead of "name" and "id", now. I'm not sure w

Re: Struts 2.1 & AjaxAnywhere

2008-08-02 Thread Shoaib Gauhar
I did achieve the desired functionality but not with ajax anywhere. Rather i used Javascript and DWR to make it REFRESH free. Search google for DWR and displaytag it will provide you some examples. If you dont find any, you can always contact me. Shoaib dynamicd wrote: > > Hey Shoib, > > I ha

[FRIDAY]Re: Struts 2.1 & AjaxAnywhere

2008-08-01 Thread Musachy Barroso
> I have tried Ajax Anywhere with Struts 2.0.12 and it didnt get me anywhere.. that a great one-liner -- "Hey you! Would you help me to carry the stone?" Pink Floyd - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

Re: Struts 2.1 & AjaxAnywhere

2008-08-01 Thread dynamicd
Hey Shoib, I have tried Ajax Anywhere with Struts 2.0.12 and it didnt get me anywhere.. I did not see the ajax behavior. Did you get it to work. Canyou post some sample code. Shoaib Gauhar wrote: > > Hello, > > Has anyone tried AjaxAnywhere with Struts 2.1? My action class is never > called

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Chris Pratt
The Struts 2 Tag Libraries are completely written around OGNL and FreeMarker, which makes it hard to remove either of those technologies from the stack. I have written some tags, not based on the Struts 2 component support, that safely allow both JSTL and OGNL EL's and don't rely on FreeMarker. T

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Oleg Mikheev
Chris Pratt wrote: I proposed a method of enabling JSTL EL safely a while ago, but I haven't heard anything (or had any time to actually do anything about it myself). But if they had to get rid of one of two ELs why did they decide to keep OGNL? Isn't JSTL more popular and more standard? Oleg

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Jeromy Evans
Oleg Mikheev wrote: Hi And, where can I find the changes between Struts 2 and 2.1? http://cwiki.apache.org/S2WIKI/troubleshooting-guide-migrating-from-struts-20x-to-21x.html Release notes and migration guides are also a good start: 2.1.2: http://struts.apache.org/2.1.2/docs/version-notes-21

Re: Struts 2.1 tags + JSTL EL?

2008-07-15 Thread Chris Pratt
I proposed a method of enabling JSTL EL safely a while ago, but I haven't heard anything (or had any time to actually do anything about it myself). As far as the documentation, there is only one set of documentation in the Wiki and it always covers the latest version, so all the documentation avai

Re: Struts 2.1

2008-04-26 Thread Frans Thamura
On Sat, Apr 26, 2008 at 7:21 PM, Matthew Seaborn < [EMAIL PROTECTED]> wrote: > I heard that Struts 2.2 is going to eliminate the dependency on OGNL, > this so?. There is a JIRA Issue suggesting an upgrade to OGNL > 2.7(WW-2128) , does anyone > k

Re: Struts 2.1 TabbedPanel scenario

2008-04-04 Thread Shoaib Gauhar
It has definitely solved a big problem. Now, i can show the correct data of two tabs, submit them and have correct results. Actually, my case is very simple, as i told you that the two tabs will not be related, so, each tab will be submitted independently without needing each others data because t

Re: Struts 2.1 TabbedPanel scenario

2008-04-03 Thread Laurie Harper
Have you looked at the s:action tag? It sounds like that could solve at least part of your problem. I'm still not clear how you expect two actions designed in isolation to suddenly be able to work in tandem without modification. As I say, you can't submit a request to more than one action at on

Re: Struts 2.1 TabbedPanel scenario

2008-04-02 Thread Shoaib Gauhar
First of all, thanks for replying. I really appreciate it. Making a single action class will make the classes very bulky and complex. I dont want to have that. I used the remote tabs functionality in tabbed panel but all it does is that it goes into a infinite recursive loop. It adds infinite numb

Re: Struts 2.1 TabbedPanel scenario

2008-04-02 Thread Laurie Harper
Shoaib Gauhar wrote: Hello, Here is the scenrio. I have two action classes. ClassA and ClassB. There is no relationship among these classes. You might say that if there is no relationship then why i have to put them in one single jsp. Well its a client's requirement. That's an implementation d

Re: Struts 2.1 autocompleter, get the value

2008-03-27 Thread sassien
Ok, I finally managed to make it work. so now the answer... as I said, I did it exactly the same way as the example: Autocompleter 2 and here we never get the result (the selected thing). Of course if we want to have it we have to add name="mySelectedValue" and have a setMySelectedValue in

Re: Struts 2.1 autocompleter, get the value

2008-03-26 Thread sassien
Yes I mean to use the value on my action, and I did set name="myVar" and I do have a "myVar" field and a public setMyVar() method on my action. This is strange, because when I write my autocompleter this way: here the value is "stored" and I can use it in my action. But if I write exactly the s

Re: Struts 2.1 autocompleter, get the value

2008-03-26 Thread Musachy Barroso
By "get the selected value", do you mean to use the value on your action? If that is the case, all you have to do is set name="myVar", and then have a "myVar" field and a public setMyVar(...) method on your action. musachy On Wed, Mar 26, 2008 at 1:19 PM, sassien <[EMAIL PROTECTED]> wrote: > >

Re: Struts 2.1 sources - can I download them in a zip file?

2008-02-28 Thread Antonio Petrelli
2008/2/28, Yuval Rotem <[EMAIL PROTECTED]>: > > Can I download the sources in a zip file from somewhere? Not yet, at least for Struts 2.1.1 that has not been released yet. Sorry, but you *have to* use a SVN client. Antonio

Re: Struts 2.1?

2008-02-22 Thread Dave Newton
--- "M.Liang Liu" <[EMAIL PROTECTED]> wrote: > I would like to know how long it will last? Do you mean you want to know when it will be released? That I don't know. Dave > newton.dave wrote: > > --- Maria Lujan Salvadori <[EMAIL PROTECTED]> wrote: > >> Hello, is it available the new version 2.1?

Re: Struts 2.1?

2008-02-22 Thread M.Liang Liu
I would like to know how long it will last?u guys works hard... newton.dave wrote: > > --- Maria Lujan Salvadori <[EMAIL PROTECTED]> wrote: >> Hello, is it available the new version 2.1? Where can I download it? We >> want to migrate our project from 2.0.11 to 2.1 but we cannot find it > > 2.1

Re: Struts 2.1?

2008-02-22 Thread Giovanni Azua
hi, There was also started a troubleshooting/migration guide from 2.0.x to 2.1.x http://cwiki.apache.org/S2WIKI/troubleshooting-guide-migrating-from-struts-20x-to-21x.html regards, Giovanni Piero Sartini wrote: Am Donnerstag, 21. Februar 2008 20:21:33 schrieb Maria Lujan Salvadori: Hello,

Re: Struts 2.1?

2008-02-22 Thread Piero Sartini
Am Donnerstag, 21. Februar 2008 20:21:33 schrieb Maria Lujan Salvadori: > Hello, is it available the new version 2.1? Where can I download it? We > want to migrate our project from 2.0.11 to 2.1 but we cannot find it Be aware that there are a lot of incompatible changes between 2.0 and 2.1, so mi

Re: Struts 2.1?

2008-02-21 Thread Dave Newton
--- Maria Lujan Salvadori <[EMAIL PROTECTED]> wrote: > Hello, is it available the new version 2.1? Where can I download it? We > want to migrate our project from 2.0.11 to 2.1 but we cannot find it 2.1 has not been released as a "general availability" (GA) release. It may be built from source [1]

Re: struts 2.1: dojo plugin

2008-01-22 Thread Dave Newton
--- "Otto, Frank" <[EMAIL PROTECTED]> wrote: > where can I find the dojo plugin für struts 2.1? Use Maven and build from source. It's not released as a library at this point. d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For a

Re: struts 2.1 release date

2008-01-15 Thread rburton
First I wanted to say that I totally agree with Ted's view about the lack of support for Struts. I do believe that things for the Struts 2.x project will pick up now since the Holiday's are over now. I wanted to extend a personal thanks to all of the developers who contribute to the Struts 2 pro

Re: struts 2.1 release date

2008-01-12 Thread Ted Husted
I don't believe 2.1.0 is going to be rated more than a test-build. Usually, we start with a test-build, and then vote whether to release the build as a beta. If the feedback is good, we might then raise the quality of that version to General Availability. Hopefully, this will happen with 2.1.1 (tho

Re: struts 2.1 release date

2008-01-12 Thread Frans Thamura
hi there how about the 2.1 beta ?? wil we get it? F

Re: struts 2.1 release date

2008-01-11 Thread Ted Husted
There's a test-build available, * http://www.nabble.com/-S2--2.1.0-Test-Build-Available-tf4712874.html#a13471367 But, there are still a lot of outstanding patches to apply, and no one seems to have time to commit them right now. Sadly, despite being the most popular Java web framework on the p

Re: struts 2.1 release date

2008-01-11 Thread Dave Newton
--- "Otto, Frank" <[EMAIL PROTECTED]> wrote: > is there a deadline for struts 2.1 release? No. > I have download the nightly build, but I can't find the new dojo plugin. IIRC the plugins are not bundled in the nightly build. They can, however, be built from source, which is pretty straight-forwa

Re: Struts 2.1.x vs. 2.0.x

2007-12-21 Thread Alberto A. Flores
will do... thanks a lot! Dave Newton wrote: --- "Alberto A. Flores" <[EMAIL PROTECTED]> wrote: I was wondering about the differences between these two. I have heard a lot about some differences, but it doesn't look like the Apache site has a direct link to 2.1.x release. Is it even a release?

Re: Struts 2.1.x vs. 2.0.x

2007-12-21 Thread Dave Newton
--- "Alberto A. Flores" <[EMAIL PROTECTED]> wrote: > I was wondering about the differences between these two. I have heard a > lot about some differences, but it doesn't look like the Apache site has > a direct link to 2.1.x release. Is it even a release? Nope. > Should I be preparing our appl

Re: Struts 2.1.x

2007-12-19 Thread Nuwan Chandrasoma
Hi, I think the below link has a test build of struts 2.1 http://people.apache.org/builds/struts/2.1.0/ Thanks, Nuwan (http://code.google.com/p/struts2-ssl-plugin/) Frans Thamura wrote: i am seeking the S2 2.1.x binary anyone can share your binary so i can use and test the feature F

Re: Struts 2.1.x trunk "Could not find property" in tests and running ..

2007-11-12 Thread fergunet
But... how to remove them?? It prints thousand of warnings on my app. Jeromy Evans - Blue Sky Minds wrote: > > >> This is somehow connected to my question before on a migration guide, is > it needed? > > There's no migration guide from 2.0.x to 2.1.x. I agree one will be > needed because yo

Re: Struts 2.1 release date?

2007-11-08 Thread Ted Husted
And it will probably stay that way. We just wanted to get something out for people to try, while we work toward applying the rest of the outstanding patches. So far, we're about half-way through that process. * https://issues.apache.org/struts/browse/WW/fixforversion/21863 Of course even with al

Re: Struts 2.1 release date?

2007-11-08 Thread Dave Newton
Just to be clear, this is not a "release" in the strict sense of the word; it is currently a test build. Dave --- Pedro Herrera <[EMAIL PROTECTED]> wrote: > > I´m using 2.1 release. No problems...(to me). Dojo > plugin is working very > well !!! > > Herrera > > > > > Crocker, Patrick-2 wro

Re: Struts 2.1 release date?

2007-11-08 Thread Pedro Herrera
I´m using 2.1 release. No problems...(to me). Dojo plugin is working very well !!! Herrera Crocker, Patrick-2 wrote: > > > Working with Struts 2.0.x as an MVC framework has been a very enjoyable > experience. Working with Struts 2.0.x with the built-in Dojo > integration has been a frustra

Re: Struts 2.1 release date?

2007-11-08 Thread Antonio Petrelli
You can download the test build: http://people.apache.org/builds/struts/2.1.0/ But beware that no vote has been called to declare its quality. IMHO it won't be more than beta. Ciao Antonio 2007/11/8, Crocker, Patrick <[EMAIL PROTECTED]>: > > > Working with Struts 2.0.x as an MVC framework has bee

Re: struts 2.1 datetimepicker

2007-10-31 Thread Musachy Barroso
modifying the current datetimepicker would be near impossible (as you would en up with a completely different widget :) ), I'd advice to just use a template with a few fields for the different parts and add validation. musachy On 10/31/07, Brian Relph <[EMAIL PROTECTED]> wrote: > thank you > > i

Re: struts 2.1 datetimepicker

2007-10-31 Thread Brian Relph
thank you i have requirements to have the date-picker split up into separate input boxes instead of a single one ... i do have an existing split-date date-picker, but i did not write a template for it, and it also does not have a validator what would be easier? writing a validator and maybe a t

Re: struts 2.1 datetimepicker

2007-10-31 Thread Musachy Barroso
you need to add to your page. musachy On 10/31/07, Brian Relph <[EMAIL PROTECTED]> wrote: > Hi, I was hoping to get some help with the date time picker in struts 2.1. > > I have added the dojo plugin to my project: > > > org.apache.struts > struts2-dojo-plugin >

Re: Struts 2.1.x trunk "Could not find property" in tests and running ..

2007-10-30 Thread Jeromy Evans
This is somehow connected to my question before on a migration guide, is it needed? There's no migration guide from 2.0.x to 2.1.x. I agree one will be needed because you can't simply change jars over, but I don't think users should be switching over on-mass anyway yet. If you want to star

Re: Struts 2.1.x trunk "Could not find property" in tests and running ..

2007-10-30 Thread Pedro Herrera
I´m having the same problem to building struts 2.1.x trunk ... 'Could not find property [#attr.theme]' Herrera Giovanni Azua-3 wrote: > > hi, > > While building Struts 2.1.x trunk branch test cases I get tons of this > kind of warnings: > > WARNING: [57:14.332] Could not find property [#

Re: struts 2.1 - Is good enought ?

2007-10-28 Thread Tom Schneider
What's missing is an official release. If I were you, I would wait until there is a GA release for the 2.1.x series before running it in production. Pedro Herrera wrote: > > Is struts 2.1 good enought to a productuion environment ? what´s missing ? > > > Herrera > > -- View this message

RE: struts 2.1 beta

2007-10-04 Thread Jason Wyatt
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, 4 October 2007 9:27 PM To: Struts Users Mailing List Subject: Re: struts 2.1 beta We did all of the things described in the performance-tuning tips. But we've been using intensively ajax tag (d

Re: struts 2.1 beta

2007-10-04 Thread Ted Husted
PROTECTED] > 04/10/2007 13:08 > Veuillez répondre à > "Struts Users Mailing List" > > > A > "Struts Users Mailing List" > cc > > Objet > Re: struts 2.1 beta > > > > > > > For performance problems, be sure to follow the advice

Re: struts 2.1 beta

2007-10-04 Thread meissa . sakho
TECTED] 04/10/2007 13:08 Veuillez répondre à "Struts Users Mailing List" A "Struts Users Mailing List" cc Objet Re: struts 2.1 beta For performance problems, be sure to follow the advice on this page. * http://struts.apache.org/2.x/docs/performance-tuning.html

Re: struts 2.1 beta

2007-10-04 Thread Ted Husted
of the century. > > Meissa > > > > > > > Dave Newton <[EMAIL PROTECTED]> > 25/09/2007 14:56 > Veuillez répondre à > "Struts Users Mailing List" > > > A > Struts Users Mailing List > cc > > Objet > Re: struts 2.1 beta &g

RE: struts 2.1 beta

2007-09-28 Thread Wesley Wannemacher
How are you trying to download/build the beta? Maven? What sort of problems are you having? Compile issues, deployment issues? Did you try the nightly build? If you are building from SVN using Maven, this might be helpful - http://www.nabble.com/struts-2.1-beta-tf4509951.html#a12880737 -Wes

RE: struts 2.1 beta

2007-09-25 Thread Engelking, Nicholas
Thanks. Worked like a charm. -Nick -Original Message- From: Wesley Wannemacher [mailto:[EMAIL PROTECTED] Sent: September 25, 2007 10:28 AM To: Struts Users Mailing List Subject: RE: struts 2.1 beta Stupid line breaks! svn co http://svn.opensymphony.com/svn/xwork/trunk xwork ; cd

RE: struts 2.1 beta

2007-09-25 Thread Wesley Wannemacher
Stupid line breaks! svn co http://svn.opensymphony.com/svn/xwork/trunk xwork ; cd xwork ; mvn -Dmaven.test.skip=true -Pall ; cd .. ; svn co https://svn.apache.org/repos/asf/struts/current/ struts ; cd struts/struts2 ; mvn -Dmaven.test.skip=true -Pall (in case things get re-wrapped again,

RE: struts 2.1 beta

2007-09-25 Thread Wesley Wannemacher
up to date or pointing to > the wrong dependencies. > > -Original Message- > From: Dave Newton [mailto:[EMAIL PROTECTED] > Sent: September 25, 2007 8:56 AM > To: Struts Users Mailing List > Subject: Re: struts 2.1 beta > > If you want a complete build of an un-r

RE: struts 2.1 beta

2007-09-25 Thread Engelking, Nicholas
Subject: Re: struts 2.1 beta If you want a complete build of an un-released version then AFAIK you need to build it from source. The repository contains the dependent libraries. The nightly builds are just that, builds, not distributions (again, AFAIK). --- [EMAIL PROTECTED] wrote: > I just need

Re: struts 2.1 beta

2007-09-25 Thread Antonio Petrelli
2007/9/25, [EMAIL PROTECTED] < [EMAIL PROTECTED]>: > > I hope that we'll get it before the end of the century. Fee foo fud, I smell troll blood :-) Antonio

Re: struts 2.1 beta

2007-09-25 Thread meissa . sakho
sa Dave Newton <[EMAIL PROTECTED]> 25/09/2007 14:56 Veuillez répondre à "Struts Users Mailing List" A Struts Users Mailing List cc Objet Re: struts 2.1 beta If you want a complete build of an un-released version then AFAIK you need to build it from source. The reposit

Re: struts 2.1 beta

2007-09-25 Thread Dave Newton
ewton <[EMAIL PROTECTED]> > 25/09/2007 14:28 > Veuillez répondre à > "Struts Users Mailing List" > > > A > Struts Users Mailing List > cc > > Objet > Re: struts 2.1 beta > > > > > > > --- Oleg Mikheev <[EMAIL PROTE

Re: struts 2.1 beta

2007-09-25 Thread meissa . sakho
AIL PROTECTED]> 25/09/2007 14:28 Veuillez répondre à "Struts Users Mailing List" A Struts Users Mailing List cc Objet Re: struts 2.1 beta --- Oleg Mikheev <[EMAIL PROTECTED]> wrote: > Dave Newton wrote: > >> I have just renamed it to struts2-core.jar and > &

Re: struts 2.1 beta

2007-09-25 Thread Dave Newton
--- Oleg Mikheev <[EMAIL PROTECTED]> wrote: > Dave Newton wrote: > >> I have just renamed it to struts2-core.jar and > >> replaced in my application that was working with > >> 2.0.9 version. > > > > You can't just randomly replace libraries. > > You can replace 2.0.8 with 2.0.9, but you can't >

Re: struts 2.1 beta

2007-09-25 Thread Oleg Mikheev
Dave Newton wrote: I have just renamed it to struts2-core.jar and replaced in my application that was working with 2.0.9 version. You can't just randomly replace libraries. You can replace 2.0.8 with 2.0.9, but you can't replace 2.0.9 with 2.1.0 This is what they call a rule of thumb 8-) ht

Re: struts 2.1 beta

2007-09-25 Thread Dave Newton
--- [EMAIL PROTECTED] wrote: > I have picked the latest struts2-core version from > here : > http://people.apache.org/builds/struts/nightlies/2.x/ > > I have just renamed it to struts2-core.jar and > replaced in my application that was working with > 2.0.9 version. You can't just randomly replac

Re: struts 2.1 beta

2007-09-25 Thread meissa . sakho
application performance. Do I have to replace other librairies ? If so, where where could I find them. Meissa Dave Newton <[EMAIL PROTECTED]> 25/09/2007 12:22 Veuillez répondre à "Struts Users Mailing List" A Struts Users Mailing List cc Objet Re: struts 2.1 beta

Re: struts 2.1 beta

2007-09-25 Thread Dave Newton
--- [EMAIL PROTECTED] wrote: > I have replaced the nightly build version with the > 2.0.9 one. I'm getting the errors below at startup. What do you mean, "replaced the nightly build version"? In a 2.0.9 app? Are you using the correct versions of the support libraries for a 2.0.9 app? d. ---

Re: struts 2.1 beta

2007-09-25 Thread meissa . sakho
a:203) Dave Newton <[EMAIL PROTECTED]> 25/09/2007 11:50 Veuillez répondre à "Struts Users Mailing List" A Struts Users Mailing List cc Objet Re: struts 2.1 beta --- [EMAIL PROTECTED] wrote: > when I download the > struts2-core-2.1.0-SNAPSHOT-20070925.jar, it'

Re: struts 2.1 beta

2007-09-25 Thread Dave Newton
--- [EMAIL PROTECTED] wrote: > when I download the > struts2-core-2.1.0-SNAPSHOT-20070925.jar, it's about > > 630 ko size. > The 2.0.9 struts-core version is about 2500 ko size. > Why are those files sizes so differents ? Pseudo-shell: jar tf 2.0.8-core | sort > 2.0.8-files jar tf 2.1-core | sor

Re: struts 2.1 beta

2007-09-25 Thread meissa . sakho
iling List" A Struts Users Mailing List cc Objet Re: struts 2.1 beta [EMAIL PROTECTED] wrote: > I would like to build the struts 2.1 dev version. > Can someone tells where I could find it. http://people.apache.org/buil

Re: struts 2.1 beta

2007-09-24 Thread Dave Newton
[EMAIL PROTECTED] wrote: > I would like to build the struts 2.1 dev version. > Can someone tells where I could find it. http://people.apache.org/builds/struts/nightlies/2.x/ d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: struts 2.1 release availlability

2007-08-30 Thread Ted Husted
No one actually knows. Our releases are driven by peer-review and take an indeterminate amount of time. We may start rolling test distributions of Struts 2.1 soon, but it usually takes four to six of those before we have one ready to distribute to the general public, and we haven't even done one y