You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-user@jakarta.apache.org by Roman Novak <r....@iqsoft.at> on 2004/11/23 10:09:48 UTC

RE: PROBLEM IN uploading the file

It seems that authentication is probably not set up correctly.

( your log entry --> "Multi-Status", 550 ms, /files http-8080-Processor25, 22-Nov-2004 16:04:48, root, PUT, 403 "Forbidden", 1251 s, /files)

Does uploading manually (Webdav Explorer, MS Explorer - Webfolders) work for you ?

Roman

Am Mo 22.11.2004 22:46, mahesh kumar <lm...@yahoo.co.in> schrieb:

> 
> Hello Jason,
> 
> I am getting the same error inspite of modifying the source code ..
> 
> The source code is ..
> 
> import java.io.File;
> import java.io.IOException;
> import java.net.MalformedURLException;
> import org.apache.commons.httpclient.HttpException;
> import org.apache.commons.httpclient.HttpURL;
> import org.apache.webdav.lib.WebdavResource;
> 
> public class SlideClient {
> 
>     public static void main (String args[]) 
>     {
>        try
>         {
>    System.out.println("\nCreateing HttpURL object");
>             HttpURL httpurl = new HttpURL("http://localhost:8080/slide/files");
>    System.out.println(" \n Setting the user info");
>             httpurl.setUserinfo("root","root");
>    System.out.println(" \n Creating the webdavResouce object ");
>             WebdavResource wdr = new WebdavResource(httpurl);
>    System.out.println("\n Creating file object ");
>             File f = new File ("myfile.txt");
> 
> // the file is in current directory where the program is running 
> 
>    wdr.putMethod(f);
>    String contents=wdr.getMethodDataAsString("/slide/files/maheshkumar.txt");
>       System.out.println("\nthe data is " + contents +"\n");
>    System.out.println("Put method is invoked ");
>             System.out.println("Put Method has worked ");
>             wdr.close();
>         }
>         catch(MalformedURLException mue)
>         {
>         }
>         catch(HttpException he)
>         {
>         }
>         catch(IOException ioe)
>         {
>         } 
>     }
> }
> 
> Pls check the source code and let me know where I am going wrong..
> 
> Thanks
> 
> mahesh L.
> 
> ============
>  
>  
> Pls
> 
> 
> Jason McElravy <jm...@nuventive.com> wrote: Check out this article. Be sure to read the comments at the end. One
> of them addresses your issue.
> 
> http://www.onjava.com/pub/a/onjava/2003/12/23/slide.html
> 
> Jason 
> 
> -----Original Message-----
> From: mahesh kumar [mailto:lmaheshkumar2002@yahoo.co.in] 
> Sent: Monday, November 22, 2004 4:09 PM
> To: slide-user@jakarta.apache.org
> Subject: Fwd: PROBLEM IN uploading the file 
> 
> 
> Hello Everybody ,
> I am getting the following error while I am trying to upload the file
> programmatically using slide api 
> The source code is as follows ..
> import java.io.File;
> import java.io.IOException;
> import java.net.MalformedURLException;
> import org.apache.commons.httpclient.HttpException;
> import org.apache.commons.httpclient.HttpURL;
> import org.apache.webdav.lib.WebdavResource;
> public class SlideClient {
> public static void main (String args[]) 
> {
> try
> {
> System.out.println("\nCreateing HttpURL object");
> HttpURL httpurl = new
> HttpURL("http://localhost:8080/slide/files");
> System.out.println(" \n Setting the user info");
> httpurl.setUserinfo("root","root");
> System.out.println(" \n Creating the webdavResouce object ");
> WebdavResource wdr = new WebdavResource(httpurl);
> System.out.println("\n Creating file object ");
> boolean success=wdr.putMethod("/slide/files/myfile.txt");
> System.out.println("\nthe value of boolean is " +success);
> String
> contents=wdr.getMethodDataAsString("/slide/files/maheshkumar.txt");
> System.out.println("\nthe data is " + contents +"\n");
> System.out.println("Put method is invoked ");
> System.out.println("Put Method has worked ");
> wdr.close();
> }
> catch(MalformedURLException mue)
> {
> }
> catch(HttpException he)
> {
> }
> catch(IOException ioe)
> {
> } 
> }
> }
> The error is 
> http-8080-Processor25, 22-Nov-2004 16:04:48, root, PROPFIND, 207
> "Multi-Status", 550 ms, /files
> http-8080-Processor25, 22-Nov-2004 16:04:48, root, PUT, 403 "Forbidden",
> 1251 ms, /files
> http-8080-Processor25, 22-Nov-2004 16:04:50, root, GET, 200 "OK", 300
> ms, /files/maheshkumar.txt
> 
> 
> Your response is highly appreciated ....
> 
> Thanks
> mahesh L.
> ==========
> 
> Note: forwarded message attached.
> 
> 
> trimony/> Yahoo! India Matrimony: Find your life partner online
> atrimony/> .
> 
> 
> Yahoo! India Matrimony: Find your life partneronline.




---------------------------------------------------------------------
To unsubscribe, e-mail: slide-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-user-help@jakarta.apache.org