HTTP status 500 - No input attribute for mapping path /login

2004-08-22 Thread Chris
Howdy , I am using Struts 1.1 and TC5, my web app throw an exception: HTTP status 500 - No input attribute for mapping path /login (No more Exception stack printed) I couldn't find solution by googling. Would you please give me a hint? Regards.

How can I know the version of common-validator.jar included in struts 1.1

2004-09-14 Thread Chris
Howdy, I want to download and the common-validator.jar 's source code , so I want to know the common-validator 's version to download the right source. But can not get the version number by examine struts1.1's binary distro. Could anybody give me a hint?

Re: JSTL problem

2004-09-25 Thread Chris
glibs , but the servlet code compiled from JSP is too hard to explore. Regards. Chris - Original Message - From: "Mark Lowe" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Saturday, September 25, 2004 11:29 PM Subject: R

Re: Struts and EL/JSTL

2004-09-26 Thread Chris
> - configure your web.xml correctly to enable EL > - use struts non-el tag libraries or any non-el tag library (jstl >included) BTW, in JSTL, which one is non-el tag library? c.tld or c-rt.tld ? Regards Chris ---

Can we say that we are applying "Adapter" design pattern when writing our actions?

2004-09-28 Thread Chris
are applying "Adapter" design pattern ? Regards. Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Can we say that we are applying "Adapter" design pattern when writing our actions?

2004-09-28 Thread Chris
are applying "Adapter" design pattern ? Regards. Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Why Struts use "forward" instead of "redirect" to "jump" from one JSP to another?

