Re: splitting on a period ? <- please ignore

2008-06-04 Thread Vinny
Sorry, I sent this to the wrong "user" list. On Wed, Jun 4, 2008 at 11:06 PM, Vinny <[EMAIL PROTECTED]> wrote: > OK, this one baffles me :) > > "file.txt".split(".") produces an empty array ? > > > > > > testing it on the gr

splitting on a period ?

2008-06-04 Thread Vinny
OK, this one baffles me :) "file.txt".split(".") produces an empty array ? testing it on the groovysh, (trying to that more often before posting on the list) : groovy:000> mysplit = "file.txt".split(".") ===> [Ljava.lang.String;@73b4f342 groovy:000> mysplit.size() ===> 0 groovy:000> printl

Re: Help on

2008-03-31 Thread Vinny
What version of struts? Data-source got deprecated at some point. I forget the version. On 4/1/08, Chen Chunwei <[EMAIL PROTECTED]> wrote: > Hi all, > > I've configured a data source at struts-config.xml. This data source use > oracle thin jdbc driver. And I've already included the ojdbc.jar. Al

Re: [S2] encode

2008-02-13 Thread Vinny
I am having an issue with s:url as well I set s:url's encode="true" I want to Data.asp?id=1&subId=2 to look like: Data%2Easp%3Fid%3D1%26subId%3D2 What I get instead is Data.asp?id=1&subId=2 Is this the expected behavior? Don't know if this is the problem the original poster had. Thanks On Jan

Re: Struts 2.0.11 + Tiles 2.0.5

2008-01-03 Thread Vinny
Did you by chance build your project from the info on this page? http://struts.apache.org/2.0.11/docs/struts-maven-archetypes.html the archetype is uses as an example is old (2.0.5). Should a Jira be opened to correct this? On Jan 3, 2008 9:02 AM, Marcin Pietraszek <[EMAIL PROTECTED]> wrote: > 20

Re: what is going on? struts 2

2007-12-23 Thread Vinny
What exactly is the problem? On Dec 23, 2007 11:27 PM, Ray <[EMAIL PROTECTED]> wrote: > my struts.xml > > > > > > > > WelcomeAction > ${username} > > - > To unsubscribe, e-mail: [EMAIL

Re: Bug: getModel called twice - Status?

2007-12-06 Thread Vinny
So should we not being using ModelDriven until struts 2.1.x is released? On Dec 6, 2007 5:03 PM, Dave Newton <[EMAIL PROTECTED]> wrote: > --- Martin Gainty <[EMAIL PROTECTED]> wrote: > > any idea when the official xwork 2.1 GA will be available??? > > > From: "Wes Wannemacher" <[EMAIL PROTECTED

Re: zoning out on some basic LazyDynaMap usage for a text field property?

2007-11-30 Thread Vinny
Hmm, I've never tried using lazy inside a standard ActionForm, the ones that I have work inside of a DynaValidatorActionFom (say that 3 times fast). Don't feel like writing a reset method? you are getting old Rick. On Nov 30, 2007 7:17 PM, Rick Reumann <[EMAIL PROTECTED]> wrote: > I swore I used

Re: Struts URLs for perfectionists like Ebay's URLs

2007-10-02 Thread Vinny
Also, you might want to look at URLRewrite http://tuckey.org/urlrewrite/ That is what I've been using in S1 and S2 to have my urls go from this : /myAction.do?p1=v1&p2=v2 to /myAction/p1,v1/p2,v2/ I'm also using the zero config and code behind plugins in struts2 that also work to hide

Re: Struts URLs for perfectionists like Ebay's URLs

2007-09-19 Thread Vinny
Can you give an example of what you are trying to do? There a few plugins/tools/filters that can effect urls in struts and webapps in general On 9/20/07, Vo Van Thuong <[EMAIL PROTECTED]> wrote: > > Hi, > I'm very interested in Ebay's Urls, > would someone pls give me some ideas about Ebay's Urls.

Re: Avoiding OGNL, or getting fancier with it.

2007-09-18 Thread Vinny
Very cool. I was able to get mine working with: Action Class : List beanList; .getter/setter in the jsp: ... on submit I access my List of beans with List mysubmittedList = getBeantList() ; On 9/18/07, Dave Newton <[EMAIL PROTECTED]> wrote: > &g

Re: Avoiding OGNL, or getting fancier with it.

2007-09-18 Thread Vinny
I will give this a try as well. I have been wrestling with getting my indexed values back from my jsp's forms. In struts 1.1+ , this was handled well by using nested tags. Nested used to produced arrays ( myBean[0].propertyName for example) of values that struts 1.x was able to pick back up in th

Re: pass parameters to action

2007-09-07 Thread Vinny
I do. On 9/7/07, Christopher Schultz <[EMAIL PROTECTED]> wrote: > > Who really cares whether the URL is long or not? > > - -chris > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.4.7 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFG4Zmw9CaO5/Lv0PARAr4EAKCFB

Re: action mapping roles attribute in struts 2

2007-08-29 Thread Vinny
Is this what you are looking for? http://struts.apache.org/2.x/struts2-core/apidocs/org/apache/struts2/interceptor/RolesInterceptor.html On 8/29/07, akash agrawal <[EMAIL PROTECTED]> wrote: > > Hi, > > In struts 1.x there used to be roles attribute which can be used to > associate role informatio

Re: [S2 Tip] Use namespaces to organize your application into logical "modules"

2007-03-23 Thread Vinny
yes, little tips like this are appreciated. On 3/23/07, Harring Figueiredo <[EMAIL PROTECTED]> wrote: Ted, Thank you so much for sending this out. I was wandering what was the difference between namespace and package. I guess this explain well. Thanks ! hff On 3/23/07, Ted Husted <[EMAIL PR

Re: [FRIDAY] WebDev Pushmi-Pullyu

2007-03-09 Thread Vinny
I'm just happy your post didn't conclude with "... and that is why I'm switching to Flex..." It's Friday, Vinny On 3/9/07, Ted Husted <[EMAIL PROTECTED]> wrote: Just some rambling ruminations from my blog ... As might be expected, the Struts 2 GA announcem

Re: how to set role for JAASRealm

2007-03-05 Thread Vinny
Seems like this question should go to tomcat-users On 3/5/07, shahab <[EMAIL PROTECTED]> wrote: Hi: I am trying to implement authentication and authorization using JAASRealm. (I am following the instruction provided at - http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html). I have the fo

struts2-config-browser-plugin

2007-02-28 Thread Vinny
FYI: I don't see the struts2-config-browser-plugin version 2.0.6 in the apache maven repo. I had to grab it out of struts2-all zip file. I _do_ see a struts2-config-browser-plugin in the repo with a version of 2.0.6-SNAPSHOT, unfortunately it has a dependency for struts _1.3.5_ in it's POM. Plea

Re: [ANN] Struts 2.0.6 GA release available

2007-02-23 Thread Vinny
Congrats! On 2/23/07, Ted Husted <[EMAIL PROTECTED]> wrote: The Apache Struts group is pleased to announce that Struts 2.0.6 is available as a "General Availability" release. The GA designation is our highest quality grade. Apache Struts 2 is an elegant, extensible framework for creating enterp

Re: [s2] Groovy Actions in Struts 2

2007-02-13 Thread Vinny
I read trough your blog entry. This is brilliant. I'm a groovy newbie myself and I plan to tinker with Groovy actions. Perhaps s2 might end up becoming a nice web platform for Groovy in addition to Grails. On 2/13/07 3:22 PM, "Ian Roughley" <[EMAIL PROTECTED]> wrote: > Very cool. If only Gro

Re: IRC #struts on freenode

2007-01-30 Thread Vinny
Ok, it's kind of a late reply but this is the best irc client I've found for OSX thus far, it's an Aqua version of good ole X-Chat. Come join us #struts on freenode http://www.versiontracker.com/dyn/moreinfo/macosx/17132 On 8/29/06, James Mitchell <[EMAIL PROTECTED]> wrote: I need to find

OT: Bespoke

2006-05-04 Thread Vinny
bespoke. Wow. Please setlle this bet among our dev team that you _must_ be Brittish. On 5/4/06, Adam Hardy <[EMAIL PROTECTED]> wrote: - you would have a bespoke exception superclass -- Ghetto Java: http://www.ghettojava.com -

Re: Migration Path

2006-05-04 Thread Vinny
ave to make to your application. Don On 5/4/06, Vinny <[EMAIL PROTECTED]> wrote: > Hello, > Since it seems pretty much settled that SAF2 == WW2 with > different package names. I'm ready to get my head wet now with WW. > I know the transition will be easier if I wait ... y

Migration Path

2006-05-04 Thread Vinny
s and incrementally change things as needed. Is that true? Thanks, Vinny -- Ghetto Java: http://www.ghettojava.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: friday ha ha

2006-04-20 Thread Vinny
Yeah, hell yeah! On 4/20/06, Don Brown <[EMAIL PROTECTED]> wrote: > Well said Ted! I'll add that while my attentions have lately been mostly > towards getting WebWork 2 of the incubator and starting Struts Action 2, I > certainly am not abandoning Struts Action 1. While all the activity might >

OT: Re: friday ha ha

2006-04-18 Thread Vinny
Like how xdoclet should die? Heh, I'm still using xdoclet 1.x (will never go to xdoclet2 ) until an @Annotations based replacement shows itself > > Struts 1.x shall be allowed to die and rest in peace. > > regards, > > [ Konstantin Pribluda http://www.pribluda.de ] > Still usin

Re: The Mytical stagnation

2006-03-30 Thread Vinny
What are the popular technologies in your area? On 3/30/06, Joel Alejandro Espinosa Carra <[EMAIL PROTECTED]> wrote: > Konstantin Priblouda wrote: > > > > > --- Jonathan Revusky <[EMAIL PROTECTED]> wrote: > > > > > >> Since I don't see that, I have to conclude that most > >> people don't grok what

Re: The Mytical stagnation

2006-03-29 Thread Vinny
Jon, I think most of use were well aware of the merger. See : http://marc.theaimsgroup.com/?l=struts-user&m=113321040221316&w=2 We've hashed over this before you showed up: and this : http://marc.theaimsgroup.com/?t=11334881332&r=1&w=2 You might want search our archive a bit. > >> > >> Any

Re: Why did Struts development stagnate?

2006-03-29 Thread Vinny
Yes, I am "that" old. 38 and still kicking! On 3/29/06, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > On 3/29/06, Jonathan Revusky <[EMAIL PROTECTED]> wrote: > > Vinny wrote: > > > I still say that struts 1.x has not "lost" to webwork. > >

Re: Why did Struts development stagnate?

2006-03-29 Thread Vinny
There have been many time in history when an individual catholic _has_ been more catholic than the Pope. I am simply giving my opinion. On 3/29/06, Jonathan Revusky <[EMAIL PROTECTED]> wrote: > Vinny wrote: > > I still say that struts 1.x has not "lost" to webwo

Re: Why did Struts development stagnate?

2006-03-29 Thread Vinny
I still say that struts 1.x has not "lost" to webwork. When I do a quick unscientific search on monster.com for "struts" I get over 1000 jobs listed. The same search for "webwork" yields 22 jobs. Apparently struts "won" on the business front, I don't think that is even debatable. Now if we want to

Re: Debate and Free Speech 101

2006-03-29 Thread Vinny
Actually he has. The apache project known as iBAtis: http://ibatis.apache.org > In closing, Larry, who are you to be telling me that I should be doing > this, that or the other thing? Have you made any comparable contribution > to this application space? > > Jonathan Revusky > -- > lead deve

Re: maintaining human standards [was Re: [FRIDAY] Re: has struts reached the saturation]

2006-03-27 Thread Vinny
Maybe it's time we heard from the WW2 guys? Does Jonathan represent the viewpoint of the WW2 developers that are coming on board? Seriously I'd rather use Spring, Wicket or Rife than use something made by people like this guy. On 3/27/06, Jonathan Revusky <[EMAIL PROTECTED]> wrote: > Michael Jo

Re: Get a list of defined Struts actions at runtime

2006-03-24 Thread Vinny
I'm just throwng this out there but, is this something that could be solved a little easier with annotations? I just got my Thinking in Java (4th ed) recently, so don't hate on me. Peace On 3/24/06, Brantley Hobbs <[EMAIL PROTECTED]> wrote: > > > At runtime I need to get a list of /all/ the act

Re: Struts Tutorial

2006-03-24 Thread Vinny
Depends, do Ferrari and Fiat engineeers use the same mailing list? On 3/24/06, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > On 3/24/06, Larry Meadors <[EMAIL PROTECTED]> wrote: > > On 3/24/06, James Mitchell <[EMAIL PROTECTED]> wrote: > > > As far as products, right now there is Action and Shal

the ValidateExtends extension

2006-03-24 Thread Vinny
I've been using the ValidateExtends extension to validate nested dynaform to great effect. Currently , it provides no method of using the client side (javascript) stuff. Any plans for that to be included? Will this become a non-issue in the new Action framework? http://www.niallp.pwp.blueyonder.c

Re: Struts Tutorial

2006-03-24 Thread Vinny
I'm still lobbying for a mailing list split. struts_shale struts_action Too much context switching going on here for my poor brain. Yeah I know filters, label, dogs and bees. Anyone with me on this ? On 3/24/06, Dave Newton <[EMAIL PROTECTED]> wrote: > James Mitchell wrote: > > As far as produ

Has this thread reached it's saturation point yet?

2006-03-21 Thread Vinny
My 2 cents. Struts is great. Struts pays my mortgage and allows my kids to go to a better private school. Most recently , struts upgraded my powerbook to a macbook pro. Honestly, I don't listen to the struts-haters anymore than I listened to the Apple-haters. Craig's invention was great, is great a

Client Side Validation

2006-03-21 Thread Vinny
into the docs after all these years. Thanks in advance. Vinny -- Ghetto Java: http://www.ghettojava.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Ok, I'll bite. Struts + Webwork = Struts Ti?

2005-11-28 Thread Vinny
I found this very interesting this morning: http://www.theserverside.com/news/thread.tss?thread_id=37794#192216 and this as well http://www.javalobby.org/java/forums/t55018.html I guess I should not be that suprised since Xwork was mentioned here: https://www.twdata.org/projects/struts-ti --

Re: [OT] Hibernate vs. iBatis vs. POJO

2005-07-25 Thread Vinny
Yo Rick! I think that statement was in regard to self-implemented (inflicted?) POJO DAOs, not IBATIS in particular. > The fact that you state: > > "You'll spend all your time writing grunt-work plumbing and error > handling and maintenance is a nightmare." > > only shows you haven't even tri

Re: Why stick with struts.

2004-11-10 Thread Vic (Vinny) Cekvenich
I did not publish yet. It based on a working sample app based on chain command controller/dispatcher and hessian (so no view at all, just a dispatcher and very KISS). I will put it up there. I guess it will take me a month or 3. .V Niall Pemberton wrote: Can't remember what your proposal was Vic

Re: Why stick with struts.

2004-11-10 Thread Vic (Vinny) Cekvenich
://raibledesigns.com/page/rd?anchor=can_you_base_a_web Niall - Original Message - From: "Vic (Vinny) Cekvenich" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 10, 2004 1:17 PM Subject: Re: Why stick with struts. I am not aware of sucessfull prod

Re: Why stick with struts.

2004-11-10 Thread Vic (Vinny) Cekvenich
Mark Lowe wrote: I bet you don't hate saying it that much :o) :-) these 5 minute examples get tiresome. The books are full of them. Not all books. http://www.amazon.de/exec/obidos/ASIN/3898642844/qid=1100095286/ref=pd_ka_0/302-4029301-6736807 Above best selling Struts book (in German for now :-(

Re: AW: Paged data output

2004-11-10 Thread Vic (Vinny) Cekvenich
Also iBatis DAO w/ Displaytag. BUT I allways do paginiation in DB. For example select limit ofset. Depends of what you think lots of products are (and if you also have lots of users) .V Stahlhut, Axel wrote: Hi Yaroslav, try the displaytag tag library (http://displaytag.sourceforge.net/). May

Re: Why stick with struts.

2004-11-10 Thread Vic (Vinny) Cekvenich
Mark Lowe wrote: Having tried to make the move to JSF (as there are many things I really like about it) I've had to admit defeat and I'm looking back to struts. Welcome back. I hate to say "I told you so". No amout of skill or effort would have helped you. You have 1 backing bean which controls

[ANN] "Struts" meeting in Zürich on 23rd

2004-11-10 Thread Vic (Vinny) Cekvenich
http://www.ch-open.ch/events/2004/struts.html .V - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Local (server based) search engine?

2004-11-10 Thread Vic (Vinny) Cekvenich
Take a look at Apache Lucene for FTS (it's the Struts of FTS), it rocks. And ... the Struts based CMS portal: http://infonoia.com/en/content.jsp?d=inf.01.05 (award wining, w/ training videos) .V Joachim Dagerot wrote: Best practice to incorporate a search engine in a struts environment? I'm wri

Re: PoweredBy stories (was Are there ...)

2004-11-09 Thread Vic (Vinny) Cekvenich
Hey thanks!! G version would be: http://danrp1.1up.com (one of the programers) http://struts.1up.com (lead) But then again that would not a lot of page hits for the ads. I was going to say that each of the tiles has db content, but is fast 'cuase iBatis caches reacent hits so hot spots do not touc

Re: Are there Struts Applications in real life out there?

2004-11-09 Thread Vic (Vinny) Cekvenich
This site generates $25MM for Ziff Davis in adds: http://1up.com/do/feature?cId=3136154 See the do? and ? gets the article id from db via ibatis v2. You can click arround, and see tiles, it's very tiles. 100 or so types of pages, each with many configurable tiles and each w/ dynamic content. Ex: h

Re: AW: Are there Struts Applications in real life out there?

2004-11-09 Thread Vic (Vinny) Cekvenich
Stahlhut, Axel wrote: . I know very well which books there are written about struts, as i read them all, i thin (at least that ones in english). Hm. You read all 19 books on Struts? ;-) > i know that there are still a lot of decision-makers around that do not trust OpenSource products in their p

Re: A new paradigm of Struts development

2004-11-09 Thread Vic (Vinny) Cekvenich
Jesse Alexander (KBSA 21) wrote: JSF will be part of J2EE (as of version 1.5). That will make it hard to explain to "pointy hairy boss" type managers why one wants to use another framework. So is EJB a part of J2EE for a lot longer, and people avoid it. .V

Re: A new paradigm of Struts development

2004-11-08 Thread Vic (Vinny) Cekvenich
Tak, just so you know, source is here: http://svn.apache.org/repos/asf/struts/trunk (of course I am unhappy about JSF part ) .V Tak Yoshida wrote: Craig, Thank you so much for useful information about Struts in the future. I didn't know that Struts 2.0 will support Page oriented programming, and am

Re: Tomcat/5.5.3 with jdk1.5.0 DONOT run on port 5555.

2004-11-06 Thread Vic (Vinny) Cekvenich
Why not post on the Tomcat list? .V Amit Gupta wrote: Hi , I have configured Tomcat/5.5.3 with jdk1.5.0. When I configure tomcat to run on then it DONOT work. On 8080 port tomcat work fine. What May be the reason? Amit Gupta ---

Re: Authentication and Authorization

2004-11-05 Thread Vic (Vinny) Cekvenich
Struts requires Servlet support container. Therefore containers (such as tomcat, resin, etc). support declerative security via web.xml. You can read for example about tomcat jdbc realms. So struts leverages J2EE security and you can extend it and customize it. .V Davi Salgueiro wrote: Hi Every On