Data source

2002-04-17 Thread Daniel WAMARA

Thanks for the answer but I've forgottent to say that it works fine on my workstation 
(NT4) but I got this on a Linux server.

D.

-

Unit test the beans outside of Struts.
Just write a System main console app that calls your bean.
hth,
Vic

Daniel WAMARA wrote:

> Could someone tell me what that is, I got this message when trying to work with my 
>application (The datasource data are in the Struts-config file)
>
> "2002-04-17 03:35:12 - Ctx( /hermes ): Exception in: R( /hermes + /login.do + null) 
>- javax.servlet.ServletException: Exception initializing application data source 
>org.apache.struts.action.DATA_SOURCE
> at 
>org.apache.struts.action.ActionServlet.initDataSources(ActionServlet.java:1080)
> at org.apache.struts.action.ActionServlet.init(ActionServlet.java:471)
> at javax.servlet.GenericServlet.init(GenericServlet.java:258)
> at org.apache.tomcat.core.ServletWrapper.doInit(ServletWrapper.java:317)
> at org.apache.tomcat.core.Handler.init(Handler.java:215)
> at org.apache.tomcat.core.ServletWrapper.init(ServletWrapper.java:296)
> at org.apache.tomcat.core.Handler.service(Handler.java:254)
> at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
> at 
>org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
> at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
> at 
>org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)
> at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
> at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
> at java.lang.Thread.run(Thread.java:484)
> Root cause:
> java.sql.SQLException: 0½£F(´£ï?½ï?½PªD@ÛB¨ÞBC@
>
> at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
> at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java:1597)
> at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:354)
> at oracle.jdbc.driver.OracleConnection.(OracleConnection.java:249)
> at 
>oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:365)
> at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:260)
> at 
>org.apache.struts.util.GenericDataSource.createConnection(GenericDataSource.java:731)
> at org.apache.struts.util.GenericDataSource.open(GenericDataSource.java:668)
> at 
>org.apache.struts.action.ActionServlet.initDataSources(ActionServlet.java:1077)
> at org.apache.struts.action.ActionServlet.init(ActionServlet.java:471)
> at javax.servlet.GenericServlet.init(GenericServlet.java:258)
> at org.apache.tomcat.core.ServletWrapper.doInit(ServletWrapper.java:317)
> at org.apache.tomcat.core.Handler.init(Handler.java:215)
> at org.apache.tomcat.core.ServletWrapper.init(ServletWrapper.java:296)
> at org.apache.tomcat.core.Handler.service(Handler.java:254)
> at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
> at 
>org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:797)
> at org.apache.tomcat.core.ContextManager.service(ContextManager.java:743)
> at 
>org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:210)
> at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)
> at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498)
> at java.lang.Thread.run(Thread.java:484)"
>
> Thanks for the help.
>
> Daniel
>
>




Re: Can Dreamweaver and Struts work together

2002-03-28 Thread Daniel WAMARA

I'm using Dreamweaver since the version 2 and now I'm in the 4th and work 
with Struts, you can use DW4 qith Struts by adding an extension that you can 
find on http://javacentral.compuware.com and download OptimalJ Dreamweaver 
Integration Kit 1.0.9 and you will be able to directly add Struts tag into 
your JSPs but the only problem is the fact that the process takes 2 or 3 
seconds when normal tags take less than a second.

Daniel

_
MSN Photos est le moyen le plus simple de partager, modifier et imprimer vos 
photos préférées. http://photos.msn.fr/Support/WorldWide.aspx


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Form values

2002-03-04 Thread Daniel WAMARA

I would like to make an update of some values of a form and for that, I have to take 
back some values in a database and set the values of the form fields relevant to each. 
I'm trying to use the set Method of the form bean but I got no value back in my form.

Could someone help ?

Daniel W.



404 Error - Solved

2002-01-11 Thread Daniel WAMARA

I've come to yolve the problem : taking a look in the tomcat.log file, I've found that 
there was a ClassNotFoundException relative to the oracle.jdbc.odbc.driver and I've 
just added it to the classpath and now everything is in order.

Daniel



404 Error

2002-01-11 Thread Daniel WAMARA

I'm trying to launch a Struts application that is properly working on one of my 
colleague's PC because I have to finish up something but as soon as I try to make a 
login via a login page (which works on other PCs), I have a 404 Page not found error 
and in my Tomcat Console, I have 

"

2002-01-11 10:58:50 - ContextManager: Host = localhost
2002-01-11 10:58:50 - ContextManager: SM: Prefix match /hermes/login ->  null null
2002-01-11 10:58:50 - ContextManager: SimpleMapper1: Default map /login null
2002-01-11 10:58:50 - ContextManager: SimpleMapper1: SM: After mapping R( /hermes + 
/login + null) null
2002-01-11 10:58:50 - ContextManager: No handler for request R( /hermes + /login + 
null) 404
2002-01-11 10:58:50 - Ctx( /hermes ): 404 R( /hermes + /login + null) null
2002-01-11 10:58:50 - Ctx( /hermes ): Handler tomcat.notFoundHandler(null/null) 
tomcat.notFoundHandler

