plugin
Credits: http://vtortola.github.io/WebSocketListener/
A basic and generic Websocket Server node for talking with browser based applications.
While initially created to communicate with its VVVV.js counterpart "Websocket (Network Client)" it can be used with any other application.
Only supports the most basic use case. No subprotocols, SSL, etc.
anonymous user login
~4h ago
~7d ago
~7d ago
~7d ago
~21d ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago
Hi sagishi,
Very interesting, I opened with vvvv_45beta33.7_x86 (win7_64) and did not work when active node (Enable -> On), throw this error: "Could not load file or assembly 'System.Threading.Tasks.Dataflow' (...)".
We must place the file in a specific location?
Thank You!
oh yeah! i have a client implementation here if you're interested, using a little bit modified WebsocketSharp (added proper events for server events not just their behavior class)
https://github.com/microdee/VVVV.Packs.VObject/tree/master/VVVV.Nodes.VObjects.Networking/VebSocket
also there's the basic class for a server which populates all clients as separate objects meaning all clients can be treated separately. There are no nodes yet unfortunately.
here are some help patches
https://github.com/microdee/VVVV.Packs.VObject/tree/master/girlpower/VebSocket/Sandboxes
obernardoo: to be honest it's the first piece of c# plugin in years, so i don't know the usual pitfalls. For me it works either if I place it in a project diretory, or drag the DLL into the patch. Maybe someone more savvvvy can help?
microdee: if I had known about your much more sophisticated approach, I wouldn't have thrown this together :)
is .NET 4.5 correctly installed?
Yes, .NET 4.5 is there. It seems like it does in fact only work on my laptop (win7). Can't get it to run on any other machine, neither win7, win8 or win10.
Even though it compiles fine on another Win10 system, it crashes during runtime.
Any hints appreciated, as I'd really like to use this in the VVVV.js workshop at Node.
ok got it. adding the c#-projects rather than the dlls to the references did make the difference.
what do you mean by adding c#-project rather than the dlls? I'm trying to use the websocket with vvvv.js but when I enable the websocket server in vvvv it crashes. i just draged the dll in. I'm not an advanced v4 user so sorry for asking if this is something one should know about...
But there is no c# project in the download.
Just the DLLs. Would you mind to add the source?
Or is it somewhere on your github projects already, sorry didn´t find it.
Would love to add SSL maybe. Thanks
PS: Tried to get the missing package System.Threading.Tasks.Dataflow -Version 4.5.9.0
but it does not exist at nuget:
(Package 'System.Threading.Tasks.Dataflow,4.5.9' is not found in the following primary source(s): (....)
Ok got it working like this:
1.
Get nuget.exe from https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
2.
run in commandline:
nuget.exe Install Microsoft.Tpl.Dataflow -Version 4.5.9
3. Copy the System.Threading.Tasks.Dataflow.dll from the downloaded package folder ..\Microsoft.Tpl.Dataflow.4.5.9\lib\net45\ to your project folder (right beside the other DLLs)
hi any chance to get the sources?
@tgd
You can take a peek.
ahhh so forgot about this! @bjoern you the best. thanks!