1

I am trying to create a nodejs client to sftp files from a remote HP-Nonstop server, just wondering whether this is possible?

Any help would be greatly appreciated!

simon-p-r
  • 3,623
  • 2
  • 20
  • 35

1 Answers1

1

If you have Bombora (the only node.js deep port I know of for NonStop) then you should be able to run the OSS sftp client.

Alternatively if there are any node.js sftp packages out there (I googled up a few) then you should be able to use them.

If you don't have TNS/X hardware then you are out of luck, I don't think there is a node.js implementation on TNS/E.

Andy

Andy Simpson
  • 367
  • 2
  • 6
  • Thanks Andy this means if my client is making request from outside NonStop environment I should be able to use sftp to access files held on server. – simon-p-r Feb 04 '16 at 08:13
  • Aha - so your client isn't on the NonStop. Shouldn't be a problem, the sftp server on the NonStop is pretty normal. Bear in mind that there are two file system types on the NonStop, ones is posix like (OSS), the other is proprietary (Guardian), but can (mostly) be addressed using posix type file names. – Andy Simpson Feb 05 '16 at 00:16
  • Thanks Andy for your comments – simon-p-r Feb 05 '16 at 00:38