2004-10-02 Thread Chris
Hi , all I am wondering why Struts use "forward" instead of "redirect" to "jump" from one JSP to another. Could anybody give me some hint? Regards Chris - To unsubscribe, e-mail: [EMAIL PROTECT

Problem with custom ActionMapping, set-property and WebLogic

2004-04-05 Thread chris
FileUploadForm" input="BadData.jsp"> ... When my app loads I get this output from WebLogic: --- MyActionMapping.setInput(BadData.jsp) MyActionMapping.setInput(some.login.page) --- So t

re: Problem with custom ActionMapping and

2004-04-06 Thread chris
- implement a "public boolean is{ParamName}()" method - doing so will prohibit the set{ParamName} method's invocation via the This is all very odd, I haven't spent that much time with Digester, but think it might be worthwhile digging into it to figure out what's going o

ReloadAction in 1.1

2004-05-05 Thread Chris
Hi, I want to reload the configuration-files. I found the ReloadAction in 1.0, but not in 1.1? Is the action not available? How can I reload the configuration? Thanks, Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Getting Struts2 Parameters?

2008-07-07 Thread chris
t be missing? Many thanks and best regards, Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Redirect to previous page.

2010-05-18 Thread chris
contained within the session. If this method was to work, would the struts messages and errors etc be accessable from the JSP page I have manually forwarded to or would they be lost? Is there a better solution that I can not think of? Many Thanks Chris

Redirect to previous page.

2010-05-18 Thread chris
contained within the session. If this method was to work, would the struts messages and errors etc be accessable from the JSP page I have manually forwarded to or would they be lost? Is there a better solution that I can not think of? Many Thanks Chris

Re: Linking page

2010-05-21 Thread chris
You do not need to go through an action before your form unless there is some logic you wish to perform first. Chris > Hi all, > i am wondering what is the best way for link a page to other. > Imagine this scenario: > > Index Page with a menu: > - Search > - Insert > >

Re: Linking page

2010-05-21 Thread chris
Just create a anchor to your form. Search And then have the form submit to your doSearch action. That is all. Chris > there isn't any logic! only show the form... > so how can i do? > > 2010/5/21 > >> You do not need to go through an action before your form unless

Re: Linking page

2010-05-21 Thread chris
go through the controller. It is counter intuitive just pass through an action which does nothing, when the JSP would get filtered anyway. Chris > On Fri, 21 May 2010 11:01:43 -0400, Denis Cabasson > wrote: > >> I personnaly prefer to use the same Action for things that are logic

Re: PHP in the same folder of struts 1

2010-05-26 Thread chris
You dont need to bump your posts back up, especially only a day later. If someone knows the answer they will reply. Chris > Pl. reply > > On Tue, May 25, 2010 at 2:15 PM, abhishek jain > wrote: > >> hi friends, >> I am running struts 1.x and want to place the php code

Re: PersistenceFacade

2010-05-26 Thread chris
Hi, You would need to post your strack trace and where the problem happens. Chris > Hi. > > > > I have used the following code with struts 1.2x and it works just fine. > Now > I have upgraded to Struts 1.3.10. > > > > Now I get the following error whe

Re: SV: PersistenceFacade

2010-05-26 Thread chris
could not tell you. You should step through your code and make sure it is doing every it should be before you call the close. If yuo are not obtaining a valid connection I suggest starting there. You should probably be closing your database within a finaly block as well. Chris > Of course. Here

Re: SV: SV: PersistenceFacade

2010-05-26 Thread chris
Struts is only a facade round the existing JSP and servlet technologies so I cant personally see them causing the problem (prove me wrong?). Coincidences happen I am afraid (to myself included). Good luck debugging your code. Chris > I will do that. Thanks. > > But what I don’t unde

Re: Struts2: Referring to resources (images, stylesheets, ...)

2010-06-02 Thread chris
It would make sense to use absolute links rather than relative ones. Your CSS folder you shoudl put on your root and always link to it with "/css/blah.css" and the same with images then you wont get into directory problems. Chris > You should not call your page from a link but alwa

Re: How to call to another action from the action class

2010-06-24 Thread chris
Hi, Use a type=redirectAction and then set the result to the action name (without .action) Chris > Hi Guys, > > I want to call to another action mapping which has defined in the > struts.xml > file within another action class, its like this, > > *struts.xml* > &

Re: Nested Iterator Problem

2010-07-01 Thread chris
Hi Chris. Thanks for responding. I can not see any invalid characters? Chris > Not sure but it looks like there's an invalid character in there. Could > that be fouling things up? > (*Chris*) > > On Thu, Jul 1, 2010 at 1:59 PM, Chris Miles wrote: > >> Does anyo

Re: Emailing the contents of a Struts2 view?

2010-07-08 Thread chris
Hi. Thanks for the response but that is not what I mean. I want to email the contents of a view - a JSP which has been rendered after an action - but to the contents of an email rather than the contents of a browser request. Chris > If you just want to send mail after some action is execu

Re: Emailing the contents of a Struts2 view?

2010-07-08 Thread chris
Yeah that is right. I want to maintain the MVC pattern, but using it for sending HTML emails to clients rather than browser requests. It has to be the HTML within the email itself rather than embedding an iframe to the website or a link to a page. Chris > Hi, > > What you want is the c

Re: Emailing the contents of a Struts2 view?

2010-07-08 Thread chris
Thanks yeah I see what you mean. It would be easy to have a class generate tons of HTML but that would be cumbersome. Getting the resuling rendered JSP would be something tricky. > Hi, > > I am not exactly sure of such return type, but what you can try with is- > > Create a html output of the resu

Re: Emailing the contents of a Struts2 view?

2010-07-08 Thread chris
Thanks Dale. It is basically for emailing a copy of a invoice which has been populated by an action. No links or anything. All self contained except the CSS link but that is absolute anyway. Chris > On 7/8/10 9:44 AM, ch...@chrismiles.org wrote: >> Getting the resuling rendered JSP

Re: Emailing the contents of a Struts2 view?

2010-07-08 Thread chris
Yeah. Thank you both for your responses. I think I will need to justify the benefits of the extra cost for a fancy HTML invoice compared to a plain text version. Thanks again folks. I will investigate :) Chris >> Yes, tricky indeed, but currently the only way to go. > > Not the onl

Re: URL "format" advice

2010-08-25 Thread chris
sits under that. Personally unless you have a specific need for clean URLs such as for search engine optimisation then its not really worth the effort. Chris > I need to implement a webapp that uses the URL to determine the > "partner" that is accessing the application. I'd

Re: Why 2 URLs for the examples Struts-2.3.15.1 ?