" 

Someone could give me a hand because I really don't know what to do ? Other Struts 
applications are working well on my PC.

Daniel



Re: File upload error when no file attached - IOException

2002-01-04 Thread Daniel WAMARA

Hi Doug, 

I don't know if you've already found solution to your problem but what you can do is 
to put a form validation in your ActionForm that handles that, here is what I did for 
mine (it also handles the case if a file is empty, saying with a 0 Kb size) :

/**
 * Validate the properties that have been set from this HTTP upload request,
 * and return an ActionErrors object that encapsulates a
 * validation error relative to a missing file to be uploaded.  
 * If no errors are found, return 
 * null or an ActionErrors object with no
 * recorded error messages.
 *
 * Creation date: (13.11.01 19:19:10)
 *
 * @param mapping The mapping used to select this instance
 * @param request The servlet request we are processing
 *
 * @return ActionErrors
 */
 public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
 {
 ActionErrors errors = new ActionErrors();
 FormFile theFile = this.getThefile();   

 if (theFile == null || theFile.getFileName().length() == 0) // as Struts always 
do a temp file for each file you want to upload, "theFile==null" is always false
 errors.add("upload", new ActionError("uploadForm.error.uploadfile.required"));

 if (theFile.getFileSize() == 0)
 errors.add("uploadsize", new 
ActionError("uploadForm.error.filesize.zero.notallowed"));

 return errors;
 }

Hope it helps, 

Daniel



Re: Files download

2001-12-14 Thread Daniel WAMARA 2

I know none but I made an application doing that, all you have to do is to set up the 
content type of the response. Here's the code I made for :

public ActionForward perform(ActionMapping mapping, ActionForm form, 
HttpServletRequest request, HttpServletResponse response) throws IOException, 
ServletException 
{
HttpSession session = request.getSession();

try 
{
 
String username = getUser(request);
 
String filetoget = request.getParameter("filetoget");
response.setContentType("text/html");
response.setHeader("Content-disposition", "attachment; filename="+ filetoget);
BufferedOutputStream bos = new 
BufferedOutputStream(response.getOutputStream());
FileInputStream fis = new FileInputStream(new File(filetoget));
byte[] buffer = new byte[1024];
int bytes_read;
while((bytes_read = fis.read(buffer)) != -1)
bos.write(buffer, 0, bytes_read);
fis.close();
bos.close(); 

}
catch(Exception me)
{

}

return mapping.findForward("success");
 }




RE: Quickly change page to prevent user to click several times on a link

2001-12-04 Thread Daniel WAMARA

I think that normally, according to the JSP specification, you can not 
fowrdard them to an html page but only to a JSP so send them to a JSP and 
put the refresh tag in the head, I did it last week and it works.

Daniel WAMARA


>From: "Jeff Martin" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>Subject: RE: Quickly change page to prevent user to click several times on 
>a link
>Date: Tue, 4 Dec 2001 10:11:32 -0500
>
>Send them to an html page with a meta-refresh tag to automatically
>transfer him to the pdf-generating page.
>
>-Original Message-
>From: Frédéric Houbie - ABSIS-GROUP [mailto:[EMAIL PROTECTED]]
>Sent: Tuesday, December 04, 2001 10:09 AM
>To: Struts-User
>Subject: Quickly change page to prevent user to click several times on a
>link
>
>
>Hi,
>
>I have an application that generate PDF report (using FO). The problem
>is
>that when a user click on a link to generate the report, it takes a long
>time, but the actual page stays until the action bean redirect the user
>to
>the generated report. But the user can click several times on the link
>when
>he is waiting (grr). How could I transfer him to a 'waiting
>page'
>then transfer him to the generated report
>
>Thanks
>
>Frédéric
>
>
>
>--
>To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>
>


_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Can't delete upload temporary file

2001-12-04 Thread Daniel WAMARA

I've ended up by making a upload module in Struts (thanks to those who 
helped) but now I got a problem with the temporary file struts-created : it 
seems that I can't delete it with the destroy() method.

I've try to create a Security manager to check if I had permission to delete 
the file but the result was that I had none.

try
{
scman.checkDelete(file.getFilePath());
}
catch (SecurityException sexc)
{
...
}

So I created a new Filepermission for being able to set a new permission of 
deletion over the file

