WampSharp authentication

531 views Asked by At

I try to use WampSharp library to connect WAMP v2 server but NotImplementedException fired during connection. onChallenge method of WampSessionClient class has no implementation. How can I response 'authenticated'?

1

There are 1 answers

0
darkl On

WampSharp doesn't support yet authentication, it is a WAMPv2 advanced profile feature.

WampSharp currently supports only WAMPv2 basic profile (which doesn't include authentication).

You are welcome to open an issue/pull request but it will take me some time until I can work on it.

Edit: Thanks to Badger's help, client authentication is now supported in WampSharp v1.2.0.3. See the following example which is based on this example.