Buonasera
Vorrei caricare un file su un sito (su Aruba). Ho provato a seguire l'esempio dell'oggetto WebClient e relativo metodo Uploadfile ma ottengo l'errore 400 Server remoto non trovato.
Il codice che ho usato è il seguente
Imports System.IO
Imports System.Net
Sub ProvaInvio()
Dim FileSorg As String = "C\Users\Utente\Desktop\prova.txt"
Dim FileDest As String = Path.GetFileName(srcFile)
Dim myCredentials As New NetworkCredential("UserDelSito", "passwordSito")
Dim myUri As Uri
Dim myClient As New WebClient()
myClient.Credentials = myCredentials ' credenziali per accedere al sito utente e password
myUri = New Uri("http://www.nomedelsito.it/Cartella/" & FileDest)
myClient.UploadFile(myUri, FileSorg)
' qui da errore: System.Net.WebException: 'Errore del server remoto: (404) Non trovato.'
End Sub
Grazie in anticipo a chi potra aiutarmi