Re: File Upload with Mac IE

2003-07-20 Thread otsuka
I found that the cause is html:image / tag. I replaced html:image / with html:submit /, then file uploading with Mac IE 5 worked fine. But I don't know why. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

File Upload with Mac IE

2003-07-19 Thread otsuka
I made a web application using struts which enables users to upload image files. When files are submitted with Mac IE 5, the exception below occured. With Mozilla or any browsers for Windows, it will work fine. What is the cause and how can I solve this problem?

Re: Direct access problem

2003-06-08 Thread otsuka
Prevent the user from directly accessing the JSP page by putting all JSP pages under WEB-INF directory, or use a Filter. I understand the "under WEB-INF" solution, but I don't know the filter strategy. Could you tell me about a filter which solves the direct access

Direct access problem

2003-06-07 Thread otsuka
When a user directly access to a JSP page which belongs to a Struts module, module switching is not processed and Struts links (html:link) in that page do not work correctly because action path specified in an action or forward attribute of html:link tag is module relative. How