Bryan - Gendev
Programmer
I am using code that wraps shdocvw.dll to download a file from my server.
The file is in the root directory of my server.
The operation tries to operate correctly as a dialogue appears but with an error message. see below.
<code>
sURLandFile = "ftp://upgrader:nnnnn@mysoft.soho.on.net/PW9Setup.exe ";
sURLandFile = HandleUnsafeChars(sURLandFile)
IF !EMPTY(sURLandFile)
nRet=DoFileDownload(STRCONV(sURLandFile,5))
ELSE
ENDIF
</code>
Error.
Looking at the transaction in wireshark I see the login succeeds and it attempts to grab the file but shows
CWD /PW9Setup.exe\357\274\200\357\277\277\353\265\233\347\253\274\343\217\272\340\240\200/
FTP Response: 550 /PW9Setup.exe?: No such file or directory
On my screen I get the usual dialogue with
Getting File Information:
PW9Setup.exe(then some chinese chrsthen ..from mysoft.soho.on.net
On top of that I get another dialogue Titled - Web Browser
Unable to download (then the msg line above)
The server returned extended information.
Has anyone any experience with this and might be able to give me a clue what is going wrong?
Thanks
GenDev
The file is in the root directory of my server.
The operation tries to operate correctly as a dialogue appears but with an error message. see below.
<code>
sURLandFile = "ftp://upgrader:nnnnn@mysoft.soho.on.net/PW9Setup.exe ";
sURLandFile = HandleUnsafeChars(sURLandFile)
IF !EMPTY(sURLandFile)
nRet=DoFileDownload(STRCONV(sURLandFile,5))
ELSE
ENDIF
</code>
Error.
Looking at the transaction in wireshark I see the login succeeds and it attempts to grab the file but shows
CWD /PW9Setup.exe\357\274\200\357\277\277\353\265\233\347\253\274\343\217\272\340\240\200/
FTP Response: 550 /PW9Setup.exe?: No such file or directory
On my screen I get the usual dialogue with
Getting File Information:
PW9Setup.exe(then some chinese chrsthen ..from mysoft.soho.on.net
On top of that I get another dialogue Titled - Web Browser
Unable to download (then the msg line above)
The server returned extended information.
Has anyone any experience with this and might be able to give me a clue what is going wrong?
Thanks
GenDev