AJAX Advice

2012-04-17 Thread shobbi
Hi all, your advice is greatly appreciated. I need to use AJAX in my Struts2
2.1.8 web application. What is the best option? 

I see DOJO mentioned in many places including Stuts2 official site. Also I
see warning on the same site about the deprecation of the DOJO plugin. So
I'm bit confused and want to start right.

Many Thanks, Sal. 


--
View this message in context: 
http://struts.1045723.n5.nabble.com/AJAX-Advice-tp5645831p5645831.html
Sent from the Struts - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: AJAX Advice

2012-04-17 Thread stanlick
Take a peek at this http://struts2-jquery.appspot.com/home.action

On Tue, Apr 17, 2012 at 2:13 AM, shobbi sho...@dataspectrumllc.com wrote:

 Hi all, your advice is greatly appreciated. I need to use AJAX in my
 Struts2
 2.1.8 web application. What is the best option?

 I see DOJO mentioned in many places including Stuts2 official site. Also I
 see warning on the same site about the deprecation of the DOJO plugin. So
 I'm bit confused and want to start right.

 Many Thanks, Sal.


 --
 View this message in context:
 http://struts.1045723.n5.nabble.com/AJAX-Advice-tp5645831p5645831.html
 Sent from the Struts - User mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
 For additional commands, e-mail: user-h...@struts.apache.org




-- 
As I grow older, I pay less attention to what men say. I just watch what
they do. Andrew Carnegie


Authentication and authorization

2012-04-17 Thread Aravind Kumar
Hello,

I have just started to venture into Struts2 and I'm having a hard time
finding learning materials for Authentication and authorization concepts.
Could you please point out some resources ?

Thank you,
Aravind


Re: Authentication and authorization

2012-04-17 Thread vEnkaTa mohAna rAo SriperumbUdUru
http://www.javaranch.com/journal/2008/04/authentication-using-JAAS.html

http://stackoverflow.com/questions/3649615/how-should-i-savely-store-encrypted-user-data-on-my-server-and-serve-it-only-to

On Tue, Apr 17, 2012 at 5:58 PM, Aravind Kumar aravind...@gmail.com wrote:

 Hello,

 I have just started to venture into Struts2 and I'm having a hard time
 finding learning materials for Authentication and authorization concepts.
 Could you please point out some resources ?

 Thank you,
 Aravind



Re: Authentication and authorization

2012-04-17 Thread Aravind Kumar
Thank you ! And Apache Shiro is it worth trying for authentication and
authorization ?

On Tue, Apr 17, 2012 at 6:37 PM, vEnkaTa mohAna rAo SriperumbUdUru 
mohanara...@gmail.com wrote:

 http://www.javaranch.com/journal/2008/04/authentication-using-JAAS.html


 http://stackoverflow.com/questions/3649615/how-should-i-savely-store-encrypted-user-data-on-my-server-and-serve-it-only-to

 On Tue, Apr 17, 2012 at 5:58 PM, Aravind Kumar aravind...@gmail.com
 wrote:

  Hello,
 
  I have just started to venture into Struts2 and I'm having a hard time
  finding learning materials for Authentication and authorization
 concepts.
  Could you please point out some resources ?
 
  Thank you,
  Aravind
 



Re: AJAX Advice

2012-04-17 Thread Johannes Geppert
One option is to use the Struts2 jQuery Plugin for Ajax and Widgets.
But you can also use any JavaScript Framework to do this Job without any
Struts2 Plugins.

That's dependent from your Project.

https://code.google.com/p/struts2-jquery/

Take a look at the Showcases to see how the Struts2 jQuery Plugin works.

http://www.weinfreund.de/struts2-jquery-showcase/index.action
http://www.weinfreund.de/struts2-jquery-grid-showcase/index.action
http://www.weinfreund.de/struts2-jquery-mobile-showcase/index.action

Johannes


-
web: http://www.jgeppert.com
twitter: http://twitter.com/jogep
--
View this message in context: 
http://struts.1045723.n5.nabble.com/AJAX-Advice-tp5645831p5646593.html
Sent from the Struts - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Authentication and authorization

2012-04-17 Thread Chris Pratt
Struts itself doesn't provide an Authentication  Authorization subsystem,
but it will work well with Spring Security, Apache Shiro, or roll-your-own
solutions.
  (*Chris*)

On Tue, Apr 17, 2012 at 5:28 AM, Aravind Kumar aravind...@gmail.com wrote:

 Hello,

 I have just started to venture into Struts2 and I'm having a hard time
 finding learning materials for Authentication and authorization concepts.
 Could you please point out some resources ?

 Thank you,
 Aravind



Re: Authentication and authorization

2012-04-17 Thread Aravind Kumar
thank you :)

On Tue, Apr 17, 2012 at 9:21 PM, Chris Pratt thechrispr...@gmail.comwrote:

 Struts itself doesn't provide an Authentication  Authorization subsystem,
 but it will work well with Spring Security, Apache Shiro, or roll-your-own
 solutions.
   (*Chris*)

 On Tue, Apr 17, 2012 at 5:28 AM, Aravind Kumar aravind...@gmail.com
 wrote:

  Hello,
 
  I have just started to venture into Struts2 and I'm having a hard time
  finding learning materials for Authentication and authorization
 concepts.
  Could you please point out some resources ?
 
  Thank you,
  Aravind
 



Re: Authentication and authorization

2012-04-17 Thread M. Rakowski

Hey,

i would definitely _discourage_ you from using JAAS.

IMHO go with Spring Security:
http://static.springsource.org/spring-security/site/

It is pretty easy to integrate in Struts and
provides everything you need for both authentication and authorization.

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Authentication and authorization

2012-04-17 Thread Aravind Kumar
M. Rakowski,

Sorry for bothering again, How do I do that ? I searched for struts2 and
spring security integration but am not able to find any of the resources.

On Tue, Apr 17, 2012 at 11:21 PM, M. Rakowski matth...@rakowski.biz wrote:

 Hey,

 i would definitely _discourage_ you from using JAAS.

 IMHO go with Spring Security:
 http://static.springsource.**org/spring-security/site/http://static.springsource.org/spring-security/site/

 It is pretty easy to integrate in Struts and
 provides everything you need for both authentication and authorization.

 --**--**-
 To unsubscribe, e-mail: 
 user-unsubscribe@struts.**apache.orguser-unsubscr...@struts.apache.org
 For additional commands, e-mail: user-h...@struts.apache.org