try
{
scman.checkDelete(file.getFilePath());
}
catch (SecurityException sexc)
{
...
FilePermission filepermission = new FilePermission(file.getFilePath(), 
"delete");
try
{
...

but I still have that permission and making all the uploads I'm doing just 
for thest could lead to a huge quantity of files, so how could I get ride of 
that ?

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Could not locate TLD META-INF/taglib.tld

2001-12-03 Thread Daniel WAMARA

Hi everybody,

I got this error every time I want to launch a Jsp with some struts tags in 
that, I really don't know why.

I've try to take a look on the mailing list but the two answers I've found 
(http://www.mail-archive.com/struts-user@jakarta.apache.org/msg07550.html 
and 
http://www.mail-archive.com/struts-user@jakarta.apache.org/msg02380.html) 
doesn't seem to be my solution for that problem.

I got some others Struts applications and they work well, except the one 
that gives back this error, someone can help ?

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: Struts Dreamweaver extension

2001-11-20 Thread Daniel WAMARA

You got it right, I just got the same and I really don't know why.

Daniel WAMARA


>From: "Paul Bienick" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>
>Subject: RE: Struts Dreamweaver extension
>Date: Tue, 20 Nov 2001 07:36:15 -0500
>
>Hello,
>
>This is great, but I couldn't get any of the .JSP files from the Struts
>example app to open without multiple parsing errors. (Dreamweaver/Ultradev
>4).
>
>Paul
>
>-Original Message-
>From: Kok, Arjan [mailto:[EMAIL PROTECTED]]
>Sent: Monday, November 19, 2001 8:02 AM
>To: '[EMAIL PROTECTED]'
>Subject: Struts Dreamweaver extension
>
>
>Hello,
>
>Some time ago we at Compuware Amsterdam lab announced a project to 
>integrate
>the Struts taglibs in MacroMedia Dreamweaver. The project has finished, and
>as promised the Dreamweaver extension can be freely downloaded. Goto
>http://javacentral.compuware.com and download OptimalJ Dreamweaver
>Integration Kit 1.0.9
>
>With this extension, it becomes possible to view and edit JSP files with
>Struts tags in Dreamweaver. This extension supports the MVC (or Model2)
>paradigm where JSP files provide the view of the application.
>It is based on the Struts 1.0 tag libraries. Any comments, etc are
>appreciated.
>
>Regards, Marjon Luites and Arjan Kok.
>
>http://www.optimalj.com
>
>--
>To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>
>


_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




ServletInputStream and Buffered Reader

2001-11-20 Thread Daniel WAMARA

I'm trying to get a BufferedREader in my application but couldn't and got a 
IllegalStateException, saying that a Stream has already been taken from the 
request, but the fact is that it's not by me, so who ? or what ? and if it's 
the case, how could I determine this stream already opened so I could just 
close it and get my BufferedWritter.

Thanks for help,

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: Struts Dreamweaver extension

2001-11-20 Thread Daniel WAMARA

It works well but is a bit slow when it comes to show properties of a Struts 
tag, I already use Dreamweaver since the version 2 and see the growing of 
that application and working now with Struts, my desire would have been to 
be able to integrate directly Struts tags with DW and now it's done but I 
think that some work should be done about this slow getting of properties.

Daniel WAMARA


>From: "Kok, Arjan" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: Struts Dreamweaver extension
>Date: Mon, 19 Nov 2001 14:01:54 +0100
>
>Hello,
>
>Some time ago we at Compuware Amsterdam lab announced a project to 
>integrate
>the Struts taglibs in MacroMedia Dreamweaver. The project has finished, and
>as promised the Dreamweaver extension can be freely downloaded. Goto
>http://javacentral.compuware.com and download OptimalJ Dreamweaver
>Integration Kit 1.0.9
>
>With this extension, it becomes possible to view and edit JSP files with
>Struts tags in Dreamweaver. This extension supports the MVC (or Model2)
>paradigm where JSP files provide the view of the application.
>It is based on the Struts 1.0 tag libraries. Any comments, etc are
>appreciated.
>
>Regards, Marjon Luites and Arjan Kok.
>
>http://www.optimalj.com
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>
>


_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Iterate tag

2001-11-15 Thread Daniel WAMARA

I need to use the iterate tag to display elements of 2 arrays but the 
problem is that I don't know if I can really use a nested iteration 
considering the fact that normally, in Java, it should for example be 
handled like this

for (int i=0; i<=list.length-1, i++)
{
  System.out.println(a[i]);
  System.out.println(b[i]);
}

because the value of a[i] and b[i] should be displayed in table cells like


  (the value if A)
  (the value if B)


od should I simply use a scriptlet for that.

Thanks for help.

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: Upload question

2001-11-14 Thread Daniel WAMARA

I just have one form and I do handle the file via its Input stream but the 
application doesn't ever let me the time to say "hi" that I've already this 
BeanUtils.populate error.

Daniel WAMARA


>From: Balasubrahmanyam Pasumarthy <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>Subject: Re: Upload question
>Date: Wed, 14 Nov 2001 19:42:09 +0530
>
>Hi Daniel,
>
>I got the similar problem with. The problem is eliminated because of two 
>things:
>
>1) Just check whether you have two form elements. Use only one struts form 
>tag
>2) It is a must that you have to handle that file. That is getting its 
>input stream and read it to somewhere.
>
>Hope this helps
>
>Balu
>At 11:56 AM 11/14/01 +0100, you wrote:
>>So could you telle me what can mean a "ServletException 
>>BeanUtils.populate" because it's the error I got as soon as I click on the 
>>upload button and how do I can get a ride on it ?
>>
>>Thanks for help,
>>
>>Daniel WAMARA
>>
>>_
>>Téléchargez MSN Explorer gratuitement à l'adresse 
>>http://explorer.msn.fr/intl.asp
>>
>>
>>--
>>To unsubscribe, e-mail:   
>><mailto:[EMAIL PROTECTED]>
>>For additional commands, e-mail: 
>><mailto:[EMAIL PROTECTED]>
>>
>
>Balasubrahmanyam Pasumarthy
>**
>Sr. Consultant,
>Zensar Technologies Ltd,
>Ph: 91-20-6633001 extn 613
>***
>
>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>
>


_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: Upload question

2001-11-14 Thread Daniel WAMARA

So could you telle me what can mean a "ServletException BeanUtils.populate" 
because it's the error I got as soon as I click on the upload button and how 
do I can get a ride on it ?

Thanks for help,

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Upload question

2001-11-14 Thread Daniel WAMARA

Does anyone has ever made an upload via Struts and this has worked ? Because 
I've tried y myself and got always failure, and even my Struts-Uplod Example 
doesn't work.

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: File upload - Help needed in emergecy

2001-11-13 Thread Daniel WAMARA

- The form tag's enctype is "multipart/formdata" as it should.
- For the form bean, I just noticed that FormFile was a interface so I 
implemented an "UploadFile" class implementing the FormFile interface (but 
if I did wrong, so just tell me)
- And as you can imagine, the getter and setter return and accept an object 
of type UploadFile.

So what's next so ?

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




File upload - Help needed in emergecy

2001-11-13 Thread Daniel WAMARA

Hi each and everyone,

I'm just back from the Servlets.com website and I'm now more lost than I was 
when I entered there :

I'm trying to make a file upload thru a multi-part/formdata and for getting 
the file, I've just implemented a class implenting the Struts FormFile and 
everything should work well I think but as soon as I click on the "Upload" 
button, this is what I get in my page :

Error: 500
Location: /mailorder/upload.do
Internal Servlet Error:

javax.servlet.ServletException: BeanUtils.populate
java.lang.Throwable(java.lang.String)
java.lang.Exception(java.lang.String)
javax.servlet.ServletException(java.lang.String, java.lang.Throwable)
void org.apache.struts.util.RequestUtils.populate(java.lang.Object, 
java.lang.String, java.lang.String, javax.servlet.http.HttpServletRequest)
void 
org.apache.struts.action.ActionServlet.processPopulate(org.apache.struts.action.ActionForm,
 
org.apache.struts.action.ActionMapping, 
javax.servlet.http.HttpServletRequest)
.
.
.
.

Root cause:
java.lang.IllegalArgumentException
java.lang.Throwable()
java.lang.Exception()
java.lang.RuntimeException()
java.lang.IllegalArgumentException()

I will surely not copy paste all the things under this stacktrace.

So someone could tell me what it means and how I should resolve the problem 
(I must give back the upload method before the end of the week), so please 
help.

Daniel WAMARA

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Struts, JSP, Servlets and dB

2001-10-26 Thread Daniel WAMARA

Hi,

no good answer has been given to me thru all the websites I went to but I 
should now have to ask my question here I think : I'm brand new in Struts' 
world because I've been hired by a company using it.

Having worked before with servlets where querying databases where a matter 
of SQL statements, I'm not a bit lost : all the examples I've seen were 
using kinda "XML databases" but I now have to make a short application to 
see that I'm a bit good in Struts before beginning my real project next 
week.

I would like to know if I can use some "normal" SQL statements in my Form 
objects extending the ActionForm class ?

Writing the config-struts.xml file, writing the form objects, writing the 
lines of the Actions are not a problem because I now have a good look over 
it but how could I use "normal" databases or tables like I was doing before 
with servlets, like defining the driver, getting the connection, making 
statements and so on...

I was a bit long but it was for a good explanation.

Thanks for helping,

Daniel WAMARA

Frankfurt/Main, Germany

_
Téléchargez MSN Explorer gratuitement à l'adresse 
http://explorer.msn.fr/intl.asp