autobahn-js icon indicating copy to clipboard operation
autobahn-js copied to clipboard

WAMP in JavaScript for Browsers and NodeJS

Results 93 autobahn-js issues
Sort by recently updated
recently updated
newest added

Provide variant 1 of the following 3 in AutobahnJS: 1. timeout/reject the promise client-side without telling the server, and should the server respond later, silently ignore the response (which might...

enhancement

When a connection is closed/lost, an app might want to handle RPCs outstanding (not yet returned), e.g. reject the promises, retry specific one's on connection reestablishment or inform the user.

enhancement

https://github.com/crossbario/autobahn-js/blob/master/LICENSE should read "typedef int GmbH and Contributors"

autobahn.min.js:135 WebSocket connection to 'wss://site.com/socket/' failed: (anonymous) @ autobahn.min.js:135 e.create @ autobahn.min.js:136 z._create_transport @ autobahn.min.js:35 b @ autobahn.min.js:38 I use now https://cdnjs.cloudflare.com/ajax/libs/autobahn/22.10.1/autobahn.min.js In details https://stackoverflow.com/questions/77401784/autobahn-min-js181-websocket-connection-to-wss-site-com-socket-failed-an

Currently, call cancelling is implemented with a simple `cancel()` method on the returned Promise object. This is not perfect for the following reasons: - The `cancel()` method is "lost" after...

I'm using Crossbar v20.12.3 and autobahn v20.9.2. Sometimes the `onclose` callback is called before the session is detached from the router. I had a running process connected to the router...

bug
needs-investigation
CI-CD

so you like connect once at start of page load, and then any subsequent requests go through that one connection ?

Hi, Is there some way how manually close connection? I want allow ws connection only for logged users and I need disconnect/close connection when user log out but in documentation...

The context: I'm playing with different clients' interoperability. Let's say we have a kind of API when all clients are registering an RPC and must return the invocation result in...