Re: eclipse and Struts

2002-07-24 Thread Damien VIEL
Yes you can Get the Tomcat plugin here : http://www.sysdeo.com/eclipse/tomcatPlugin.html Regards Dams - Original Message - From: "Hoang, Hai" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, July 24, 2002 4:50 PM Subject: RE: eclipse and Strut

Forward + parameter

2002-05-28 Thread Damien VIEL
Hi all, Is it possible to set a forward like this in the struts-config.xml ? And then, call from the perform method in the Action Class other customPerform method like following : import ...; public final class AddCompanyAction extends Action { public ActionForward perform(

Re: HELP : SetAttribute & Logic

2002-05-28 Thread Damien VIEL
:1107 ) at java.lang.Thread.run(Thread.java:536) Why my JSP do not have access to the scope "request" ? Help me please !!! I'm becoming crazy !!! Thanks Dams - Original Message - From: "Damien VIEL" <[EMAIL PROTECTED]> To: "Struts Users Mailin

Re: [ANNOUNCE] Struts Wizard 1.0.1 .... NullPointerException fixed

2002-05-28 Thread Damien VIEL
It's working (Ca marche !!) Dams - Original Message - From: "emmanuel.boudrant" <[EMAIL PROTECTED]> To: "Damien VIEL" <[EMAIL PROTECTED]>; "Struts Users Mailing List" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Cc: <[EMAIL PROT

Eclipse + debug

2002-05-28 Thread Damien VIEL
Hi Mac Ferguson, Hi All I've found this thread about struts debuging with Eclipse and Tomcat. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg28571.html I'm using Eclipse and I'm trying to use the debuger but I do not understand how it's working. Would You give me some explaina

HELP : SetAttribute & Logic

2002-05-28 Thread Damien VIEL
Hi All !! I still have a bug for several days.. I'm trying to set in the request object a Arraylist and display it on a JSP file. --- In my action class i'm doing : ArrayList proj = new ArrayList(); proj.add(new LabelValu

Re: [ANNOUNCE] Struts Wizard Beta for ECLIPSE v2.0

2002-05-28 Thread Damien VIEL
om.cross.wizard.struts/ > To use it, click on New... , select Jakarta Struts > Let's struts it ... and enjoy. > -Emmanuel > Damien VIEL <[EMAIL PROTECTED]> a écrit : Nice news, > > How do you install the plugin in Eclipse and how do you use it ? > > Thanks > Dams >

Re: [ANNOUNCE] Struts Wizard Beta for ECLIPSE v2.0

2002-05-28 Thread Damien VIEL
Nice news, How do you install the plugin in Eclipse and how do you use it ? Thanks Dams - Original Message - From: "emmanuel.boudrant" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Monday, May 27, 2002 6:39 PM Subject: [ANNOUNCE] Struts Wizard Beta for ECL

Re: How to chain Actions

2002-05-27 Thread Damien VIEL
Hi, I think that the best solution is to link the 2 actions with the mapping defined in the Struts-config file. When the first one is finished, you call the appropiate forward mapping and then execute the second Action. Do not forget to set the needed object in the session or in the request object

Re: Why use DAOFactory? Can't get connection

2002-05-24 Thread Damien VIEL
Hi, Maybe this Thread will help you. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg30193.html Regards Dams - Original Message - From: "Chen, Dean (Zhun)" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Friday, May 24, 2002 10:37 PM Subject:

Re: Pb : request.SetAttribute() from Action

2002-05-24 Thread Damien VIEL
l Message - From: "Damien VIEL" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, May 24, 2002 9:58 PM Subject: Re: Pb : request.SetAttribute() from Action > Yes I did, > following my JSP : > <%@ taglib uri="

Re: Pb : request.SetAttribute() from Action

2002-05-24 Thread Damien VIEL
; Sent: Friday, May 24, 2002 7:17 PM Subject: RE: Pb : request.SetAttribute() from Action > Damien, > > Did you import the struts tags, if not the tags cannot be interpreted and > you will have the message from "Error" from logic not present will always > be printed. >

Re: Pb : request.SetAttribute() from Action

2002-05-24 Thread Damien VIEL
ECTED]> Sent: Friday, May 24, 2002 6:34 PM Subject: RE: Pb : request.SetAttribute() from Action > First, don't type proj as an ArrayList; it should be a List. > > Second, if what is happening is as you say, proj == null. Check what you > are putting into it. > > Mark

Re: Pb : request.SetAttribute() from Action

2002-05-24 Thread Damien VIEL
heck what you > are putting into it. > > Mark > > -Original Message- > From: Damien VIEL [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 24, 2002 12:25 PM > > Hi, > I've many problem to put a ArrayList from my Action in the request. >

Pb : request.SetAttribute() from Action

2002-05-24 Thread Damien VIEL
Hi, I've many problem to put a ArrayList from my Action in the request. --- By doing for example in my Action Class : ArrayList proj = new ArrayList(); proj.add(new LabelValueBean("name", "id")); reques

Help ! Logic

2002-05-24 Thread Damien VIEL
Hi, I've a little error with the TagLib Logic. I'm trying to populate a JSP file from my Action class. In the action i'm doing : UserBO userBO = new UserBO(); ResultSet rs = userBO.getAllUserProject(userid); ArrayList proj = new ArrayList(); while (rs.next()) { String name = rs.getSt

DAO- BO in Struts

2002-05-16 Thread Damien VIEL
Hi, Can someone explain me "simply" how work DAO and BO classes in Struts. What are their links with the Form object the Action object. We can take this example : First, there is a login page that check from a DataBase if a User (Object) can login. Then the user enter into the website and add a

Re: Help : Dropdown List

2002-05-16 Thread Damien VIEL
request before you forward to > the view. > > robert > > > -Original Message- > > From: Damien VIEL [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, May 15, 2002 11:21 AM > > To: Struts Users Mailing List > > Subject: Re: Help : Dropdown List > > >

Re: populating list for html:options tag within FormBean

2002-05-16 Thread Damien VIEL
ghts. -Ranjan. -Original Message- From: Damien VIEL [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 11:59 AM To: Struts Users Mailing List Subject: Re: populating list for html:options tag within FormBean I've created the following Action that will populate my forms : public fin

Re: populating list for html:options tag within FormBean

2002-05-15 Thread Damien VIEL
I've created the following Action that will populate my forms : public final class PrepareFormAction extends Action { public ActionForward perform( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {

Re: Help : Dropdown List

2002-05-15 Thread Damien VIEL
  ... I can't find the solution. Dams - Original Message - From: "Damien VIEL" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, May 15, 2002 4:16 PM Subject: Re:

Re: Help : Dropdown List

2002-05-15 Thread Damien VIEL
tes the datastore. > > Client request ===> PreAddProjectAction ===> View > submit > > AddProjectAction ===> next view > > robert > > > -Original Message- > > From: Damien VIEL [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, May 15, 2002

Re: Help : Dropdown List

2002-05-15 Thread Damien VIEL
I understood ur problem. > > Do u have your "list" object in request scope with the key "complist". > and if u would like to populate the complist in list box then > change the statment to below one.If u r looking for option values and option > names are same. >

Re: Help : Dropdown List

2002-05-15 Thread Damien VIEL
MAIL PROTECTED]> Sent: Tuesday, May 14, 2002 7:46 PM Subject: RE: Help : Dropdown List > sorry I did not clarify. > > I was not advocating to do this in the jsp. > This should be done within the action. > > I guess I take this for granted.hmmm. > > JM > > > --

Re: Help : Dropdown List

2002-05-14 Thread Damien VIEL
dd(new org.apache.struts.util.LabelValueBean("POP3 Protocol", > "pop3")); > pageContext.setAttribute("serverTypes", list); > %> > > > > > > labelProperty="label"/> > > > > > JM > > > -Origin

Re: Help : Dropdown List

2002-05-14 Thread Damien VIEL
t the struts-example running??? > > > JM > > > -Original Message- > > From: Damien VIEL [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, May 14, 2002 12:54 PM > > To: Struts Users Mailing List > > Subject: Help : Dropdown List > > > > > > Hi :) &g

Help : Dropdown List

2002-05-14 Thread Damien VIEL
Hi :) Could anyone pls tell me how to populate a dropdown list using struts tag libraries. I've heard that I need to put a Collection (Arraylist) in the request. This Collection is build from a Database. For Example I have 3 files : - UserForm.java - UserAction.java - SelectUser.jsp I want to s

Re: Select Input + MySQL ?

2002-05-10 Thread Damien VIEL
you passing a ResultSet to your jsp? > > JM > > > -Original Message- > > From: Damien VIEL [mailto:[EMAIL PROTECTED]] > > Sent: Friday, May 10, 2002 8:27 AM > > To: Struts Users Mailing List > > Subject: Select Input + MySQL ? > > > > > &

Re: HELP : Exception report ??

2002-05-10 Thread Damien VIEL
Mailing List" <[EMAIL PROTECTED]> Sent: Monday, May 10, 1999 2:12 AM Subject: Re: HELP : Exception report ?? > explain what u have done... to recover to help all of us... > share u experience > cheers > kest > - Original Message - > From: Damien VIEL

Select Input + MySQL ?

2002-05-10 Thread Damien VIEL
Hi, Anybody have a sample source code that shows how to do a Select input from a ResultSet ? Thanks All Dams -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: HELP : Exception report ??

2002-05-10 Thread Damien VIEL
> have u done any chnages in configuration file of the server... mostly .conf > file... if so uncomment those changes or recover file from backup and try > again > > cheers > kets > - Original Message - > From: Damien VIEL <[EMAIL PROTECTED]> > To: Struts

HELP : Exception report ??

2002-05-10 Thread Damien VIEL
Hi, When I'm submitting my form, I've got this error and I can't find the solution !! Help-me :) Thanks All Dams --- type Exception report message Internal Server Error description The server encountered an internal e

Session + getProperty > Not Working

2002-04-30 Thread Damien VIEL
tpProcessor.java:1107 ) at java.lang.Thread.run(Thread.java:536) Regards, Damien VIEL [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Eclipse plug-in ?

2002-04-24 Thread Damien VIEL
http://www.sysdeo.com/eclipse/tomcatPlugin.html Regards Damien [EMAIL PROTECTED] - Original Message - From: "Anthony W. Marino" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>; "Damien VIEL" <[EMAIL PROTECTED]> Sen

Re: Eclipse plug-in ?

2002-04-24 Thread Damien VIEL
plug-in ? > The Struts Console has a plugin for NetBeans and > Forte, but not for Eclipse yet. > > http://www.jamesholmes.com/struts/ > > -james > > --- Damien VIEL <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Does anybody use Ecplise ? >

Re: Eclipse plug-in ?

2002-04-24 Thread Damien VIEL
Holmes" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 2:59 PM Subject: Re: Eclipse plug-in ? > The Struts Console has a plugin for NetBeans and > Forte, but not for Eclipse yet. > > http://www.jameshol

Eclipse plug-in ?

2002-04-24 Thread Damien VIEL
Hi, Does anybody use Ecplise ? Is there some plug-in like the Struts Console for Forte ? Thanks All Dams [EMAIL PROTECTED] -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Singleton vs ServletContext

2002-04-24 Thread Damien VIEL
he application level services, including connection pools, on > start-up based on configuration files. If you like, I can send you a copy of > the servlet and associated connection pool. > > -Adam Kipnis > [EMAIL PROTECTED] > > > -Original Message- > From: Damien VIEL [

EDI ?

2002-04-23 Thread Damien VIEL
Hi !! What is the best EDI for Struts ? - Eclpise - Forte for Java - other ? Thanks All Best Dams

Singleton vs ServletContext

2002-04-23 Thread Damien VIEL
Hi !! My question is about the best way to implement a JDBC ConnectionPool for Struts. I've heard that the one that is already in Struts is not a good choice. I've also read many mails about PoolMan. In Servlets & JSP book from Marty Hall, he speaks also about Singleton. What's the easiest way