Trouble with multipart/form-data and servlet name

2005-07-20 Thread Eric Hartmann
Hello,

I'm testing our applicatio under Tomcat 5.5.9 (under Linux and with sun
jdk 1.4.2_08) and I have the following behaviour:

The getServletName() return
org.apache.catalina.INVOKER.com.sharedvalue.document.servlet.admin.UploadFiles
when I use a form with enctype=multipart/form-data that call a servlet
named com.sharedvalue.document.servlet.admin.UploadFiles. I was
expecting com.sharedvalue.document.servlet.admin.UploadFiles. This
behaviour occurs only when the form is a multipart.

As this breaks some functionnality in our application, I would like to
know it's a normal behaviour ?

Thanks in advance,

-Eric

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



RE: Generate PDF with Java

2001-09-17 Thread Eric Hartmann

Hello,

You can check http://xml.apache.org/fop if you already use XML (it's an
implementation of XSL:FO that can produce pdf with XML).

Eric

 -Original Message-
 From: Olivier MAYEUX [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, September 17, 2001 9:04 AM
 To: '[EMAIL PROTECTED]'
 Subject: Generate PDF with Java
 
 
 Hi !
 
 I want to generate PDF from jsp code.
 I heard about a package Java PDFWriter but i don't know where 
 i can find it.
 
 If anyone have an idea, any suggestions are welcome...
 
 Thanks
 Olivier
 




RE: So what *IS* available? Formerly Tomcat SUCKS

2001-06-28 Thread Eric Hartmann

We used Resin for months in production without big problems. It's stable and
robust.
Take a look at www.caucho.com.

Eric

-Original Message-
From: Andy C [mailto:[EMAIL PROTECTED]]
Sent: jeudi 28 juin 2001 11:45
To: [EMAIL PROTECTED]
Subject: Re: So what *IS* available? Formerly Tomcat SUCKS


I've just switched over to Resin which does seem to be more stable
than Tomcat.

Andy C
http://www.r2-dvd.org

- Original Message -
From: Paul Hunnisett [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, June 28, 2001 10:35 AM
Subject: RE: So what *IS* available? Formerly Tomcat SUCKS


 ATG Dynamo is very good (although very expensive)





RE: open source full-text-search-engines

2001-04-11 Thread Eric Hartmann

Hi,

Look at lucene and netseeker in sourceforge (www.sourceforge.net) they
are java opensource full text search engine.

Eric

-Original Message-
From: Sebastian Schulz [mailto:[EMAIL PROTECTED]] 
Sent: mercredi 11 avril 2001 11:52
To: [EMAIL PROTECTED]
Subject: open source full-text-search-engines


hi,

i am looking for an open source
full text search engine like glimpse,
but more platform-independent
(it have to run under NT 4.0).

any suggestions / recommendations?

thanks in advance!

bAs T





RE: linux-NT-MSsqlServer

2000-12-12 Thread Eric Hartmann

Hello,

I've test two drivers JDBC for Microsoft SQL Server 7 / 2000. jdbcKona
driver from BEA (does not works with SQL 2000) and JTurbo from Ashna. JTurbo
2.0 (www.jturbo.com) is a very good driver for SQL Server. It's fast and
reliable with my tests. I didn't test it on Linux but you can download a
test version for 30j and limited to 5 connections. It seems that JTurbo is
more reliable than jdbcKona. But this two level 4 drivers are good however
we choose JTurbo that seems to be faster.

I hope this helps

Eric

-Original Message-
From: Carlos [mailto:[EMAIL PROTECTED]]
Sent: mardi 12 décembre 2000 15:45
To: [EMAIL PROTECTED]
Subject: linux-NT-MSsqlServer


I am using tomcat in a linux, and my database is in a NT (it is a microsoft
SQL server).
anybody can say me what driver i good to use with this database?
there is any experience in this database from a linux using a JDB driver?
i have see a long list for buying a driver but i dont kown what i must to
buy.
i want to konw what is a good driver, not slow and solid
thanks
carlos





RE: IE Netscape

2000-12-05 Thread Eric Hartmann

You may configure Apache to send the content as html not text, change the
line "DefaultType ..." to "DefaultType text/html".

Eric

-Original Message-
From: Adress, David S. [mailto:[EMAIL PROTECTED]]
Sent: mardi 5 décembre 2000 16:59
To: [EMAIL PROTECTED]
Subject: IE  Netscape


I have tomcat running and I have a jsp page. The page works fine in IE but
in Netscape I see the actual html code ex: htmltitle etc...

Any ideas ?




Re: tools for Stress Testing

2000-12-04 Thread Eric Hartmann

Take a look at http://sourceforge.net/projects/opensta/

I did not test it but it seems to be a good solution.

Eric

-- Original Message --
From: Chris Chen [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date: Mon, 4 Dec 2000 15:05:53 -0500 

Hi all,

 I am just wondering if there is a way to do a stress testing on my
jsp/servlet
pages even I am using the session tracking in my application.

for example, I have:
1.jsp for user logon checking
2.jsp for loading data from database
3.jsp for business data calculation
4.jsp for modifying data to database

The application works like:
 when user passed 1.jsp, there will be a set of data in their session, hold
by
Java data Beans, from database. Base on those data, 3.jsp will performance a
certain business logic, then 4.jsp will write data to database.

 I want to build a set of benchmark/stress testing for all those *.jsp
pages.
How long it will take? How's the response performance? ...

How could I do this? Is there any this kind of tools?
By using Tomcat, how can I let tomcat know that I am in the session, and
performance certain data set for me?

Regards,
 Chris