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

2004-09-28 Thread Chris
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 PROTECTED] For additional commands, e-mail

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. Chris

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? Regards Chris

Re: JSTL problem

2004-09-25 Thread Chris
, 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: Re: JSTL problem If you're using JSTL in struts all

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

re: Problem with custom ActionMapping and set-property ... /

2004-04-06 Thread chris
}() method - doing so will prohibit the set{ParamName} method's invocation via the set-property ... 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 on. Thanks again. Chris G

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

Getting Struts2 Parameters?

2008-07-07 Thread chris
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 if i click on search, must show

Re: Linking page

2010-05-21 Thread chris
Just create a anchor to your form. a href=searchForm.jspSearch/a 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 ch...@chrismiles.org You do not need to go through an action before your form

Re: Linking page

2010-05-21 Thread chris
to 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 denis.cabas...@gmail.com wrote: I personnaly prefer to use the same Action for things

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 abhishek.netj...@gmail.comwrote: 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 when I try to login to my Struts app. Can anybody

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 understand is that I

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 always go through

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* action name=readThis class

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 ch...@chrismiles.org wrote: Does anyone have any ideas

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 executed

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 content

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 result

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 would

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 only way. Just

Re: URL format advice

2010-08-25 Thread chris
then 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 like your opinion

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

2013-09-04 Thread Chris
De : Chris christal...@yahoo.fr À : user@struts.apache.org 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

Why 2 URLs for the examples Struts-2.3.15.1 ?

2013-09-04 Thread Chris
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: --    

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

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

2013-09-06 Thread Chris
List user@struts.apache.org; Chris christal...@yahoo.fr Envoyé le : Vendredi 6 septembre 2013 10h50 Objet : Re: Struts 2.3.15.1 How to read external properties files or conf files Log4j file will be ready by Log4j framework and not exactly by struts2 Can you define where and how you want

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 mgai...@hotmail.com À : Struts Users

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 mig...@almeida.at À : Chris christal...@yahoo.fr Cc : umeshawas

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

2013-09-06 Thread Chris
, Chris christal...@yahoo.fr wrote: Where : server side , in action , like ActionSupport First  example : Login.java ( like in struts-2.3.15.1-blank ) class Login extends com.opensymphony.xwork2.ActionSupport to check and validate user/password ( I need access to LDAP or database ) Second Example

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 umeshawas...@gmail.com À : Struts Users Mailing List user@struts.apache.org; Chris christal...@yahoo.fr Envoyé le : Vendredi 6 septembre 2013 13h45 Objet : Re: Struts 2.3.15.1 How to read

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

2013-09-07 Thread Chris
lukaszlen...@apache.org À : Struts Users Mailing List user@struts.apache.org Envoyé le : Jeudi 5 septembre 2013 20h27 Objet : Re: Draft docs, Debugging Struts some Screen shot are missing Done 2013/9/5 Lukasz Lenart lukaszlen...@apache.org: 2013/9/5 Chris christal...@yahoo.fr: Checking the Draft

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 =

Re: s:if and locale

2013-09-08 Thread Chris
Hello Please try this expresion and tell us if it works s:if test=%{locale.language == 'en'} You will have to test the locale it in every jsp ? Couldn't you use for example, a global.properties file and struts.xml constant name=struts.custom.i18n.resources value=global /

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
== 'en_US'} did not work! I don't know why ! But I used your solution which seems much better tahn mine ! ~Regards, ~~Alireza Fattahi From: Chris christal...@yahoo.fr To: Struts Users Mailing List user@struts.apache.org; Alireza Fattahi afatt...@yahoo.com; Chris

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

2013-09-16 Thread Chris
be entered as 999-999-./message /validator Regards, Chris ( christalkto )

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

2013-09-17 Thread Chris
, but it will be updated with next release - soon 2013/9/10 Lukasz Lenart lukaszlen...@apache.org: 2013/9/7 Chris christal...@yahoo.fr: 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

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. Regards Chris

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

2013-09-19 Thread Chris
... with 2.3.12. I have renamed expression 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 christal...@yahoo.fr: Hello , Do you have any idea since

weakness or risky xml validation from server side ?

2013-09-20 Thread Chris
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 jlm...@gmail.com À : Struts Users Mailing List user@struts.apache.org; Chris christal

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

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

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   

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

2013-12-13 Thread Chris
décembre 2013 14h46, Lukasz Lenart lukaszlen...@apache.org 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 christal...@yahoo.fr: Hello

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

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

2013-12-16 Thread Chris
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,  Chris Le

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

2013-12-17 Thread Chris
://www.lenart.org.pl/ 2013/12/16 Chris christal...@yahoo.fr: 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 long

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

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

2013-12-18 Thread Chris
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 lukaszlen...@apache.org a écrit : I think even WARN should be sufficient, can you register an issue for that? Thanks in advance -- Łukasz + 48 606 323 122 http

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 christal...@yahoo.fr a écrit : Hello, I tested both yesterday

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
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
Annotations next - Introducing Interceptors...etc ) Le Jeudi 2 janvier 2014 15h49, Lukasz Lenart lukaszlen...@apache.org a écrit : You can use Interceptor#init() 2014/1/2 Chris christal...@yahoo.fr: Hello, How to read  the file jdbc.properties only once, when the web application

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 christal...@yahoo.fr 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

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

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 christal...@yahoo.fr a écrit : The sample unit-testing works with Struts2.3.16 http://struts.apache.org/development/2.x/docs/unit-testing.html and https

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

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 :  

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

2014-01-11 Thread Chris
library is missing in classpath! Please add missed dependency! Best Regards Johannes # web: http://www.jgeppert.com twitter: http://twitter.com/jogep 2014/1/11 Chris christal...@yahoo.fr Hello, Are dependencies missing ? Struts 2 CRUD Example

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

