-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
connection alternatives #54
Comments
@veastark I don't see why that wouldn't work. The options in $wampProvider.init({
transports: [
{
'type': 'websocket',
'url': 'ws://127.0.0.1:9000/ws'
},
{
'type': 'longpoll',
'url': 'http://127.0.0.1:9000/lp'
}
]
//Any other AutobahnJS options
}); I'll test this out later today. |
Well if i try it in my code it will only try to connect to the first router:
|
Can you provide your crossbar config? |
Is it possible to provide connection alternatives, so if one WAMP-Router is unreachable a connection attempt to another is made?
AutobahnJS seems to provide something like this with transports:
but if I set these options just connection attempts to the first one will be made.
The text was updated successfully, but these errors were encountered: