Cannot upload anymore

Here you can discuss the universal Integrated Development Environment for OpenVMS.
Post Reply

Topic author
willemgrooters
Valued Contributor
Posts: 87
Joined: Fri Jul 12, 2019 1:59 pm
Reputation: 0
Location: Netherlands
Status: Offline
Contact:

Cannot upload anymore

Post by willemgrooters » Sun Jul 31, 2022 1:59 pm

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?


sergey_vorfolomeev
VSI Expert
Valued Contributor
Posts: 98
Joined: Thu Aug 22, 2019 12:17 am
Reputation: 0
Status: Offline

Re: Cannot upload anymore

Post by sergey_vorfolomeev » Mon Aug 01, 2022 4:45 am

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"
}
Last edited by sergey_vorfolomeev on Mon Aug 01, 2022 4:46 am, edited 1 time in total.

Post Reply