As we don’t have any servers, I have a deployed inhouse app that has been in use for over a year that downloads an encrypted database automatically once a week from a dropbox public folder. All of a sudden the download has stopped working with a 102 error (dropped connection)…
I’m wondering if any can help me…
I do the download from a modal dialog:
[code]Function Show(URL as String, theFile As FolderItem, theTitle as String) As Boolean
MessageTxt.Text = theTitle
StatusST.Text = “Connecting …”
If URL.InStr(“https://”) > 0 Then
Dim SecureSocket as new HTTPSecureSocket
theSocket = SecureSocket
AddHandler SecureSocket.Connected, AddressOf Connected
AddHandler SecureSocket.DownloadComplete, AddressOf DownloadDone
AddHandler SecureSocket.ReceiveProgress, AddressOf DownloadProgess
AddHandler SecureSocket.Error, AddressOf SocketError
SecureSocket.Get(URL, theFile)
Else
Dim aSocket as new HTTPSocket
AddHandler aSocket.Connected, AddressOf Connected
AddHandler aSocket.DownloadComplete, AddressOf DownloadDone
AddHandler aSocket.ReceiveProgress, AddressOf DownloadProgess
AddHandler aSocket.Error, AddressOf SocketError
theSocket = aSocket
aSocket.Get(URL, theFile)
End if
Self.ShowModal
Return Success
End Function
[/code]
I checked and the URL has not changed… Anybody have any clue what the issue could be?
Thanks,
- Karen