You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@commons.apache.org by Brian Cook <bc...@printtime.com> on 2005/08/19 15:57:50 UTC

Re: [FileUpload] FileUpload doesn't work with IE but with Firefox

If you debug this a little deeper wither using your IDE or marking each 
step in the process with system.out.println("") methods I am betting you 
will find this does not relate to commons.FileUpload.

Are you seeing any exceptions thrown in catalina.out?  Is the error seen 
in the browser an IE default error, or a Tomcat error page?

The only difference I am aware of with IE is that it has an irritating 
habbit under specific situations of returning the entire system path as 
the file name.  You can simply get around this with an extra method call 
like :

private String getRealFileName(String itemName) {

	int pointer = itemName.lastIndexOf("\\");

         if( pointer != -1){itemName = itemName.substring(pointer+1);}

         return itemName;
}


P.S.  You will get more responses to your posts if you follow the guide 
lines posted at :

http://jakarta.apache.org/site/mail.html

Katharina Dammeier wrote:
> ***********************
> No virus was detected in the attachment (no filename).
> 
> Your mail has been scanned by Trend Micro InterScan.
> ***********************
> 
> 
> hi,
> 
> I have a Fileupload (enctype multipart-formdata) and it does work fine with
> Firefox.
> But if I use IE, it mostly works by the first upload. If I want to make a
> second upload later, it doesnt' work, I get a wihte page "cannot be shown"
> 
> Does anybody know anything about this problem and how to solve it?
> 
> Thanks!
> 
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commons-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: commons-user-help@jakarta.apache.org
> 
> 


-- 
Brian Cook
Digital Services Analyst
Print Time Inc.
bcook@printtime.com
913.345.8900