Data send by wodSSHD not seen - WeOnlyDo Discussion board

Data send by wodSSHD not seen (wodSSH / wodSSH.NET)

by dirk, Saturday, April 16, 2011, 16:40 (4752 days ago)

I'm trying to get 2 apps to intercommunicate via SSH.
In sApp I use the wodSSHD.ocx (2.0.5.261).
As cApp I'm currently using the Terminal example (wodSSH v2.9.6.149)

cApp is able to login to sApp. Within the LoginPassword sub, I'm calling a function with as parameter the User (as received as parameter within the LoginPassword sub)
In that function I do
user.send set icon 1

However in cApp I don't get that send string. Do you have any ideas why this happens?

(using VB6 - for the moment sApp and cApp are both running on the same system).


Any ideas why I'm not getting the info that is send by sApp in cApp?

Re: Data send by wodSSHD not seen

by wodDamir, Saturday, April 16, 2011, 17:14 (4752 days ago) @ dirk

Dirk,

You cannot send user anything at this stage. When LoginPassword is triggered, the User isn't yet logged in. It's in process of negotiation.

If you wish to show user a greeting message you should try BannerText property.

Or, you can send anything to him after user is logged in. You can try ServiceStart event for that purpose.

Regards,
Damba

Re: Data send by wodSSHD not seen

by dirk, Saturday, April 16, 2011, 17:26 (4752 days ago) @ wodDamir

Dirk,

You cannot send user anything at this stage. When LoginPassword is triggered, the User isn't yet logged in. It's in process of negotiation.

If you wish to show user a greeting message you should try BannerText property.

Or, you can send anything to him after user is logged in. You can try ServiceStart event for that purpose.

Regards,
Damba

Hi Damba,

That was simple :-) It works fine like this. Thanks have a great weekend.


dirk