To create new session without invalidating existing one

2011-09-29 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

Re: To create new session without invalidating existing one

2011-09-29 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

an odd problem about struts2 annotation

2011-09-29 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

Struts 2 date field problem

2011-09-29 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

Re: To create new session without invalidating existing one

2011-09-29 Thread Velmurugan M
-Original Message- From: Brian Thompson elephant...@gmail.com Date: Thu, 29 Sep 2011 01:26:48 To: Struts Users Mailing Listuser@struts.apache.org Reply-To: Struts Users Mailing List user@struts.apache.org Subject: Re: To create new session without invalidating existing one Well, first

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

2011-09-29 Thread Christian Grobmeier
Looks pretty nice. Are the changes available in the community edition or is is ultimate version only? Cheers Christian On Wed, Sep 28, 2011 at 8:04 PM, Yann Cébron yann.ceb...@googlemail.com wrote: Early Access Preview has started for the next major version of JetBrains IntelliJ IDEA, and

RE: To create new session without invalidating existing one

2011-09-29 Thread Marcus Bond
What is the reason for the new session? Doesn't sound a great plan. Anyway you're going to have a problem as this isn't how browsers expect to work, that said Chrome allows incognito browsing so that might work but it isn’t generally the expected behaviour. If the same application is being

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

2011-09-29 Thread Yann Cébron
Thanks. Struts 2 plugin is only available in Ultimate Edition as it requires Java EE/Web functionality. Regards, Yann On 29 September 2011 10:50, Christian Grobmeier grobme...@gmail.com wrote: Looks pretty nice. Are the changes available in the community edition or is is ultimate version

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

2011-09-29 Thread Maurizio Cucchiara
Hi Christian, my guess is that this plugin works only on ultimate edition (j2ee tools are usually included on that). In the meanwhile that Yann answers your question, may I ask you why are you so interested on CE version? Maurizio Cucchiara On 29 September 2011 10:50, Christian Grobmeier

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

2011-09-29 Thread Maurizio Cucchiara
Q.E.D. Struts 2 plugin is only available in Ultimate Edition as it requires Java EE/Web functionality. Maurizio Cucchiara - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail:

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

2011-09-29 Thread Christian Grobmeier
Hi, In the meanwhile that Yann answers your question, may I ask you why are you so interested on CE version? to be honest, UE has a cost of 175 €. I am not sure if IDEA would help me so much it is worth the money. You could say, then download the trial, which I might do. But with my slow

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

2011-09-29 Thread Maurizio Cucchiara
Ok, as I suspected: idea is free for apache (and generally for OS developer) committers. Maurizio Cucchiara Il giorno 29/set/2011 11.12, Christian Grobmeier grobme...@gmail.com ha scritto: Hi, In the meanwhile that Yann answers your question, may I ask you why are you so interested on CE...

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

2011-09-29 Thread Christian Grobmeier
Even with the repricing? Will try it out. Have a couple of months left, I think. Using another ide after nearly 10 years feels like relocating to a new city, signing the contract for a new job and programming a different language all at one time. Cheers On Thu, Sep 29, 2011 at 11:44 AM,

Re: To create new session without invalidating existing one

2011-09-29 Thread Brian Thompson
On Thu, Sep 29, 2011 at 3:58 AM, Marcus Bond mar...@marcusbond.me.ukwrote: What is the reason for the new session? Doesn't sound a great plan. Anyway you're going to have a problem as this isn't how browsers expect to work, that said Chrome allows incognito browsing so that might work but it

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

2011-09-29 Thread Christian Grobmeier
Struts 2 plugin is only available in Ultimate Edition as it requires Java EE/Web functionality. OK I have downloaded the package. meanwhil I could find add framework support. One question: why is the plugin downloading struts itself again instead of using the libs from my maven repos? And why

Re: an odd problem about struts2 annotation

2011-09-29 Thread Steven Yang
sorry just to be clear did you jar the classes or did you war the classes? if you jar the classes then i dont think struts 2 will scan your classes in jars. On Thu, Sep 29, 2011 at 2:34 PM, dan.zheng cmaj...@gmail.com wrote: hi,everyone I meet an odd problem with struts2 annotation,Let me

Re: an odd problem about struts2 annotation

2011-09-29 Thread dan.zheng
I jar the classes and put it into WEB-INF/lib of course you know,the war will package all jars and jsp files in bundle why the struts2 can't scan classes in WEB-INF/lib? On Fri, Sep 30, 2011 at 10:05 AM, Steven Yang kenshin...@gmail.com wrote: sorry just to be clear did you jar the classes or

Re: an odd problem about struts2 annotation

2011-09-29 Thread dan.zheng
I know some tricky about this problem the struts convention will scan action class in the specific package for example: struts.convention.package.locators indicate the action class suffix but when you jar the classes,I suppose that struts2 can't scan the action class in jar files,if this is

Re: an odd problem about struts2 annotation

2011-09-29 Thread Steven Yang
for one reason is that struts2 will not scan your classes in jar is that if someone tempered with you jar or any of your jar has class with Struts Annotations then your user can access these actions without you knowing it. I believe this is the same reason why Spring doesnt scan files in jars and

RE: Struts 2 Annotation Tutorial (additional info)

2011-09-29 Thread Steve
Hello, Yes, I'm basing it off of the Struts_Annotations_Ant_2_2_1.zip. I removed the struts.xml like you instructed but still no luck. I added the struts.devMode param to my web.xml file. So my web.xml file looks like this: ?xml version=1.0 encoding=UTF-8? web-app id=WebApp_ID version=2.5

Re: Struts 2 Annotation Tutorial (additional info)

2011-09-29 Thread Łukasz Lenart
2011/9/30 Steve it_soluti...@hotmail.com: Remember, my app server is JBoss. Which version ? Could you try on Tomcat ? Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ Warszawa JUG conference - Confitura http://confitura.pl/