I remember something about the default /servlet/ path getting "locked down" secured from unauthorized access in 4.1, if you look in the web.xml there are not any ServletMappings, try adding ServletMappings for those uri's that are used

  <servlet-mapping>
    <servlet-name>parserupload</servlet-name>
    <url-pattern>/servlet/parserupload</url-pattern>
  </servlet-mapping>
  <servlet-mapping>
    <servlet-name>requestupload</servlet-name>
    <url-pattern>/servlet/requestupload</url-pattern>
  </servlet-mapping>

I don't acually use these servlets right now. please let me know how it goes.

-Mark

Rudi Doku wrote:

Hi Mark,

Sorry to approach you this way. I noticed that you are using the COS
library. I have tried to run the test application without any luck.

Firstly, I extracted the upload.war file from the zip file and placed it in
the webapps directory.

I then tried to run the application the following way:


I entered http://localhost:8080/upload/index.html in my browser only to get the following error:


HTTP Status 404 - /upload/servlet/parserupload


The requested resource (/upload/servlet/parserupload) is not available.

I'm sure the solution is probably very straightforward, however, I'm new to
deploying servlets so I could do with some help.

Thanks in advance.

Rudi

-----Original Message-----
From: Mark R. Diggory [mailto:[EMAIL PROTECTED]
Sent: 02 December, 2003 7:02 PM
To: Tag Libraries Users List
Subject: Re: Multipart/form-data support in Struts


I've been using the COS library, its a bit lower level but currently meets my streaming needs for things like DOM'ing and XSL transforming straight off the request input stream.

http://www.servlets.com/cos/index.html

-Mark

K.C. Baltz wrote:


One of the example webapps included with Struts 1.1 is struts-upload.
I've based my code off that.  You'll probably want the source
distribution of Struts to see how it's done.

K.C.

Ravi Krishna wrote:


Hey Guys , I want to upload data of wave , jpeg and MPEG formats .Is
there
any tag in struts which I can use in my application to achieve this???

Your response is highly appreciated


Regards/Ravi Krishna



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





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



--
Mark Diggory
Software Developer
Harvard MIT Data Center
http://osprey.hmdc.harvard.edu

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


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


-- Mark Diggory Software Developer Harvard MIT Data Center http://osprey.hmdc.harvard.edu

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



Reply via email to