Re: [S2] Error running under Weblogic 10.3.2.0

2010-03-22 Thread Lukasz Lenart
2010/3/18 Gustavo Felisberto gustavo.felisbe...@wit-software.com: What I would love would be a small tutorial on how to do it properly. I found some tutorials but are for older versions of Idea. I don't have any particular setup, I'm just connecting with WebLogic in debug mode (or start it)

Re: Can a collection property have its changes saved back to the ActionForm?

2010-03-22 Thread Andrew Sharpe
Thanks Adam. I ended up using your solution. I'm not thrilled about the user seeing the listbox items get auto selected after they submit the form, but the code is certainly cleaner than adding and removing hidden controls. For the archives, here's what I went with: JSP function

Re: Can a collection property have its changes saved back to the ActionForm?

2010-03-22 Thread Andrew Sharpe
Apologies all, I am editing my solution below for clarity and accuracy: - Original Message From: Andrew Sharpe andrewrwsha...@yahoo.com To: Struts Users Mailing List user@struts.apache.org Sent: Mon, March 22, 2010 8:44:42 AM Subject: Re: Can a collection property have its changes

S2 - sx:datetimspicker calendar background color

2010-03-22 Thread Helen Shen
Does anyone know how to change the calendar style of datetimepicker? Using templateCssPath to point to a new css with different background does not work. Any suggestion? Thanks, Helen - To unsubscribe, e-mail:

About bank application using Struts 2

2010-03-22 Thread Oscar
Hi to all, right now i'm going to develop something like bank application to enable users to manage their accounts, transfer money, pay services and so on, and really i have no experience developing applications like that (where security is really important) so i don't know if exists some book

Re: About bank application using Struts 2

2010-03-22 Thread Wes Wannemacher
There are quite a few good books about general security practices for software development... There used to be a library that you can use to help secure your web-app ...looking... http://www.hdiv.org/ They used to support an s2 plugin, but I'm not sure which version it works with. In general,

RE: About bank application using Struts 2

2010-03-22 Thread Martin Gainty
implementing parameterised dynamic statements are of particular interest to me.. does anyone know how i can achieve paramterised dynamic statements with hibernate?? Many Thanks to Wes for the advice on hardening Tomcat Martin Gainty __ Please do

Re: About bank application using Struts 2

2010-03-22 Thread Oscar
Thanks for the tips Wes, unfortunately we can't use Spring because the time, but i going to read about ssl in struts and the security in server (Glassfish in my case). For Martin, Hibernate doesn´t handle by default parametizered statements? 2010/3/22 Martin Gainty mgai...@hotmail.com

RE: About bank application using Struts 2

2010-03-22 Thread adam pinder
hibernate can use parameterised statements out of the box and handles the encoding of values to stop sql injection. you can use names like :orgId in an sql statement and set either the value with a set statement or by setting an object containing a getOrgId method and hibernate will

RE: S2 - sx:datetimspicker calendar background color

2010-03-22 Thread Martin Gainty
parameters will not be able to render without the accompanying .ftl WEB-INF\classes\template\ajax\datetimepicker.ftl Martin Gainty __ Verzicht und Vertraulichkeitanmerkung Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene

How to get s:select id and name under struts2 action?

2010-03-22 Thread red phoenix
I have a jsp,it contains a s:select,like follows: s:select name=test list=#request.testList listKey=id listValue=tname size=6 cssClass=tbcell/ When this jsp submit,it will submit to a struts2 action,I want to know how to get all id and name of s:select and how to get selected id and name of