vb.net webclient upload file and IIS configuration on XP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mitch

    vb.net webclient upload file and IIS configuration on XP

    Not sure where to post this but simply I want to upload a file using the
    WebClient, ie:

    Try
    Dim wc As New WebClient
    wc.Credentials = New System.Net.Netw orkCredential(" someuser",
    "somepass")
    wc.UploadFile(" http://localhost/public/", "PUT", "c:\test.tx t")
    Catch ex As Exception
    Console.WriteLi ne(ex.Message)
    Console.ReadKey ()
    End Try

    It always returns : The remote server returned an error: (403) Forbidden.

    I have permissions set on public for read/write, I have web shared the
    folder. Im guessing its how I have IIS setup. Using XP Pro sp3 and IIS.


  • Reverend Fuzzy

    #2
    Re: vb.net webclient upload file and IIS configuration on XP

    Not here.
    dot net? we don't plat that. :)

    "Mitch" <mhmooney@no.bo ther.to.spamwro te in message
    news:D0Rek.233$ gH4.139@trnddc0 5...
    Not sure where to post this but simply I want to upload a file using the
    WebClient, ie:
    >
    Try
    Dim wc As New WebClient
    wc.Credentials = New System.Net.Netw orkCredential(" someuser",
    "somepass")
    wc.UploadFile(" http://localhost/public/", "PUT", "c:\test.tx t")
    Catch ex As Exception
    Console.WriteLi ne(ex.Message)
    Console.ReadKey ()
    End Try
    >
    It always returns : The remote server returned an error: (403) Forbidden.
    >
    I have permissions set on public for read/write, I have web shared the
    folder. Im guessing its how I have IIS setup. Using XP Pro sp3 and IIS.
    >

    Comment

    • Jason Keats

      #3
      Re: vb.net webclient upload file and IIS configuration on XP

      Mitch wrote:
      Not sure where to post this but simply I want to upload a file using the
      WebClient, ie:
      >
      Try
      Dim wc As New WebClient
      wc.Credentials = New System.Net.Netw orkCredential(" someuser",
      "somepass")
      wc.UploadFile(" http://localhost/public/", "PUT", "c:\test.tx t")
      Catch ex As Exception
      Console.WriteLi ne(ex.Message)
      Console.ReadKey ()
      End Try
      >
      It always returns : The remote server returned an error: (403) Forbidden.
      >
      I have permissions set on public for read/write, I have web shared the
      folder. Im guessing its how I have IIS setup. Using XP Pro sp3 and IIS.
      >
      >
      Yes, I think it is an IIS problem. Try giving the ASPNET user modify
      permissions on the folder.

      Comment

      Working...