2013-09-04 Thread Chris
De : Chris À : "user@struts.apache.org" Envoyé le : Mercredi 4 septembre 2013 14h53 Objet : Why 2 URLs for the examples Struts-2.3.15.1 ? Hello, With Struts2.3.15.1, Getting Started   Tutorials Why two URLS for the examples ? Struts 2

Why 2 URLs for the examples Struts-2.3.15.1 ?

2013-09-04 Thread Chris
ation Using XML Control Tags Wildcard Method Selection ...etc Regards Chris

Re: JavaScript errors on exception-handling.html

2013-09-05 Thread Chris
Hallo Volker, Thanks, I was writing this in the same time Some HTML pages in WW/docs give sometimes an ( alert? ) error and yon can't see the data For example, Coding Struts 2 Actions, docs/WW/docs/coding-struts-2-actions.html, The same error: --     SyntaxHighli

Draft docs, Debugging Struts some Screen shot are missing

2013-09-05 Thread Chris
Checking the Draft docs, see Debugging Struts http://struts.apache.org/development/2.x/docs/debugging-struts.html some Screen shot are missing, but found in wiki

Struts 2.3.15.1 How to read external properties files or conf files

2013-09-06 Thread Chris
Using log4j.properties instead of log4j.xml is not a problem with Struts 2.3.15.1 ( or should it be ? ) But with my own properties files ( jdbc.properties ) or configuration files ( ldap.conf ) it doesn't work. Is there any example with external files . Not an upload  file by input forms. .

Re: Struts 2.3.15.1 How to read external properties files or conf files

2013-09-06 Thread Chris
login, a web user need to access data ( from LDAP or Database )   java.io.FileNotFoundException : jdbc.properties  or java.io.FileNotFoundException : ldapconfiguration.conf Regards De : "umeshawas...@gmail.com" À : Struts Users Mailing Li

Re: Struts 2.3.15.1 How to read external properties files or conf files

2013-09-06 Thread Chris
Well, I have absolutely no problem with log4j.properties as I said above. I'm just trying to find a framework for all other external files  ( .properties or .configuration or unname.properties files ) De : Martin Gainty À : Struts Users Mailing List Envoyé

Re: Struts 2.3.15.1 How to read external properties files or conf files

2013-09-06 Thread Chris
Hi, OK for refactoring database access out of the action. But the problem is still there :  How to find a good framework to read external files in a struts web application ? De : Miguel Almeida À : Chris Cc : "umeshawas...@gmail.com" ; Struts Use

Re: Struts 2.3.15.1 How to read external properties files or conf files

2013-09-06 Thread Chris
À : Struts Users Mailing List Envoyé le : Vendredi 6 septembre 2013 13h17 Objet : Re: Struts 2.3.15.1 How to read external properties files or conf files How are you trying to load them? As a resource on the classpath? Dave On Sep 6, 2013 5:51 AM, "Chris" wrote: > Where : ser

Re: Struts 2.3.15.1 How to read external properties files or conf files

2013-09-06 Thread Chris
Thanks  , I 'll try with commons-configuration De : Umesh Awasthi À : Struts Users Mailing List ; Chris Envoyé le : Vendredi 6 septembre 2013 13h45 Objet : Re: Struts 2.3.15.1 How to read external properties files or conf files Have you tried

Re: Draft docs, Debugging Struts some Screen shot are missing

2013-09-07 Thread Chris
ukasz Lenart À : Struts Users Mailing List Envoyé le : Jeudi 5 septembre 2013 20h27 Objet : Re: Draft docs, Debugging Struts some Screen shot are missing Done 2013/9/5 Lukasz Lenart : > 2013/9/5 Chris : >> Checking the Draft docs, see Debugging Struts >> http://struts.a

Re: Struts 2.3.15.1 How to read external properties files or conf files

2013-09-08 Thread Chris
Thanks Leonidas Hi there, webwork used to have a class that would easily read external sources like xml files, but i do not recall the class name now. If you want to read from simple property files you could use something like : String path = ServletActionCo

Re: s:if and locale

