servlet-mapping and DefaultServlet unexpected behaviour

2006-03-29 Thread Tim Diggins
Hi - I've set up servlet-mappings of: default /data/* default *.gif ... others... mydispatcher / the intention was: * when I request anything ending .gif, the default servlet deals with it. * when I request anyth

Re: HTTP 404

2006-03-29 Thread Franck Borel
Hello Vikas, look at your login.jsp. There is an entry like this: .. ... Be sure that you there is only "j_security_check" in the action field. This is calling the Tomcat authentication valve and you don't need any directory information. -- Franck > Hi > > HTTP Status 404 - /Control_center/j

Re: connection pool

2006-03-29 Thread red phoenix
I write a Thread connection pool by jdbc:odbc to connect to Microsoft Access2000,most of time my code runs well,but occasionally it raise error,and make Tomcat shutdown automatically,like follows: ERROR MESSAGES/STACK TRACES THAT OCCUR : # # An unexpected error has been detected by HotSpot Virtual

Re: connection pool

2006-03-29 Thread Frank W. Zammetti
I don't believe such a driver exists... I'd be interested myself if I'm wrong. I believe you'll have to use the jdbc:odbc bridge driver. Frank red phoenix wrote: Where can I get JDBC driver for Microsoft Access2000? Thanks On 3/30/06, Farrow, Marc <[EMAIL PROTECTED]> wrote: same as everyt

Re: connection pool

2006-03-29 Thread red phoenix
Where can I get JDBC driver for Microsoft Access2000? Thanks On 3/30/06, Farrow, Marc <[EMAIL PROTECTED]> wrote: > > same as everything else. You will need a JDBC driver for Microsoft > Access2000 and point your connection pooling in the server.xml to that > driver. How you obtain the driver i

RE: connection pool

2006-03-29 Thread Farrow, Marc
same as everything else. You will need a JDBC driver for Microsoft Access2000 and point your connection pooling in the server.xml to that driver. How you obtain the driver is another bear. -Original Message- From: red phoenix [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 29, 2006 10:4

connection pool

2006-03-29 Thread red phoenix
I know Tomcat5 supply some connection pool for oracle,sql and so on.Now I want to use Microsoft Access2000 Database,I don't know how to do it through tomcat connection pool. Any body can give me a example code for Microsoft Access2000 Database configure under Tomcat5 connection pool? Thanks in adv

Re: 1.42 compat package

2006-03-29 Thread David Smith
* apache-tomcat-5.5.15-compat.tar.gz * apache-tomcat-5.5.15-compat.tar.gz.MD5

Re: Daily log rotation?

2006-03-29 Thread Parsons Technical Services
Write a patch and submit it. - Original Message - From: "David Kerber" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, March 29, 2006 9:21 PM Subject: Re: Daily log rotation? Boy, log rotation sure seems like it would be a reasonable function to have built into tomcat

Re: Daily log rotation?

2006-03-29 Thread David Kerber
Boy, log rotation sure seems like it would be a reasonable function to have built into tomcat's native logging... Tim Lucia wrote: Use Log4J, or another logger implementation of your choosing, with a RollingDailyFileAppender (Log4J) or equivalent (your choosing) as the target. -Origina

Re: Problems with Tomcat and mod_proxy_ajp

2006-03-29 Thread Debra Bartling
At 08:03 PM 3/24/2006, Bill Barker wrote: Are you using the APR or the Java AJP/1.3 Connector? Whichever one it is, is it possible for you to test using the other one? Another test would be to see if it works with Apache 2.0.54+mod_jk(2). I'm using the AJP/1.3 Connector. More testing to do.

RE: security-constraint

2006-03-29 Thread Wang, Hansen
If you are using struts for your webapp, there is an extension "sslext" for this purpose. What it does are: 1) gernerate complete url with property scheme using it's tag; 2) redirect (as you said in your email) if the incoming has unmatched scheme for the target resource. Hansen -Original Me

RE: Logs not getting generated in tomcat 5.5.12

