Re: sending the report directly to the printer

2011-02-22 Thread @rju
ok sir i hav another problem am using sub reports in struts2-jasper report. in that am able to pass the parameters to the main report by creating the field as reportParams.parametername by following this link http://www.agileevidence.com/2009/01/jasper-reports-using-struts2-report.html; hope u

Re: sending the report directly to the printer

2011-02-22 Thread @rju
sir u said Can't you just put it in your jsp for the report action? please elaborate this sir. i am not getting your point. please sir Brian Thompson-5 wrote: Can't you just put it in your jsp for the report action? -Brian On Mon, Feb 21, 2011 at 2:24 AM, @rju

Re: requests die with a stack overflow

2011-02-22 Thread Kushan Jayathilake
attached gzip file no where to be found, If you can attach it again, so I can have a look. :) 2011/2/21 Paweł Wielgus poulw...@gmail.com Hi, it works until someone or some process creates specific conditions that trigers infinite loop, just a few weeks ago we have hit a problem like that,

Using Spring proxied Session Beans with the ExecAndWaitInterceptor

2011-02-22 Thread RogerV
Hi I've been experimenting with using Springs scoped Proxy beans to handle my session bean management rather than using the more normal SessionAware interface, bean id = diagnosticContext class=com.blackbox.genesis.services.diagnostics.DiagnosticContext scope=session

Re: Struts2 iterator tag

2011-02-22 Thread Jainitya
Hi I am also a newbie in struts 2 ,I dont know how to use this forum so replying on this thread. I also have lookalike problem with Iterator tag My JSP is s:iterator value=selllog var=selllog id=selllog status=selllog tr align=left valign=top

Re: Struts2 iterator tag

2011-02-22 Thread Dave Newton
On Tue, Feb 22, 2011 at 11:21 AM, Jainitya wrote: I am also a newbie in struts 2 ,I dont know how to use this forum http://struts.apache.org/mail.html s:iterator value=selllog var=selllog id=selllog  status=selllog     tr align=left valign=top           s:hidden value=%{selllog.idSellLog}

Re: sending the report directly to the printer

2011-02-22 Thread Brian Thompson
Could you post your code for your report? -Brian On Tue, Feb 22, 2011 at 5:15 AM, @rju nagarjunabatt...@gmail.com wrote: sir u said Can't you just put it in your jsp for the report action? please elaborate this sir. i am not getting your point. please sir Brian Thompson-5 wrote:

Re: Struts2 iterator tag

2011-02-22 Thread Maurizio Cucchiara
First and foremost, I'd try to make cleaner the iterator definition: s:iterator value=selllog var=selllogVar status=selllogStatus On 22 February 2011 17:21, Jainitya jainitya.jaiys...@gmail.com wrote: Hi I am also a newbie in struts 2 ,I dont know how to use this forum so replying on this

Re: sending the report directly to the printer

2011-02-22 Thread Dave Newton
On Tue, Feb 22, 2011 at 11:29 AM, Brian Thompson wrote: Could you post your code for your report? Why? This isn't an issue with the report itself, is it? Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For

Re: sending the report directly to the printer

2011-02-22 Thread Brian Thompson
On Tue, Feb 22, 2011 at 10:31 AM, Dave Newton davelnew...@gmail.com wrote: On Tue, Feb 22, 2011 at 11:29 AM, Brian Thompson wrote: Could you post your code for your report? Why? This isn't an issue with the report itself, is it? Dave I hope not -- I have no experience with Jasper

Re: Struts2 iterator tag

2011-02-22 Thread Jainitya
hi Dave I have updated my JSP as per your suggestion but still the issue is same. updated JSP s:iterator value=selllog id=selllogId status=selllogStatus tr align=left valign=top tds:textfield value=%{idSellLog}

Re: Struts2 iterator tag

2011-02-22 Thread Dave Newton
On Tue, Feb 22, 2011 at 12:26 PM, Jainitya wrote: [JSP] Would it be possible for you to only include the actual stuff that matters? Editing stuff down is really helpful for people trying to focus on what's actually wrong. 1) http://struts.apache.org/2.x/docs/selecting-themes.html You may be

Struts 2 Start Up Issue in Eclipse

2011-02-22 Thread Bernard Huang
Hi, I'm new here and I apologize if this issue has been addressed or answered. I have googled for answers, but I still seem stuck. I'm using Eclipse and Tomcat 1.5 container with the latest struts 2 code. When I run the HelloWorld application, I get the following error in my stack trace. In a

Re: Struts 2 Start Up Issue in Eclipse

2011-02-22 Thread Dave Newton
Are you /intending/ to use the OSGi plugin (it looks like you've deployed it, but I didn't double-check)? Unused plugins should *not* be deployed, as they can change framework behavior. Dave On Tue, Feb 22, 2011 at 7:46 PM, Bernard Huang bernyt...@gmail.com wrote: Hi, I'm new here and I

RE: Double Select Tag

2011-02-22 Thread Jerson John
Hi JL, Could u send me some sample code for it ...Appreciate ur help Many Thanks and Regards, -Original Message- From: jlm...@gmail.com [mailto:jlm...@gmail.com] Sent: Tuesday, February 22, 2011 12:41 PM To: Jerson John; 'Struts Users Mailing List' Subject: Re: Double Select Tag

Re: Double Select Tag

2011-02-22 Thread Dave Newton
On Tue, Feb 22, 2011 at 8:50 PM, Jerson John wrote: Could u send me some sample code for it ...Appreciate ur help I think probably searching for ajax autocomplete will bring up hundreds of examples; I'd try that first. Dave -

Re: Restrict direct access to static content

2011-02-22 Thread Miguel
You can always make a request aware struts action that returns a stream (not a jsp) and inside the action You can put everything You want to check the user. Open the file with a fileinputstream from an internal resource directory. Enviado desde mi Nexus S Miguel Ruiz Velasco Sobrino On Feb 16,

Re: sending the report directly to the printer

2011-02-22 Thread @rju
i am sending files UserWiseSalesPayInSlipReportRequest.java, UserWiseSalesPayInSlipReportAction.java, UserWiseSalesReport.jsp , UserWiseSalesPayinSlipReport.jsp, code in struts.xml files payInSlip in UserWiseSalesReport.jsp button will result UserWiseSalesPayinSlipReport.jsp. in that

Session for User Class

2011-02-22 Thread Jerson John
Hi, Can anyone suggest me a best practice for me to save the user object once user logined into my portal application...It seems that I am saving it in the actioncontext but not accessable to the other action classes...Pls help me Many Thanks and Regards, Jerson

Re: Session for User Class

2011-02-22 Thread Brian Thompson
Normally I use Spring Security for handling authentication. However, that's a fair bit of trouble to configure if your needs differ from the default config. For a roll your own approach, I'd put the user object into the session context. -Brian On Tue, Feb 22, 2011 at 11:43 PM, Jerson John

RE: Session for User Class

2011-02-22 Thread Jerson John
U mean u use the sessionaware interface rightI am also following the same way but my scope it seems limited to Actioncontext which means only available in one actionclass and if I want to have my session user object available to all the action class for that particular session how can I