2013-09-08 Thread Chris
Hello Please try this expresion and tell us if it works You will have to test the "locale" it in every jsp ? Couldn't you use for example, a global.properties file and struts.xml HI,   I have used the strtuts I18n feature for managing the localization.  Th

Re: s:if and locale

2013-09-08 Thread Chris
Hello , Could you please write how do you define The locale is = ${locale}  //Here the correct locale is displayed! I see in my browser  ( even source code ) The locale is = //Here the correct locale is displayed! Please try this expresion and tell us if it

Re: s:if and locale

2013-09-10 Thread Chris
. The did not work! I don't know why ! But I used your solution which seems much better tahn mine ! ~Regards, ~~Alireza Fattahi From: Chris To: Struts Users Mailing List ; Alireza Fattahi ; Chris Sent: Monday, 9 September 2013, 7:49 Subject: Re: s:if

validator type="regex" : param name is regex , not expression

2013-09-16 Thread Chris
ter     personBean.phoneNumber         Phone number must be entered as 999-999-. Regards, Chris ( christalkto )

Re: Draft docs, Debugging Struts some Screen shot are missing

2013-09-17 Thread Chris
013/9/10 Lukasz Lenart : > 2013/9/7 Chris : >> Thank you. >> I'm affraid the first one is still missing  , after this phrase : >> Clicking on the link for the configuration browser will cause the Struts 2 >> framework to return this page to your browser. >> Scr

Re: validator type="regex" : param name is regex , not expression

2013-09-18 Thread Chris
Hello , Do you have any idea since when ( which version ) the word expression is no more avaliable ? In some examples on the Web or in Books, the word used is still "expression". Rega

Re: validator type="regex" : param name is regex , not expression

2013-09-19 Thread Chris
ression to regex as right now you can define regexExpression as Ognl expression - there was name clash without renaming ;-) http://struts.apache.org/development/2.x/docs/version-notes-23120.html 2013/9/18 Chris : > Hello , > > Do you have any idea since when ( which version ) the word expr

weakness or risky xml validation from server side ?

2013-09-20 Thread Chris
idation.xml ) The cause is in the EditAction-validation.xml file , see head doctype. The referenced entity at "http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd";. is not or no more valaible. I changed it in http://struts.apache.org/dtds/xwork-validator-1.0.3.dtd";> and I changed "expression" in "regexp" for personBean.phoneNumber And it works. Regards, Chris

Re: Translation of fieldName in annotated validations

2013-09-25 Thread Chris
Hello, It is only a proposal, but you might also use JavaScript controls. The same JavaScript Code could be use with several forms or pages. But you can also prefer using the mapping field to Java Beans. ( or both ) Regards Chris De : JOSE L MARTINEZ

Re: Translation of fieldName in annotated validations

2013-09-25 Thread Chris
I understand (I wrote both : JavaScript and Java) and it is a very fair concern, that I will follow closely because it is not to be excluded. De : JOSE L MARTINEZ-AVIAL À : Struts Users Mailing List ; Chris Envoyé le : Mercredi 25 septembre 2013 14h54

What is the concept of changing Revision's number in asf - Revision 1536283: /struts/sandbox/trunk/struts2examples

2013-10-28 Thread Chris
asf - Revision 1536283: /struts/sandbox/trunk/struts2examples Hello, I don't understand what means the constant change of the asf Revision's number. Many times per day, this number is changing. Just now, in a few seconds , the number Revision 1536283: becomes Revision 1536284: Does it mean a new

Re: What is the concept of changing Revision's number in asf - Revision 1536283: /struts/sandbox/trunk/struts2examples

2013-10-28 Thread Chris
Thank you. But a file or more could however be changed in the tree /struts/sandbox/trunk/struts2examples. between the 2.3.15.3 and the next 2.3.15.4 ? For example, if someone find an error, and a file could be changed in the /struts/sandbox/trunk/struts2examples but without changing the release

2 files register.jsp in trunk/struts2examples/message_resource

