Page 1 of 1

Cannot upload anymore

Posted: Sun Jul 31, 2022 1:59 pm
by willemgrooters
I started with my project after at least half a year, and ran into upload problems.
Development system is VSI VMS 8.4L1 (community license), and I had some issues connecting to the system using putty:
The first key-exchange algorithm supported by the server is diffie-hellman-group1-sha1, which is below the configured warning threshold.
But I can still access the system.

However, since some updates of the IDE, upload fails:
client error: Error: Handshake failed: signature verification failed
Cannot find files on remote source
Upload failed. [WGCMS]
which did succeed before.

There have been updates of Windows of course, which may cause these issues, but now I'm stuck with this problem. Of course I can still upload or download files by good old FTP but I would prefer to do it from within IDE. What do I need to do the get around this problem?

Re: Cannot upload anymore

Posted: Mon Aug 01, 2022 4:45 am
by sergey_vorfolomeev
in the file

Code: Select all

.vscode\vmssoftware.ssh-helper-settings.json
add (or edit) a line to the block of required host

Code: Select all

"skipSignatureVerification": true,
for example

Code: Select all

{
                "host": "10.0.1.1",
                "keyFile": "",
                "password": "",
                "port": 22,
                "username": "user",
                "debug": false,
                "skipSignatureVerification": true,
                "supportSetFileTime": true,
                "unzipCmd": "",
                "zipCmd": "",
                "label": "node"
}