Legolas Woodland wrote:
Hi
Thank you for reading my post.
I should write a web application based on JSF and Sun java Studio Creator 2.
here is my requirements :
1-reporting and charting
2-database access ,(all kinds of bindings between database and grids , text box , checkbox ....) 3-some Ajax Operation (e.g : user enter a web site name and press Verify , i should look at my database and tell him/her whether the site is in our database or not) 4-users enter some html in my application to be stored into database , now i should determine whether they has Javascript embedded into their html or not
and if they has java script i should remove it.
5-what kind of security consideration i should have ? cross site attacks , brute force attacks , java script based attacks....
is there some library that can help me about them ?


Thank you for your help.


If you use Studio Creator2 you will have to use the RI,
the code this tool generates is very good but roots into the com.sun
hierarchy left and right, which is not TCK, hence you will have
to use the RI and additional creator runtimes for the new components.
As for ajax, use ajax anywhere, I have not used it yet, but it looks very good.

Security, always have in mind sql injection hence, use precompiled queries which remove that burden, I am not sure if ACEGI handles the rest, I have not looked into the framework, but most of that stuff can be killed by writing a dedicated servlet filter, which simple roots into an error page in case of an attack.

Reply via email to