2013-10-29 Thread Chris
Hello, About asf/struts/sandbox/trunk/struts2examples/message_resource : There are two files register.jsp in the message_resource sample https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples/message_resource/src/main/resources/org/apache/struts/register.jsp https://svn.apache.o

Re: Theme problem after update to 2.3.16 -- loading parent theme templates?

2013-12-12 Thread Chris
Hi, struts-2.3.16-all.zip 65,6 Mo (only ) struts-2.3.15.3-all.zip 83,2 Mo Chris One more thing: everything editable will be moved to struts-site (i.e. the new plugin.md) to don't mess with things generated by Maven So the project source code will contain only source code and JavaDocs

In which action, do i write boolean tests ( SGBD or LDAP )

2013-12-12 Thread Chris
Hello, How to organize the actions, when you just want check the password and the user, on a LDAP or SGBD system . For a  boolean response only. ( authorised / or not ) You do write all the command in the only same action , don't you ?

/struts2examples/themes and Struts2-3-16

2013-12-13 Thread Chris
Hello, Problem since 2013-12-12 with the new version "themes" and Struts2.3.16 https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples/themes in Struts-2.3.16 The new version A    struts2examples\themes\src\main\webapp\template\KUTheme_simple\theme.properties A    struts2examp

Re: /struts2examples/themes and Struts2-3-16

2013-12-13 Thread Chris
décembre 2013 14h46, Lukasz Lenart a écrit : Hi, I'm not sure if I get what you mean, but I have updated that example few hours ago - please update and check again. Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2013/12/13 Chris : > Hello, > > > Problem since 20

Re: /struts2examples/themes and Struts2-3-16

2013-12-15 Thread Chris
Hello, Sorry, I didn't find any solution. Struts 2 Themes and Struts 2.3.16 are not working ( Netbeans 7 and Tomcat 7 ) I believe I have to stop my tests. But old version ( Struts2 Themes before 2013-12-13 ) and Struts 2.3.15.3 only are working. The new files checkboxlist.ftl and theme.proper

Re: /struts2examples/themes and Struts2-3-16

2013-12-16 Thread Chris
-3.0.6.jar 30/11/2013  11:42 struts2-core-2.3.16.jar 30/11/2013  11:39 xwork-core-2.3.16.jar And for debugging_struts sample 30/11/2013  12:00 struts2-config-browser-plugin-2.3.16.jar I saw also the whole template folder was moved. ( not the same as the old sample ) Regards,  Chr

Re: /struts2examples/themes and Struts2-3-16

2013-12-17 Thread Chris
enart.org.pl/ 2013/12/16 Chris : > Hello Łukasz, > I tried this morning on a faster PC, and it works > But there is a long long long output with Apache Tomcat ( View Serveur Output > ) and I obtain no less than 333 400 lines in 2 mn. > With my own PC (old)XP it was much more

Debug level for com.opensymphony is too talkative, when using Netbeans 7.3

2013-12-17 Thread Chris
Please Use INFO level Hello, I don't know why, but for some asf trunk examples, using this configuration could product some trouble in view server output. No less than 340 000 lines : "Netbeans 7.3   -  Tomcat 7x  -  Struts 2.3.16  - DEBUG level in log4j.xml for com.opensymphony " The The

Re: Debug level for com.opensymphony is too talkative, when using Netbeans 7.3

2013-12-18 Thread Chris
mples are concerned. I just want to check which ones. And test again but too with Struts 2.3.15x Regards, Chris Le Mercredi 18 décembre 2013 7h46, Lukasz Lenart a écrit : I think even WARN should be sufficient, can you register an issue for that? Thanks in advance -- Łukasz + 48 606

Re: Debug level for com.opensymphony is too talkative, when using Netbeans 7.3

2013-12-18 Thread Chris
Sorry,  It's beter with > sign DEBUG > INFO > WARN > ERROR > FATAL My apologies, you meant probably say : "even WARN should be sufficient" ( Meaning even the INFO level is not necessary ) Le Mercredi 18 décembre 2013 11h01, Chris a écrit : Hello, I tested b

Re: /struts2examples/themes and Struts2-3-16

2013-12-19 Thread Chris
Hello, The/struts2examples/themes is ok now, since a new updated at 2013-12-13. Regards, Chris

