Struts 2 date field problem

2011-09-28 Thread karthick.gunasekaran
I want to get the struts 2 date field as Date, But it return the string value, My bean property is date data type any way Is there to directly get the date data type from struts 2 date tag Please do not print this email unless it is absolutely necessary. The information contained in this elec

an odd problem about struts2 annotation

2011-09-28 Thread dan.zheng
hi,everyone I meet an odd problem with struts2 annotation,Let me elaborate it first import java.util.List; import lombok.Getter; import lombok.Setter; import org.apache.commons.lang.StringUtils; import org.apache.struts2.ServletActionContext; import org.apache.struts2.convention.annotation.Acti

Re: To create new session without invalidating existing one

2011-09-28 Thread Brian Thompson
Well, first I'd suggest dropping the requirement for launching the new browser window. It's a pretty user-hostile way to program a site. "Hey, why'd my Back button stop working? Sigh, call IT again." That said, you could try launching the popup window with a URL on a different subdomain. That

To create new session without invalidating existing one

2011-09-28 Thread Ganesh
Hello all, We have a requirement to launch a new browser window with new session but the exisiting session with parent browser should not be disturbed. We tried couple of methods the new session is created but the existing session is modified. Could some one throw me light on this. Regards Gan

Re: Struts 2 Annotation Tutorial (additional info)

2011-09-28 Thread Łukasz Lenart
Did you base on [1] ? If so, please remove struts.xml [1] http://code.google.com/p/struts2-examples/downloads/detail?name=Struts_Annotations_Ant_2_2_1.zip&can=2&q= Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ Warszawa JUG conference - Confitura http://confitura.pl/ ---

RE: Struts 2 Annotation Tutorial (additional info)

2011-09-28 Thread Steve
Thank you both for your responses. Since I had " " listed in my struts.xml file, I tried renaming my HelloAction class to "HelloController" or "HelloActionController" and tried various urls to match but no luck. I even tried removing the "struts.convention.action.suffix" element but it didn't s

[ANN] Struts 2 Plugin for IntelliJ IDEA 11 - Early Access

2011-09-28 Thread Yann Cébron
Early Access Preview has started for the next major version of JetBrains IntelliJ IDEA, and Struts 2 Plugin already has a lot of new features to offer: * OGNL Language support * Action class properties resolving, including refactoring * Smart navigation actions (go from JSP<->Action<->struts.x

Re: Returning response object only from Action

2011-09-28 Thread Christian Grobmeier
On Wed, Sep 28, 2011 at 6:27 PM, Anjib Mulepati wrote: > Thanks for your help. > I get the part to convert to/from the JSON object . But my problem was to > make such result fit within Struts. i.e. how can i populate the "data" into > select box using struts tag? Oh ok... now this is a little tim

Re: Returning response object only from Action

2011-09-28 Thread Anjib Mulepati
Thanks for your help. I get the part to convert to/from the JSON object . But my problem was to make such result fit within Struts. i.e. how can i populate the "data" into select box using struts tag? On 9/28/2011 12:14 PM, Christian Grobmeier wrote: Ajib, I am using jQuery, which makes an

Re: Returning response object only from Action

2011-09-28 Thread Christian Grobmeier
Ajib, I am using jQuery, which makes an json object out of the json string you would get. This is very straightforward. Since you are using plain javascript this is not possible so easily. Basically you get a string and need to turn it into a jsonobject. You could do it like that: http://www.json

Re: Returning response object only from Action

2011-09-28 Thread Anjib Mulepati
This is great I am able to get the String of all shows. But my ultimate goal was to get the result and populate in the select box. I am using AJAX since second box (charater) content depends upon first select box (tvshow). SO I need to parse String or is there any easy way to get values so that

Re: Struts 2 Annotation Tutorial (additional info)

2011-09-28 Thread M. Rakowski
I wrote: > make sure your Hallo-Action is in class HalloController in package > foo.actions.bar (foo and bar are random names) which is not quite correct: the prefix of the actions-package can be random. The sub-packages names defines the url namespace. For example, you can access the foo.action

Re: Struts 2 Annotation Tutorial

2011-09-28 Thread M. Rakowski
Hi, make sure your Hallo-Action is in class HalloController in package foo.actions.bar (foo and bar are random names). That it should work. Regards, Matthias - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For

Re: Returning response object only from Action

2011-09-28 Thread Christian Grobmeier
Hi Ajib, > public ActionForward execute(ActionMapping mapping, ActionForm inForm, > HttpServletRequest request, HttpServletResponse response) throws Exception { > >        // Get a list of characters associated with the select TV show >        String tvShow = (String) request.getParameter("tvShow"

Returning response object only from Action

2011-09-28 Thread Anjib Mulepati
Hi All, I want to know how I can send the repose object with JSON content to the view from the Action class. I am trying to add AJAX feature in Struts 1.3.8 application as shown in http://www.zammetti.com/articles/xhrstruts/index.htm. Instead of doing public ActionForward execute(ActionMap