Re: S2 annotations to limit HTTP methods?

2013-03-25 Thread Dian Aditya
y is asking about > > such a functionality. > > > > > > Regards > > -- > > Ɓukasz > > + 48 606 323 122 http://www.lenart.org.pl/ > > > > ----- > > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > > For additional commands, e-mail: user-h...@struts.apache.org > > > > > -- Dian Wahyu Aditya Meruvian

Re: JasperReport Weblogic 11g NPE Problem

2012-06-28 Thread Dian Aditya
t by enabling the "Archived Real Path" global property in > Weblogic admin console > configuration > Web Applications. > > Doing same might help you. > > On Tue, Jun 26, 2012 at 4:53 PM, Dian Aditya >wrote: > > > Hi, > > > > I've deployed

JasperReport Weblogic 11g NPE Problem

2012-06-26 Thread Dian Aditya
Hi, I've deployed my struts2 application which uses jasperreports plugin. When deploying in Glassfish3 and Tomcat, the reports working fine. But when I deploy to Weblogic 11g the following NPE is given. java.lang.NullPointerException at weblogic.servlet.internal.ServletResponseImpl.sendError(Serv

redirect

2008-12-09 Thread Aditya Lukman
gt; so,, how to solve my problem please, give me a descriptions for my problem thank's for your help -- Aditya Lukman Afandi Programmer / Blueoxygen Developer Web Office : http://www.meruvian.org Phone Office : 02193586577 HP : 085224191503 Forum : http://www.mervforum.com/ Blog : htt

redirect

2008-12-08 Thread Aditya Lukman
Hi all,, i want to redirect from http://localhost:8080/cimeng/adhit *to* http://localhost:8080/cimeng/profile.action?nickname=aray so,, how to solve my problem please, give me a descriptions for my problem thank's for your help -- Aditya Lukman Afandi Programmer / Blueoxygen Developer

Re: html:select in Struts

2004-09-19 Thread Aditya Kapur
In order to use and you must put the values you want to diaplay in a collection like private static ArrayList monthDisplay=new ArrayList(); monthDisplay.add(new org.apache.struts.util.LabelValueBean( "Jan", "0" )); monthDisplay.add(new org.apache.struts.util.LabelValueBean( "Feb", "1" )); month

Re: Struts development methodology

2004-09-14 Thread Aditya Kapur
We always have the UI folks pototype in Dreanweaver, then Java folks will put merge it with Struts tags. Once the app is working then a combination of dreamweaver and notepad does the job. On Tue, 14 Sep 2004 21:35 -0400, Victor Grazi <[EMAIL PROTECTED]> wrote: > Not sure I understand. > What's a

[OT]:JSp and database

2004-08-09 Thread aditya
k the issue is with writing JDBC statements in the JSP directly. I need inputs on this. Is the presence of JDBC statements affecting the performance of this JSP ? Should I write a separate bean with all my queries in it and use this in the JSP? Regds Aditya

RE: System.out.println

2004-08-05 Thread aditya
Sure makes a difference in readability! if (debug) { System.out.println(..); } versus debug(..); I think that can definitely render more readable a java-class. Or don't you so? hth Alexander -Original Message----- From: aditya [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: System.out.println

2004-08-05 Thread aditya
riginal Message- From: Xavier Noria [mailto:[EMAIL PROTECTED] Sent: Thursday, August 05, 2004 11:37 AM To: Struts Users Mailing List Subject: Re: System.out.println On Aug 5, 2004, at 11:22, Aditya Athalye wrote: > I agree with u that those many if statements will clutter code. But a >

RE: System.out.println

2004-08-05 Thread Aditya Athalye
I agree with u that those many if statements will clutter code. But a method call everytime is also expensive in terms of performance. So it is really a trade off between performance and readability. Regds Aditya -Original Message- From: Xavier Noria [mailto:[EMAIL

RE: System.out.println

2004-08-05 Thread Aditya Athalye
U shld use a flag say debug. so the code will look like boolean debug = true; if(debug) System.out.println(" "); In production make the flag as false. Hope this helps Thanks Aditya -Original Message- From: Shailender Jain [mailto:[EMAIL

RE : PortableRemoteObject.narrow()

2004-07-28 Thread Aditya Athalye
I dont think there should be any need to use Portable Remote object.narrow() method for getting reference to EJBObject. Basically there is no need to cast since home.create() will directly give the reference to the component interface irrespective of underlying protocol Thanks Aditya

RE: About Struts + JBoss preference issue

2004-07-22 Thread Aditya Athalye
DAOs. Try to cache queries and other resources which are expensive for creation.Also look into your Java code and see where u can optimize it. thanks Aditya -Original Message- From: news on behalf of Vic Cekvenich Sent: Thu 7/22/2004 4:39 PM To: [EMAIL

Logic Iterate tag

2004-07-19 Thread Aditya Athalye
. Thanks and Regards Aditya