2006-03-29 Thread Richard Mixon
I have not used MyEclipse, but when I run Tomcat under Eclipse, the catalina.out output goes to an Eclipse "console" window, not to a file. Check your settings, I believe this can be changed. - Richard -Original Message- From: GUNJAN SINGH [mailto:[EMAIL PROTECTED] Sent: Wednesday, Mar

Re: Get JDBCRealm's current user

2006-03-29 Thread Martin Gainty
you can do this one of 2 ways 1)create a bunch of tables which have entities defined like users and roles and such this way you can look up the user which has a specific 'role' or user is defined within a group which has certain 'role' this solution is probably the closest to your current eff

RE: Daily log rotation?

2006-03-29 Thread Tim Lucia
Use Log4J, or another logger implementation of your choosing, with a RollingDailyFileAppender (Log4J) or equivalent (your choosing) as the target. -Original Message- From: Sheets, Jerald [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 29, 2006 5:04 PM To: Tomcat Users List Subject: Re:

Re: 1.42 compat package

2006-03-29 Thread Martin Gainty
Hello David- I could'nt find the compat package anywhere in that page look at http://www.devlib.org/apache/tomcat/tomcat-5/v5.5.15/bin/ Bookmark it Martin- - Original Message - From: "David Smith" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, March 29, 2006 3:27 PM Subject

Re: Daily log rotation?

2006-03-29 Thread Sheets, Jerald
You could add the logs into logrotate. See the logrotate project for more information. NOTE: This is for Linux/UNIX only. If on Windows, I do not know. Jerald Sheets Systems Administrator The Weather Channel Interactive

LDAP question

2006-03-29 Thread Kimberly Nico
I am using Tomcat 5.5.12 and OpenLDAP 2.3.20. I have the following in my server.xml: debug="99" connectionURL="ldap://localhost.localdomain:389"; userBase="dc=nico,dc=com" userSubtree="true" userSearch="uid={0}"

Re: Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Mark Slater
On Mar 29, 2006, at 12:47 PM, Pascal Alberty wrote: Add the following parameters to the tomcat JAVA_OPTIONS -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n In Eclipse, create a new "Java Remote Application". By default, port used will be 8000 as configured previously. Laun

Daily log rotation?

2006-03-29 Thread David Kerber
Is there any way of getting Tomcat to start its standard logs (stdout_mmdd, jakarta_service_mmdd, etc) new each day, rather than continuing to append to the log which was started days ago when I last restarted the Tomcat service? Thanks! Dave

Re: Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Mark Thomas
Mark Slater wrote: > I'm using Eclipse to try and debug a servlet in tomcat. I've got > eclipse set up so that it starts and stops tomcat in debug mode (I can > tell because the list of tomcat threads is visible and updated when I'm > using the debug perspective). I added a few breakpoints to m

Re: Apache2 -> mod_jk2 -> Tomcat4.1 : 404 Error if host not defined in server.xml

2006-03-29 Thread David Smith
I think you have this turned around. jsp files are not "sent" to tomcat for processing. Think of the relationship between Apache and Tomcat more as a proxy environment. Tomcat has a set of contexts. Each context has a set of jsps, servlets, and resources that function to gether as an applicatio

Problem with URL Format ;jessionid with mod_jk

2006-03-29 Thread Dave Morrow
Hi all. I have somewhat of a perplexing problem. My site uses Apache 2.0 with mod_jk1.2 to connect to a Tomcat application. The Tomcat app uses a session ID on the URL line. Apache is configured to log in "combined" log format. In the URL in the POST , I see /myapplication/page.jsp;jsessioni

Help : Client Certificate Authentication - Bad_Certificate Error

2006-03-29 Thread Kanishka Liyanage
Hi, I'm trying to implement Client Certificate authentication in addition to the regular HTTPS. Do you know any resource references ? I have imported the client certificates in my client machine and when I try to connect to the server, I'm getting javax.net.ssl.SSLHandshakeExc

Re: mod_jk error -60

2006-03-29 Thread Rainer Jung
I don't know, how correct it is, but the following table looks helpful: http://www.ioplex.com/~miallen/errcmp.html It says, that 60 is a time out (ETIMEDOUT) on FreeBSD 5.2.1, OSX 10.3.8 and OSF1. Rainer Jung wrote: In case of an error this line will print errno as a negative number. More p

Apache2 -> mod_jk2 -> Tomcat4.1 : 404 Error if host not defined in server.xml

2006-03-29 Thread Gerard Pelka
Hello, I have a Apache running with a lot virtual hosts. Now I installed Tomcat 4.1 and use mod_jk2 to send .jsp to the Tomcat Server (ajp13). But Tomcat needs the real path to the .jsp-file (defined in server.xml) or it cause a 404 Error ?!?! Is this normal? Do I have really define all the vi

org.apache.jk.common.ChannelSocket processConnection WARNING: processCallbacks status 2

2006-03-29 Thread Sean O'Reilly
I hope someone can help me with this. I have been searching the archives for similar problems and have found a few but with no solutions. Running Fedora core 4, apache2.2 and tomcat5.5 jdk1.5 and am getting the following error in catalina.out on a regular basis. 29-Mar-2006 21:43:40 org.apache.

Re: Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Pascal Alberty
Add the following parameters to the tomcat JAVA_OPTIONS -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n In Eclipse, create a new "Java Remote Application". By default, port used will be 8000 as configured previously. Launch Tomcat, run this "JRA", place breakpoints, use your

Re: mod_jk error -60

2006-03-29 Thread Rainer Jung
In case of an error this line will print errno as a negative number. More precisely: #if defined(WIN32) || (defined(NETWARE) && defined(__NOVELL_LIBC__)) ... errno = WSAGetLastError() - WSABASEERR; ... #endif ... do some read from network ... return (errno > 0) ? -err

get SSL port in tomcat 4.1

2006-03-29 Thread Vivek Mohan
Hi, Is it possible to get hold of the SSL port for the tomcat installation programmatically? Thanks, Vivek. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: j_security_check

2006-03-29 Thread David Smith
Assuming tomcat 5.5, have you read http://tomcat.apache.org/tomcat-5.5-doc/realm-howto.html ? --David VIKASS NAGPAL wrote: >Hi > >How to configure j_security_check in TOMCAT. >I am getting error 404 which states that the resource >/control_center/j_security_check not available. >Basically it is

Re: 1.42 compat package

2006-03-29 Thread David Smith
Any search engine that has indexed the archives of this list will have the answer many, many, many times over. Take a look at where you downloaded tomcat. You will find it there. --David Martin Gainty wrote: >I know I only asked this a dozen or so times but I need to get ahold of the >1.42 co

Re: Get JDBCRealm's current user

2006-03-29 Thread David Smith
Why can't you just use request.getRemoteUser()? It provides the username the user logged in with whether it be from BASIC auth or form based auth. --David Rapthor wrote: >Sorry, here's what I do: > >I have a web application and used Tomcat's Authentication mechanism called >JDBCRealm. I had to

1.42 compat package

2006-03-29 Thread Martin Gainty
I know I only asked this a dozen or so times but I need to get ahold of the 1.42 compat package for Tomcat 5.x Is there ANY WAY we can ask the kind folks at google to put this into their keyword search?? Thanks, Martin-

j_security_check

2006-03-29 Thread VIKASS NAGPAL
Hi How to configure j_security_check in TOMCAT. I am getting error 404 which states that the resource /control_center/j_security_check not available. Basically it is to do with enforcing security in TOMCAT. Thanks, Vikas Nagpal. __ Do You Yahoo!?

mod_jk error -60

2006-03-29 Thread Earnie Dyke
Can anyone tell me what a -60 error is? [Wed Mar 29 13:56:11 2006] [error] jk_ajp_common.c (961): Can't receive the response message from tomcat, network problems or tomcat is down (10.1.1.80:8009), err=-60 Earnie! - To unsubs

Re: Get JDBCRealm's current user

2006-03-29 Thread Rapthor
Sorry, here's what I do: I have a web application and used Tomcat's Authentication mechanism called JDBCRealm. I had to edit server.xml to do so (this is not really the details I entered, it's just an example): Then I created the according tables: create table users ( user_name varchar(15)

Re: Context starts twice

2006-03-29 Thread Vivek Mohan
you're welcome!! -- Vivek. On 3/30/06, Dola Woolfe <[EMAIL PROTECTED]> wrote: > Yes I do!!! Thank you. > > > My guess is that Eclipse sneaked that line in there > when I experimented with creating Tomcat projects. > Good grief! > > Thanks again. > > --- Vivek Mohan <[EMAIL PROTECTED]> wrote: > >

Re: Context starts twice

2006-03-29 Thread Dola Woolfe
Yes I do!!! Thank you. My guess is that Eclipse sneaked that line in there when I experimented with creating Tomcat projects. Good grief! Thanks again. --- Vivek Mohan <[EMAIL PROTECTED]> wrote: > Do you have any context entries in your server.xml? > Or context.xml > files present in other fol

Re: Context starts twice

2006-03-29 Thread Vivek Mohan
Do you have any context entries in your server.xml? Or context.xml files present in other folders in the tomcat installation? If yes, then check if their path attribute is set to something different from their folder names? -- Vivek. On 3/30/06, Dola Woolfe <[EMAIL PROTECTED]> wrote: > OK, I see

Physical path outside of webapps directory

2006-03-29 Thread Ritchie Gillam
Hi all I have searched the archives and has seen many posting on this but still need more information. Right now, I use Eclipse as my IDE. When a project is ready for testing I export to a WAR and use Tomcat's GUI Manager "WAR file to deploy" option to deploy my application to my server. So f

Tomcat+Eclipse, breakpoints not working

2006-03-29 Thread Mark Slater
I'm using Eclipse to try and debug a servlet in tomcat. I've got eclipse set up so that it starts and stops tomcat in debug mode (I can tell because the list of tomcat threads is visible and updated when I'm using the debug perspective). I added a few breakpoints to my code and triggered th

RE: Single sign-on with multiple Tomcats served via one Apache httpdserver

2006-03-29 Thread Steele, Aaron
We are using CAS, http://www.ja-sig.org/products/cas/, for something similar. I do not know if its exactly what you need. It does not, I believe, share any session information besides the login info. Thank You, Aaron Steele YRI Enterprise Solutions https://ris.yumnet.com w: 972.338.6862 c: 817.

RE: Context starts twice

2006-03-29 Thread Dola Woolfe
OK, I see it - it's "webapps". Thank you. OK, how do I check wheather "[I] have a separate context path configured for your webapp and its present in your appbase." No idea where to look and for what! Thanks! --- "Farrow, Marc" <[EMAIL PROTECTED]> wrote: > Appbase is an attribute defined in yo

Re: Single sign-on with multiple Tomcats served via one Apache httpd server

2006-03-29 Thread David Smith
The single sign-on valve only really shares an authenticated session accross the contexts of one tomcat server. Most likely other tomcat servers only if they are clustered. But you have two separate, non-clustered tomcat's whose only commonality is the Apache front-end and the user realm database

Re: gc tuning

2006-03-29 Thread Mark Hagger
As I'm sure you know this is something of a large can of worms... All I can say is that from my experience of this modern JVM's are getting much better at working well with the default gc options (ie jdk 5.0 and above). We use jrockit for our systems, and just use a simple: -server -Xms256m -X

RE: Context starts twice

2006-03-29 Thread Farrow, Marc
Appbase is an attribute defined in your %tomcat_home%/conf/server.xml file. It should be a "sub-attribute" under your HOSTS attribute. -Original Message- From: Dola Woolfe [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 29, 2006 1:48 PM To: Tomcat Users List Subject: Re: Context starts t

Single sign-on with multiple Tomcats served via one Apache httpd server

2006-03-29 Thread Nic Daniau
Hi, believe it or not, this problem which I though to be a very standard one, didn't get a single reply?! Even if you know this can't be done, please tell me! Thanks a lot in advance. Configuration: a. Apache httpd 2.0 server (IP0, port 80) with some content served from /cms b. Worker to a Tomcat

Re: Context starts twice

2006-03-29 Thread Dola Woolfe
Hi, I'm sorry, can you give a couple examples with dir names? For example, I'm not sure what appbase is. Thanks! Dola --- Vivek Mohan <[EMAIL PROTECTED]> wrote: > This can happen if you have a separate context path > configured for > your webapp and its present in your appbase. If > thats the

Re: HTTP 404

2006-03-29 Thread Jens Skripczynski
On Wed, 29 Mar 2006 20:07:06 +0200, VIKASS NAGPAL <[EMAIL PROTECTED]> wrote: Hi HTTP Status 404 - /Control_center/j_security_check type Status report message /Control_center/j_security_check description The r

gc tuning

2006-03-29 Thread John Powers
I am trying to tune an instance of tomcat running a single application. And have a couple different questions. I have read lots of faqs and webpages on the various types of garbage collectors. I get from most of these that it takes lots of tuning particular to each machine/server/application.

HTTP 404

2006-03-29 Thread VIKASS NAGPAL
Hi HTTP Status 404 - /Control_center/j_security_check type Status report message /Control_center/j_security_check description The requested resource (/Control_center/j_security_check) is not available. -

Re: Get JDBCRealm's current user

2006-03-29 Thread Martin Gainty
A construction worker in Antartica once said "No matter how many times I cut it ..it still is too short" the same scenario applies here JDBC is a driver model for DB access a package designed primarily for DB access would not have knowledge of other environmental and or configuration items..right

Re: Get JDBCRealm's current user

2006-03-29 Thread Rapthor
Using the #InitialContext().lookup() method to get the DataSource, it seems to get to the point that I find out the user connected to the database, which in fact is another than the user logged in via JDBCRealm?! Am I right? I wanted to get the user currently logged in, not the one using the data

Re: Apache Tomcat Native library

2006-03-29 Thread Markus Schönhaber
Paul Robinshaw wrote: > Can somebody please tell me what this means on startup of Tomcat "The > Apache Tomcat Native library which allows optimal performance in production > environments was not found on the java.library.path" This means you're not using this: http://tomcat.apache.org/tomcat-5.5-d

Apache Tomcat Native library

2006-03-29 Thread Paul Robinshaw
Hi Can somebody please tell me what this means on startup of Tomcat "The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path" Thanks DF

Re: tomcat 5.0 vs. 5.5? tomcat 5.5 has been bad!

2006-03-29 Thread Filip Hanik - Dev Lists
ok, that was fairly easy, the error gets logged to the /logs/localhost.2006-03-29.log" this is on the default install, no loggers modified so are you still having a problem? Mar 29, 2006 9:12:47 AM org.apache.catalina.core.ApplicationContext log INFO: org.apache.webapp.balancer.BalancerFilter:

Re: tomcat 5.0 vs. 5.5? tomcat 5.5 has been bad!

2006-03-29 Thread Filip Hanik - Dev Lists
here is the code, the StandardContext.java logs the error, its just a matter of finding how to get it to spew it out. Running a tomcat embedded will spit this sucker out, but running it within the tomcat catalina.sh swallows it. I will resolve this and let you know what happens to it. Filip

Re: XMLSignature

2006-03-29 Thread Martin Gainty
sounds like a valuable resource..I look forward to his response. As far as how to use Remote Prodedure Call (XML transmissions on Port 80) vs using other transports (CORBA or DCOM) Take a look at this great tutorial http://www.angelfire.com/wi3/sjohn/etrade.html Thanks Leon Martin- - Origina

security-constraint

2006-03-29 Thread tamsin
Hi all, I wonder if anyone can help me, I've recently taken over management of our Tomcat webapp, and have been listening to the list for a while, although don't know enough to contribute much yet I am afraid. I'm using the following security-constraint to make sure that any user using our paymen

Re: Logs not getting generated in tomcat 5.5.12

2006-03-29 Thread Vamsidhar
please specify which logs are not being generated is it the catalina log (logger component) ? thanks, Vamsi. On 3/29/06, Boris Unckel <[EMAIL PROTECTED]> wrote: > > Hello, > > Von: GUNJAN SINGH <[EMAIL PROTECTED]> > > hi > > I'm using j2sdk1.4.2_09 version and tamcat 5.5.12 and myeclipse as an

Re: tomcat examples

2006-03-29 Thread Yoav Shapira
Hey, Sorry for the late response on this, I've been swamped. What's the consensus of the committers, are we in decent shape to do a 5.5.17 release? I have time for it this weekend. I will test the .exe in 5.5.17 prior to uploading to make sure it's alright. Yoav On 3/20/06, Caldarale, Charles

Re: XMLSignature

2006-03-29 Thread Leon Rosenberg
I don't know where we got this staff from, it from a fellow developer who is just integrating a singlesignon solution from the liberty alliance which relies on patched axis classes and is a total mess... However, he told me about XMLSingature (we are applying the signature to the xml files sent ove

TC 5.5.16, RHEL 4.2 x86_64 and APR - apr not found

2006-03-29 Thread Dag Bjerkeli
Hi there! I'm trying to get tomcat to use the native library. After lots of searching on the web I finaly got it working at my workstation. But following the same procedure on the server did not go so well. I'm still getting the INFO message in catalina.out: Mar 29, 2006 11:48:46 AM org.apache

Re: XMLSignature

2006-03-29 Thread Martin Gainty
Good Morning Leon I found it but now I wanted to download JAXP but couldnt find it anywhere but with SUN's webservices toolkit I didnt want to download *all that other stuff * just to get jaxp.jar but I dont see any other alternative- Thanks for the response, Martin- - Original Message ---

Re: XMLSignature

2006-03-29 Thread Leon Rosenberg
com/sun/org/apache/xml/internal/security/signature/XMLSignature.class -> xmlsec.jar javax/xml/crypto/dsig/XMLSignature.class org/jcp/xml/dsig/internal/dom/DOMXMLSignature.class -> xmldsig.jar HTH Leon On 3/29/06, Martin Gainty <[EMAIL PROTECTED]> wrote: > already have that but none of the jars c

Re: Get JDBCRealm's current user

2006-03-29 Thread Martin Gainty
If you have JNDI you can look it up that way for example Context initialContext = new InitialContext(); DataSource datasource = (DataSource)initialContext.lookup(fDATASOURCE_CONTEXT); Martin- - Original Message - From: "Rapthor" <[EMAIL PROTECTED]> To: Sent: Wednesday, March

Re: InputBuffer and Posting Data

2006-03-29 Thread Jon Wingfield
After re-reading the original description you should probably be aware of this portion of the javadocs for request.getParameter: If the parameter data was sent in the request body, such as occurs with an HTTP POST request, then reading the body directly via getInputStream() or getReader() can

Re: XMLSignature

2006-03-29 Thread Martin Gainty
already have that but none of the jars contain XMLSignature unless you know of a jar that may contain XMLSignature Thanks Martin-, - Original Message - From: "mylene" <[EMAIL PROTECTED]> To: "Martin Gainty" <[EMAIL PROTECTED]> Sent: Wednesday, March 29, 2006 12:25 AM Subject: Re: XMLSigna

Re: tomcat 5.0 vs. 5.5? tomcat 5.5 has been bad!

2006-03-29 Thread Dean Hiller
thanks for the link. I need that too. Regardless of logging thought, quickly add this to any serlvetlistener public void contextInitialized(ServletContextEvent evt) { throw new RuntimeException("asdfsf"); } Run it, and enjoy not being able to know what the heck went wrong with your app lik

Re: Logs not getting generated in tomcat 5.5.12

2006-03-29 Thread Boris Unckel
Hello, > Von: GUNJAN SINGH <[EMAIL PROTECTED]> > hi > I'm using j2sdk1.4.2_09 version and tamcat 5.5.12 and myeclipse as an > IDE. > The problem is that logs are not getting generated under > apache-tomcat-5.5.12/logs directory. > The server is starting properly and i have added the required

Re: Get JDBCRealm's current user

2006-03-29 Thread Rapthor
Okay, I think I nearly get it. What do I have to do to get the DataSource from within a JSP page? Get the "ServletContext"? There's no method to do a lookup for a DataSource with ServletContext. -- View this message in context: http://www.nabble.com/Get-JDBCRealm%27s-current-user-t1341315.html#a

Re: First time with Tomcat

2006-03-29 Thread Franck Borel
> Yeah i'm running Apache 2, PHP and MySQ. > > I tried what you said, but if I remove the 8080 connectors, I can't access > to Tomcat main page anymore, even on the PC running it.. > > Can you explain a bit more? Ok, here some more informations: You need a connector between Apache and Tomcat,

Re: File upload giving error: Stream ended unexpectedly

2006-03-29 Thread Nikola Milutinovic
--- Manish Agrawal <[EMAIL PROTECTED]> wrote: > Hi, > > I have a web applications using sturts framework. The application allow > users to upload data files on server. The application is running on Apache > Tomcat 5.0 server. I am using Commons File Upload 1.0 for uploading files. Struts has it