RE: J2EE IDE

2003-08-27 Thread Shashank Dixit
Hi Friends JBuilder 9 is really a good IDE. Does BTW Eclipse support ejb development? I used myEclipseIde for J2EE dev. and It was OK. Shashank S. Dixit Software Analyst. Datamatics Ltd. Contact: 28291253 ext 146 Mobile: 9820930075 Be brave against all odds. Never give up. -Original

RE: RE : Remote and local EJB

2003-08-21 Thread Shashank Dixit
advantage of both local and remote interface of EJB. I would say we should prefer the local EJB call instead of remote EJB call as far as possible. Viral -Original Message- From: Shashank Dixit [mailto:[EMAIL PROTECTED] Sent: Thursday, August 21, 2003 10:29 AM To: Struts Users

RE: RE : Remote and local EJB

2003-08-21 Thread Shashank Dixit
, 2003 3:35 PM To: [EMAIL PROTECTED]; Struts Users Mailing List Subject: RE : Remote and local EJB This seems to be good idea. I think EJB configuration files may also help us to achieve the same. -Original Message- From: Shashank Dixit [mailto:[EMAIL PROTECTED] Sent: Thursday, August 21

RE: RE : Remote and local EJB

2003-08-20 Thread Shashank Dixit
Hi Viral I am also using struts and developing a framework with struts which supports ejb too. May I know the actual need to call ejb either by remote or local interface depending on request? So that I can think in the direction of getting the solution. Shashank S. Dixit Software Analyst.

RE: RE : Remote and local EJB

2003-08-20 Thread Shashank Dixit
Hi Viral Ideally there should be one stateless session bean within action class and business component EJBs so that you have only one remote call and all other EJB calls are local. You should always program considering different tiers on different machines, although you are using the web and app

RE: Model and Business in Struts

2003-08-14 Thread Shashank Dixit
Hello We are in process of developing such framework, As soon as it gets complet I will mail it to you., Pls keep in touch and if you get some information on it forward it to me. - Shashank -Original Message- From: Mehdi Bizhani [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003

RE: LookupDispatchAction

2003-08-11 Thread Shashank Dixit
HI Nalini There is a fantastic example given in Programming Jakarta Struts from Orielly. Shashank S. Dixit Software Analyst. Datamatics Ltd. Contact: 28291253 ext 146 Mobile: 9820930075 Be brave against all odds. Never give up. -Original Message- From: Nalini Pal [mailto:[EMAIL

RE: Struts Action in Welcome File List

2003-08-08 Thread Shashank Dixit
This is my welcome.jsp file. %@ page contentType=text/html; charset=UTF-8 % %@ page language=java % %@ taglib uri=/WEB-INF/struts-html.tld prefix=html % %@ taglib uri=/WEB-INF/struts-logic.tld prefix=logic % html:html locale=true head titleWELCOME TO STRUTS/title /head body logic:redirect

RE: Struts w/EJB

2003-07-31 Thread Shashank Dixit
try looking xpetstore. xpetsotre.sourceforge.net. see if it helps Shashank -Original Message- From: Kalra, Ashwani [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:24 AM To: 'Struts Users Mailing List' Subject: RE: Struts w/EJB hi, Struts doesnt enforce or set any rules or

Need Help : DispatchAction and html:image without javascript.

2003-07-24 Thread Shashank Dixit
Hello All, I request you to suggest solution for the following problem. I want to use LookupDispatchAction or DispatchAction class so that the framework can call my action class methods when user preses any button in the JSP page. If I use html:submit buttons the value (which is equal to

Re: Need Help : DispatchAction and html:image without javascript.

2003-07-24 Thread Shashank Dixit
To: Shashank Dixit Cc: Struts Users Mailing List Sent: Thursday, July 24, 2003 12:51 PM Subject: Re: Need Help : DispatchAction and html:image without javascript. Shashank, look for ImageButtonDispatchAction.java in the archives of 'struts-user'. The image buttons get submitted as property.x

Re: What is the default scope of an ActionForm.

2003-07-10 Thread Shashank Dixit
The default scope is REQUEST - Original Message - From: Ravi Garg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 10, 2003 4:19 PM Subject: What is the default scope of an ActionForm. Hi all, can any of you tell me if I donnot specify any scope of Form in

Re: Design question: Confirm action after validation ?

2003-07-09 Thread Shashank Dixit
Hello Adam I have one doubt. You have base action class for all your subaction classes. What is the responsibility of this base action class. Do your base action class checks which button is clicked? If there are say 10 buttons in one form (say, GO, ADD, SAVE, NEXT, etc) are there 10 if

Re: Design question: Confirm action after validation ?

2003-07-09 Thread Shashank Dixit
. Shashank Dixit wrote: Hello Adam I have one doubt. You have base action class for all your subaction classes. What is the responsibility of this base action class. Do your base action class checks which button is clicked? If there are say 10 buttons in one form (say, GO, ADD, SAVE

About Value Object

2003-06-30 Thread Shashank Dixit
Hello All I am designing a framework using struts which involvs support for EJB too. I got one prob of sending value objects to app servr and taking it back. I am creating value objects from FORM beans and then sending it to AppServer. Then after EJB call and whatever is the

Re: site root going straight to a .do

2003-06-30 Thread Shashank Dixit
Hi Simon We specify welcome file in web.xml file and not in struts-config.xml. Since the web server or app server doesnt hv any idea about struts config, putting a struts related action or file in web.xml will not help. What you can do is you can have a jsp as a welcome file which then

Re: Logic:iterate

2003-06-20 Thread Shashank Dixit
I have set the list attribute list as follows. result.getArticleListDate returns ArrayList of ValueObjects com.dl.bi.vo.ArticleVo pageContext.setAttribute(list, result.getArticleListData(), PageContext.PAGE_SCOPE); And then I did the following logic:iterate id=myCollectionElement name=list

Logic:Iterate - Pls Help.........

2003-06-20 Thread Shashank Dixit
Hello All Can somebody pls explain how to use Logic:iterate I am using following code logic:iterate id=myCollectionElement name=list type=com.dl.bi.vo.ArticleVo scope=page bean:write name=myCollectionElement property=articleId/ bean:write name=myCollectionElement

Logic:iterate

2003-06-19 Thread Shashank Dixit
Hello All Can somebody pls explain how to use Logic:iterate I am using following code logic:iterate id=myCollectionElement name=list type=com.dl.bi.vo.ArticleVo scope=page bean:write name=myCollectionElement property=articleId/ bean:write name=myCollectionElement

Re: Struts Validation Question

2003-06-03 Thread Shashank Dixit
Test msg .. pls ignore Shashank S. Dixit Senior Software Engineer Datamatics Ltd. Contact: 28291253 ext 133 Mobile: 9820930075 - Original Message - From: Bailey, Shane C. [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Monday, June 02, 2003 7:32 PM Subject:

Test

2003-06-03 Thread Shashank Dixit
Test Msg... Pls ignore Shashank S. Dixit Senior Software Engineer Datamatics Ltd. Contact: 28291253 ext 133 Mobile: 9820930075