Where does the message ( age ) come from in trunk/struts2examples/annotations/

2013-12-27 Thread Chris
he red color too)   From convention.plugin or anything else  ?   Chris

Struts2 and JDBC : How to read jdbc.properties only once , for 100 or 1000 users

2014-01-02 Thread Chris
Hello, How to read  the file "jdbc.properties" only once, when the web application is for 100 or 1000 users ? ( in which Action/method ? ) Thanks

Re: Struts2 and JDBC : How to read jdbc.properties only once , for 100 or 1000 users

2014-01-02 Thread Chris
r files ) , Struts 2 Annotations next -> Introducing Interceptors...etc ) Le Jeudi 2 janvier 2014 15h49, Lukasz Lenart a écrit : You can use Interceptor#init() 2014/1/2 Chris : > Hello, > How to read  the file "jdbc.properties" only once, > > when the web applic

Re: Struts2 and JDBC : How to read jdbc.properties only once , for 100 or 1000 users

2014-01-05 Thread Chris
http://struts.apache.org/development/2.x/docs/interceptors.html Have you any sample with all sources to read external files jdbc.properties ? Le Jeudi 2 janvier 2014 16h28, Chris a écrit : Thanks. I'll test this new example. I proceed in order of Web Page "Getting Started"

How to run RegisterTest.java

2014-01-06 Thread Chris
The sample unit-testing works with Struts2.3.16 http://struts.apache.org/development/2.x/docs/unit-testing.html and https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples/unit_testing/ But without running RegisterTest.java I don't how I can run this "RegisterTest extends StrutsTest

Howw to test RegisterTest in unit_testing ?

2014-01-06 Thread Chris
The sample unit-testing works with Struts2.3.16 http://struts.apache.org/development/2.x/docs/unit-testing.html and https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples/unit_testing/ But without running RegisterTest.java I don't how I can run this "RegisterTest extends StrutsTest

Re: Howw to test RegisterTest in unit_testing ?

2014-01-06 Thread Chris
It's OK now. I added in ProjectProperties / Test Package Folder / test.java All 3 tests passed Le Lundi 6 janvier 2014 22h39, Chris a écrit : The sample unit-testing works with Struts2.3.16 http://struts.apache.org/development/2.x/docs/unit-testing.html and https://svn.apache.org/repo

Re: Application configuration file

2014-01-07 Thread Chris
Hello , I have the same request. Perhaps the response can help you You can use Interceptor#init() http://struts.1045723.n5.nabble.com/Struts2-and-JDBC-How-to-read-jdbc-properties-only-once-for-100-or-1000-users-td5714995.html Le Mardi 7 janvier 2014 10h17, Giuliano Catrambone a écrit : H

Struts CRUD demo OK but only Struts-2.0.6 version

2014-01-11 Thread Chris
Hello, Are dependencies missing ? Struts 2 CRUD Example works fine but only in Struts-2.0.6 not in Struts-2.3.16   http://struts.apache.org/development/2.x/docs/tutorials.html Tutorials / Speciality / CRUD Made Easy / CRUD Demo I / Struts 2 CRUD Example Old jar files :  commons-beanutils-1.7.0.jar

Re: Struts CRUD demo OK but only Struts-2.0.6 version

2014-01-11 Thread Chris
classpath! Please add missed dependency! Best Regards Johannes # web: http://www.jgeppert.com twitter: http://twitter.com/jogep 2014/1/11 Chris > Hello, > Are dependencies missing ? > > Struts 2 CRUD Example works fine but only in Struts

Re: Struts CRUD demo OK but only Struts-2.0.6 version

2014-01-11 Thread Chris
rt 11 janv. 2014 16:41:54 org.apache.catalina.core.StandardContext startInternal Le Samedi 11 janvier 2014 16h33, Chris a écrit : Well, I  already added all the struts-2.3.16 jar files to see what will happen. Without success. It's a bad solution and the error message is the same.

Re: Best book reference for struts 2

