Coder Social home page Coder Social logo

dajuric / websocket-rpc Goto Github PK

View Code? Open in Web Editor NEW
142.0 16.0 22.0 1.51 MB

WebSocket RPC library for .NET with auto JavaScript client code generation, supporting ASP.NET Core

License: Other

Batchfile 0.15% C# 95.27% JavaScript 4.58%
websocket rpc dotnet javascript-client asp-net-core

websocket-rpc's People

Contributors

dajuric avatar vacamra avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

websocket-rpc's Issues

WSS Support

Asp.net 2.1 defaults to using https, so the library is not compatible. Plans to update?

Abnormal client termination not reported on server end (Using ASPNET middleware)

So I have been playing around with this library in dotnet core, works great so far, except one thing I can't seem to get to work is how to be notified when a client (console app in my case for now) terminates abnormally. I need to know when a client connection closes (for whatever reason) so that the server end can react to it.

I'm using WebSocketRPC.AspCore v1.0.6, and calling:
`
app.UseWebSockets();
app.MapWebSocketRPC(
new PathString("/webservice"),
(ctx, c) =>
{
try
{
var b = c.Bind<WebService, IWebCallback>(new WebService());
c.OnOpen += async () =>
{
// gets called
};
c.OnClose += async (status, s) =>
{
// does not get called (only when client actually calls Connection.CloseAsync())
};
c.OnError += async ex =>
{
// Also does not get called when client abnormally closes (ie when i kill it)
};
}
catch(Exception ex)
{
}

            });

`

Invoking Client Functions?

I did a quick look at the code and samples and didn't see anything about invoking client-side functions from the server. Is this supported?

Is it available for .Net 4.6?

I can not install this NuGet for standart .net project on .Net 4.6.1

It says, that my version is not available :\

Is this lib available only for .Net 4.7? (I'm using visual studio)

Standalone .Net Standard 2.0 NuGet Package

Hi Darko,
I realized before that the Standalone package is not directly supporting .NET Standard 2.0 VS projects. That's why I had to create my own project and add your source code manually. Would be a lot smoother if there was a .NET Standard 2 version too.

Thanks

/Anders

Sending and receiving complex objects

When a client receives a complex object from the server, the properties of the complex object are all null. Any idea why? Sending plain strings works fine.

var responses = await RPC.For().CallAsync(x => x.LoadPlayer(1234))
var response = responses.First();
response.PlayerName == null?????

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.