2014-01-11 Thread Chris
11 janv. 2014 16:41:54 org.apache.catalina.core.StandardContext startInternal Le Samedi 11 janvier 2014 16h33, Chris christal...@yahoo.fr 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

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

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

2014-01-22 Thread Chris
/browse/WW-3993 2014/1/13 Lukasz Lenart lukaszlen...@apache.org: 2014/1/11 Chris christal...@yahoo.fr: java.lang.reflect.InvocationTargetException - Class: com.opensymphony.xwork2.inject.ContainerImpl$MethodInjector File: ContainerImpl.java Method: inject Line: 301 - com/opensymphony/xwork2

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
to the ticket. Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2014/1/24 Chris christal...@yahoo.fr: 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

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

2014-01-27 Thread Chris
Chris christal...@yahoo.fr: Hello, Do you know, where we can read a 2.3.16 version of http://struts.apache.org/release/1.2.x/faqs/database.html ? It isn't supported in 2.x at all - it was a bad idea from very beginning, instead you can use Spring, myBatis or JPA directly. Regards -- Łukasz

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
=struts-examples.git 2014-03-10 21:34 GMT+01:00 Lukasz Lenart lukaszlen...@apache.org: We're migrating them to git :-) https://issues.apache.org/jira/browse/INFRA-7401 2014-03-10 20:07 GMT+01:00 Chris christal...@yahoo.fr: Hello, I just wanted to signal the error tonight with svn URL svn

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 lukaszlen...@apache.org a écrit : 2014-03-11 11:30 GMT+01:00 Chris christal...@yahoo.fr: We're migrating them to git :-) OK THanks. And may i ask what tools do you recommend ? I used to Sliksvn with WIndows XP

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

2014-04-02 Thread Chris
.1045723.n5.nabble.com/Migrated-Struts2-examples-to-Git-td5715078.html#a5715467 Thanks, Chris Le Mardi 1 avril 2014 18h46, Chris christal...@yahoo.fr a écrit : Thanks Regards, Chris Le Mardi 11 mars 2014 11h48, Lukasz Lenart lukaszlen...@apache.org a écrit : 2014-03-11 11:30 GMT+01:00 Chris

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 gkogk...@tcd.ie 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
);     }     } 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
name:/label/tdtd Le Mercredi 4 juin 2014 18h13, Chris christal...@yahoo.fr a écrit : Hello, I don't find in the strutsexamples ( 6 form_validation, 7 message_ressource...etc) where I could write red color when error message is displayed in loginForm.jsp First the validator LoginAction

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 s:head / Regards, Chris Le Mercredi 4 juin 2014 18h27, Chris christal...@yahoo.fr a écrit : In the screen, with struts2examples/form_validation the dynamics tag are : tr errorFor

Re: 2.3.16.3 Color in error message ( Authenticate Login )

2014-06-04 Thread Chris
HTML /head tag.  Regards, Chris Le Mercredi 4 juin 2014 20h37, Martin Gainty mgai...@hotmail.com a écrit : stylesheet.css: .errClass {     font-family: Verdana, Helvetica, Garamond, sans-serif;     /* font-size: 0.7em; */     background-color: red;     border: 1px solid #afafaf

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 lukaszlen...@apache.org a écrit : 2014-09-30 17:15 GMT+02:00 Adam Brin adam.b...@asu.edu: Quick question, is anyone running struts 2.3 with servlet

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
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 davelnew...@gmail.com a écrit : Did you try defining a complete regex, e.g., with the start/end

Re: Struts 2.5.Beta1 and samples

2015-08-24 Thread Chris
? Thanks in advance -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ 2015-08-24 15:32 GMT+02:00 Chris christal...@yahoo.fr: 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

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 | | | |

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 ?

Re: form-xml-validation sample / boolean validator / over21

2015-10-21 Thread Chris
tried also the inverse : with         You must be under 21 And it works too ! Le Mercredi 21 octobre 2015 12h39, Lukasz Lenart <lukaszlen...@apache.org> a écrit : 2015-10-21 12:22 GMT+02:00 Chris <christal...@yahoo.fr>: > Hi, > > I don't know what PRs

Re: form-xml-validation sample / boolean validator / over21

2015-10-22 Thread Chris
Obviously I am speaking to other users as is the case for me, do not have too much knowledge of the use of these functions. Not to the Struts conceptors.;-)Be carreful, double equal sign is good for comparaison,... Le Mercredi 21 octobre 2015 16h15, Chris <christal...@yahoo.fr> a

Some problems with Struts-mailreader

2015-10-28 Thread Chris
Hello, I have some problems with the "new" mailreader sample in the linkhttps://github.com/apache/struts-examples/tree/master/mailreader   with Struts 2.5 BETA2 PS :  my old mailreader example 2.3.16 works perfectly.And I try to translate the tour.html to unterstand. But with the new

Re: Some problems with Struts-mailreader

2015-11-13 Thread Chris
r.java:408)      atorg.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:237)      atorg.apache.jasper.compiler.Validator$ValidateVisitor.checkXmlAttributes(Validator.java:1265) Le Vendredi 13 novembre 2015 10h17, Chris <christal...@yahoo.fr> a écrit : Hello, Thank you for giving me those e

Re: Some problems with Struts-mailreader

2015-11-12 Thread Chris
Hello, I'm sorry . I don't use pom.xml in any of my examples. I work with Netbenas 7.3 and ant, I guess. But no maven. I have no idea what SNAPSHOT is, and how to use it, and where find it.Is it another version of all librairies ? Regards, Chris Struts has detected an unhandled exception

  1   2   3   4   5   6   7   8   9   10   >