2014-01-16 Thread Chris
Hello, If you think than the last versions are best ( some caractéristics could change) so have a look at both the publication's date, and the version's number Black book 2ed was published in  2008, about struts-core-2.0.6.jar ... Le Jeudi 16 janvier 2014 10h05, Gokul Raj a écrit : Hi, C

Re: Struts CRUD demo OK but only Struts-2.0.6 version

2014-01-22 Thread Chris
/13 Lukasz Lenart : > 2014/1/11 Chris : >> java.lang.reflect.InvocationTargetException - Class: >> com.opensymphony.xwork2.inject.ContainerImpl$MethodInjector >> File: ContainerImpl.java >> Method: inject >> Line: 301 - com/opensymphony/xwork2/inject/Co

Re: Struts CRUD demo OK but only Struts-2.0.6 version

2014-01-24 Thread Chris
Hello, I mean with more screens, more actions, and interdependence, or chained For example : - a first screen (login.jsp : controling user authorized or not ) - a second one (search.jsp : which name do you want to retrieve ? ) - the screen with the found names...etc Regards, Chris Le

Re: Struts CRUD demo OK but only Struts-2.0.6 version

2014-01-27 Thread Chris
-- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2014/1/24 Chris : > Hello, > I mean with more screens, more actions, and interdependence, or chained > > For example : > - a first screen (login.jsp : controling user authorized or not ) > - a second one (search.jsp : which n

Re: Struts CRUD demo OK but only Struts-2.0.6 version

2014-01-27 Thread Chris
Thanks, But I 'm not sure to understand . Do I have to stop to use Struts2 ? I don't want to use java persistence framework I just try to find a CRUD example without Java persistence framework. Regards Le Lundi 27 janvier 2014 17h37, Lukasz Lenart a écrit : 2014-01-27 Chris : >

URL 'https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples' doesn't exist

2014-03-10 Thread Chris
Hello, I just wanted to signal the error tonight with svn URL svn: E17: ERROR the URL 'https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples' doesn't exist Regards Chris

Re: URL 'https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples' doesn't exist

2014-03-11 Thread Chris
2014-03-10 21:34 GMT+01:00 Lukasz Lenart : > We're migrating them to git :-) > > https://issues.apache.org/jira/browse/INFRA-7401 > > 2014-03-10 20:07 GMT+01:00 Chris : >> Hello, >> >> I just wanted to signal the error tonight with svn URL >> >>

Re: URL 'https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples' doesn't exist

2014-04-01 Thread Chris
Thanks Regards, Chris Le Mardi 11 mars 2014 11h48, Lukasz Lenart a écrit : 2014-03-11 11:30 GMT+01:00 Chris : > We're migrating them to git :-) > > OK THanks. > And may i ask what tools do you recommend ? > I used to Sliksvn with WIndows XP ( no Netbeans plugin ,  nor E

Re: URL 'https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2examples' doesn't exist

2014-04-02 Thread Chris
git http://struts.1045723.n5.nabble.com/Migrated-Struts2-examples-to-Git-td5715078.html#a5715467 Thanks, Chris Le Mardi 1 avril 2014 18h46, Chris a écrit : Thanks Regards, Chris Le Mardi 11 mars 2014 11h48, Lukasz Lenart a écrit : 2014-03-11 11:30 GMT+01:00 Chris : > We

display dynamically in a JSP, the 2.3.16.2 version of struts2-core-2.3.16.2.jar

2014-04-29 Thread Chris
Hello, Is there a simple way to display dynamically in a JSP, the 2.3.16.2 version of struts2-core-2.3.16.2.jar ( from META_INF / MANIFEST.MF) without knowing the name and the number of the jar file ? Chris

Do properties written in an external file need ApplicationAware ?

2014-06-03 Thread Chris
Hello,I would like to use properties (*) written in an  external file, and read them only once. Do I have to use ApplicationAware, or something else. Whatever, could you give examples please ? (*) some properties like JDBC or LDAP connection's parameters. Thanks Chris

Re: Do properties written in an external file need ApplicationAware ?

2014-06-04 Thread Chris
Hello Antonios, Thanks. I'll try it and see how I can manage it. Chris Le Mardi 3 juin 2014 13h35, Antonios Gkogkakis a écrit : Hi Chris, I'm not sure if struts has a feature that would read property files and put them in the Application scope for you automatically. You

2.3.16.3 Color in error message ( Authenticate Login )

2014-06-04 Thread Chris
" The Identification has failed");     }     } When the Authenticate fails, the message works with "The Identification has failed" , but the color is not red in the loginForm.jsp... Regards Chris

