Re: Struts 2.5.Beta1 and samples

2015-08-24 Thread Lukasz Lenart
It should be ok right now, updated all web.xmls and pushed the changes 2015-08-24 15:56 GMT+02:00 Chris : > The name of the package has changed ! > Struts2.3.20package org.apache.struts2.dispatcher.ng.filter; > Struts 2.5.Beta1 > package org.apache.struts2.dispatcher.filter; > > import java.io.IOE

Re: Struts2 resource bundle labels not showing up

2015-08-24 Thread Lukasz Lenart
2015-08-24 16:20 GMT+02:00 fea jabi : > How to get the labels when I load the page then? I am calling the same > action(login) to launch the page too. How did you configure the both actions? in struts.xml? Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ --

dependable

2015-08-24 Thread fea jabi
I am new to struts2 and need help with the struts2 jquery autocompleter tag Have an object Publisher code description In Action getPublishers() I am trying to use 2 dependable sj:autocompleter tags. In both it should display the Publishers list but in one it should display th

RE: struts2

2015-08-24 Thread fea jabi
Thanks, for the reply. Can you forward a link which has the 2 autocompleter tags which are dependent on each other using struts2 jquery plugin? > Date: Mon, 24 Aug 2015 11:08:52 -0400 > Subject: Re: struts2 > From: davelnew...@gmail.com > To: user@struts.apache.org > > The deprecated Doj

Re: struts2

2015-08-24 Thread Dave Newton
The deprecated Dojo-based tags (which I would recommend against using in fairly strong terms) or the S2 jQuery plugin? On Mon, Aug 24, 2015 at 10:33 AM, fea jabi wrote: > Using struts-core 2.3.24.jar > > > > I am trying to do 2 dependable autocomplete drop downs and found an > example here > >

struts2

2015-08-24 Thread fea jabi
Using struts-core 2.3.24.jar I am trying to do 2 dependable autocomplete drop downs and found an example here http://struts.fromdev.com/2009/10/struts-2-ajax-autocomplete-dropdown.html But getting error that as JSPG0046E: Unable to locate tagfile for tag autocompleter I did check t

RE: Struts2 resource bundle labels not showing up

2015-08-24 Thread fea jabi
Thanks,, for trying to help me on this. yes, in the properties file I do have the line breaks as label.user=User label.password=Password After submitting the login form with wrong user/pass I am seeing the labels. you are right on this. Didn't realize that until now. How to get the labels

Re: Struts 2.5.Beta1 and samples

2015-08-24 Thread Chris
The name of the package has changed ! Struts2.3.20package org.apache.struts2.dispatcher.ng.filter; Struts 2.5.Beta1 package org.apache.struts2.dispatcher.filter; import java.io.IOException; import java.util.List; import java.util.regex.Pattern; import org.apache.struts2.StrutsStatics; import org.a

Re: Struts 2.5.Beta1 and samples

2015-08-24 Thread Lukasz Lenart
Filters were moved into a new package but web.xml wasn't updated - can you register a ticket in JIRA? Thanks in advance -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2015-08-24 15:32 GMT+02:00 Chris : > Hello, > I tried all Struts2 samples for many years, with success > with apache/strut

Struts 2.5.Beta1 and samples

2015-08-24 Thread Chris
Hello, I tried all Struts2 samples for many years, with success with apache/struts-examples and differents versions 2.3.14, 2.3.15 , 2.3.16 , 2.3.20 and Netbeans 6.5 , and Tomcat 7 |   | |   | |   |   |   |   |   | | apache/struts-examplesstruts-examples - Mirror of Apache Struts | | | | Affic

Re: Struts2 resource bundle labels not showing up

2015-08-24 Thread Lukasz Lenart
2015-08-21 8:17 GMT+02:00 fea jabi : > > > Using struts2 in iRad > > > > 1. In src folder have package > com.xyx.actions > in this have LoginAction.java > > 2. Created > "resources" -- > of type Source Folder > > in it I added a package > com.xyx.actions > in this added LoginActio

RE: Struts2 resource bundle labels not showing up

2015-08-24 Thread Martin Gainty
any reason why you are not supplying line breaks between key1=value1key2=value2 in properties file: label.user=Userlabel.password=Password instead of: label.user=User label.password=Password ? Martin

Struts2 resource bundle labels not showing up

2015-08-24 Thread fea jabi
Still need help with this please. > From: zy...@hotmail.com > To: user@struts.apache.org > Subject: Struts2 resource bundle labels not showing up > Date: Fri, 21 Aug 2015 02:17:08 -0400 > > > > Using struts2 in iRad > > > > 1. In src folder have package > com.xyx.actions > in this have