0

I've a websocket service written in c# with wampsharp at server side and I wonder to know if there's a way to store/retrieve session's related variables or in alternative how to know the caller's session id.

Thanks in advance!

Jason
  • 4,034
  • 4
  • 40
  • 62

1 Answers1

1

This is not supported currently by WampSharp.

This reminds an advanced profile feature of WAMPv2, WampSharp supports currently only WAMPv2 basic profile.

You are welcome to open an issue or a pull request for this on the GitHub page.

Update: this is now possible with WampSharp v1.2.1.6-beta. See release notes.

darkl
  • 569
  • 2
  • 13
  • Thanks for the answer! For the moment I've found a little workaround, using raw callee I can retrieve the session id so for my purpose I've used a simple key-value structure. In the next days I'll pull a request on GitHub. – Andrea Piccolo Jan 26 '15 at 08:15