Re: 2.3.16.3 Color in error message ( Authenticate Login )

2014-06-04 Thread Chris
color is not red in the loginForm.jsp... Regards Chris

Re: 2.3.16.3 Color in error message ( Authenticate Login )

2014-06-04 Thread Chris
Request closed. I found it in http://struts.apache.org/development/2.x/docs/form-validation.html It's the  Regards, Chris Le Mercredi 4 juin 2014 18h27, Chris a écrit : In the screen, with struts2examples/form_validation the dynamics tag are : First name is required. First

Re: 2.3.16.3 Color in error message ( Authenticate Login )

2014-06-04 Thread Chris
.  Regards, Chris Le Mercredi 4 juin 2014 20h37, Martin Gainty a écrit : stylesheet.css: .errClass {     font-family: Verdana, Helvetica, Garamond, sans-serif;     /* font-size: 0.7em; */     background-color: red;     border: 1px solid #afafaf;     position: absolute;     z-index: 1000

Re: struts, freemarker and servlet 3.1

2014-10-03 Thread Chris
Hello Adam, Can we be sure that jetty 9 (not Jetty 9.1) can work with Servlet 3.1? Regards Le Vendredi 3 octobre 2014 8h58, Lukasz Lenart a écrit : 2014-09-30 17:15 GMT+02:00 Adam Brin : > Quick question, is anyone running struts 2.3 with servlet 3.1 (Jetty 9)? Our > freemarker rende

Any example integrate struts2 ( CRUD without Hibernate, nor EJB, nor Glassfish)

2014-10-20 Thread Chris
Hello, I would like to integrate struts2 in an CRUD application , JDBC, Apache Tomcat, Netbeans ( or eclipse ) but without Hibernate , nor EJB, nor GlassFish. Hibernate is more complex than the problem it tries to solveCould you have any integration example please ? Thanks, Regards, Chris

Re: regex validator problem

2014-12-28 Thread Chris
" ? 3 - If you want tu use an input field with regex, what sort of value are you waiting for ? Could you give please some literal samples ? Regards, Chris Le Samedi 27 décembre 2014 15h18, Dave Newton a écrit : Did you try defining a complete regex, e.g., with the start/end markers,

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: Struts 2.5.Beta1 and samples

2015-08-24 Thread Chris
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/struts-examples and differents versions 2.3.14, 2.3.15 , 2.3.16 , > 2.3.20 and Netbeans 6

Re: Struts 2.5.Beta1 and samples

2015-08-25 Thread Chris
Hi, Thank you for the update.I did it to ,  yesterday,  but I got a new error about log4j. ( even with log4j2.xml) I think with version 2.5 Beta1 , we must now add the new jar log4j api-2.3.jar.But this is not enough, alas. Here is the error ...( maybe log4j api-2.3.jar comes not alone ? )août

Re: Struts 2.5.Beta1 and samples

2015-08-26 Thread Chris
thub.com/apache/struts-examples Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2015-08-25 19:12 GMT+02:00 Chris : > Hi, > Thank you for the update.I did it to ,  yesterday,  but I got a new error > about log4j. ( even with log4j2.xml) >  I think with version 2.5 Beta1 ,

Re: Struts 2.5.Beta1 and samples

2015-08-26 Thread Chris
Thank you for help and answers Le Mercredi 26 août 2015 16h09, Chris a écrit : Thanks, It works now. I can't say why Also with D:\NetbeansLibs\log4j beta\log4j-api-2.3.jar Le Mercredi 26 août 2015 15h52, Lukasz Lenart a écrit : I cannot reproduce your pr

  1   2   3   4   5   6   7   8   9   10   >