Re: Struts 2 Plugin for Netbeans

2012-04-19 Thread Frans Thamura
as a eclipse user. :) any idea? F On Fri, Apr 20, 2012 at 1:19 AM, Łukasz Lenart wrote: > 2012/4/19 rob stone : > > I am trying to incorporate the Struts 2 plug-in into the Netbeans IDE > > and having problems. The Netbeans version is 7.0.1 which is the latest > > available for Debian. > > Use

Re: Authentication and authorization

2012-04-19 Thread M. Rakowski
a brief explanation for basic spring-security (only authentication) configuration with struts: Spring security is running as a filter in your web-app (you need to make sure that it comes first before Struts). For the filter-configuration take a look at (2.2.1): http://static.springsource.org/spr

Re: Struts 2 Plugin for Netbeans

2012-04-19 Thread Łukasz Lenart
2012/4/19 rob stone : > I am trying to incorporate the Struts 2 plug-in into the Netbeans IDE > and having problems. The Netbeans version is 7.0.1 which is the latest > available for Debian. Use IntelliJ IDEA, give up with NB ;-) Kind regards -- Łukasz http://www.lenart.org.pl/ mobile +48 606 3

Struts 2 Plugin for Netbeans

2012-04-19 Thread rob stone
Hello, I am trying to incorporate the Struts 2 plug-in into the Netbeans IDE and having problems. The Netbeans version is 7.0.1 which is the latest available for Debian. One suggested fix was to compile the plug-in source using 7.0.1 to achieve this, but that too failed as obviously I am missing

Re: Behavior of tags with date values

2012-04-19 Thread Łukasz Lenart
2012/4/19 Scott Williams : > After reading your email I tried your solution, outputting the date in the > tag body rather than using the value attribute. I was surprised to find the > tag behaves the way it does with Date objects, invoking toString(). > Given the behavior of the Date type conve

Re: Behavior of tags with date values

2012-04-19 Thread Scott Williams
Thanks Dave. After reading your email I tried your solution, outputting the date in the tag body rather than using the value attribute. I was surprised to find the tag behaves the way it does with Date objects, invoking toString(). Given the behavior of the Date type conversion class, I assume

Re: No result defined for action com.xx.xxx.admin.action.AdminAction and result input

2012-04-19 Thread Hernán
Hello there! Your action should return a String like "list" or "success" or just "something" and then in your struts.xml file, you should add a snippet in your action for that string. Thus, the framework will be able to render a result. Your action is returning null, and you haven't defined a resul

Re: No result defined for action com.xx.xxx.admin.action.AdminAction and result input

2012-04-19 Thread Łukasz Lenart
2012/4/19 Rout, Biswajit : > No result defined for action com.xx.xxx.admin.action.AdminAction and result > input Because there is no result configured for adminProcess.action (it's empty). Anyway, revise your architecture, read some docs about Ajax, JSON, Struts2 because you overdo a lot too muc