autobahn Questions
2
I' trying to run a websocket server on local host and forward it to web using ngrok. But couldn't figure it how. These are the original code's from AutobahnPython git repository https://github.com/...
2
Solved
I'm trying to connect to a binance service through:
wss://stream.binance.com:9443/ws/bnbbtc@kline_1m
I know it works because have tried with an online webservice checker and it registers to list...
Fibrosis asked 25/4, 2018 at 15:27
1
Solved
I have an autobahn Websocket Server with the typical onX functions in it's protocol. My problem is that I can't find a way to exit onX, while keep doing the various stuff that I wanted to do when t...
3
Solved
I want to develop real time chat with channels and these are my needs:
PHP backend to manage site
Redis as session and data primary storage
Pub/Sub to send messages only to channel's interested u...
Deduction asked 8/3, 2017 at 8:52
2
Solved
I want to connect to the Push API of Poloniex. On their page they write the following:
In order to use the push API, connect to wss://api.poloniex.com and subscribe to the desired feed.
wss =...
Ybarra asked 26/12, 2015 at 0:34
1
Solved
I am writing a websocket server in twisted to learn the framework. It will be receiving messages from a rabbitmq broker, and and sending out updates to connected clients. If I want to broadcast/mul...
3
Solved
I have a tkinter based GUI program running in Python 3.4.1. I have several threads running in the program to get JSON data from various urls. I am wanting to add some WebSocket functionality to be ...
Studner asked 31/7, 2014 at 15:46
2
I want to call sendMessage method from outside of MyServerProtocol class and send a message to connected clients. I use threading to do this.
When I use this code :
from autobahn.twisted.websock...
1
Solved
I'm trying to create a connection from Matlab to stream JSON frames over a WebSocket. I've tested my python installation of autobahn and twisted using the following.
Working Example
Matlab Code
...
0
Let's say we want to create private chat rooms, where user can chat in small groups. A user can join multiple / x groups. In each case, I need to create a unique group on the server and subscribe u...
1
Solved
I have an Autobahn Python client application using Twisted which is connected to a Crossbar.io server. The client application can successfully reconnect after losing network connectivity using the ...
Phototonus asked 11/9, 2015 at 0:21
1
I'm writing an app to stream messages to the browser from Apache Kafka using a WebSocket. When the server isn't consuming messages for a while and the offset gets behind, the websocket closes after...
Hymnody asked 17/9, 2014 at 17:8
1
I'm struggling with a problem : I developed a Ratchet Web Socket Server using PHP Ratchet
socketo.me
My server is up and listening to port 8082 :
require 'vendor/autoload.php';
$loop = React\...
Bartholomeo asked 21/7, 2015 at 13:26
1
Totally new to websockets.
I am having a bit of trouble understanding how to interact with python Autobahn / twisted from another application and cannot seem to find any useful examples.
I have a...
1
I love crossbar.io and how it works(personally). But I would like to know how we could setup the architecture for a typical dynamic chat application using Autobahn(Crossbar.io).
Dynamic chat here ...
Snapdragon asked 21/1, 2015 at 21:2
0
I am running a websocket server using autobahn|python. on the server side, I also have a gstreamer pipeline running which I am using to capture webm frames using "appsink".
The gstreamer pipeline ...
Cortege asked 11/3, 2015 at 21:14
1
Since Autobahn is isolated from the application server,
How can we track the online or offline status of the user ?
Ln asked 2/1, 2015 at 10:45
1
Solved
Just wondering what the mysterious realm field in AutobahnJS is. From the docs, creating a connection is as follows:
var connection = new autobahn.Connection({
url: 'ws://127.0.0.1:9000/',
realm...
Rammer asked 2/6, 2014 at 8:41
1
Solved
I am following the basic wamp pubsub examples in the github code:
This example publishes messages from within the class:
class Component(ApplicationSession):
"""
An application component that pu...
Emogeneemollient asked 21/3, 2014 at 3:4
1
Solved
I have installed twisted and Autobahn websocket by using
pip install twisted
pip install autobahn
But when I import any of the factories from Autobahn, I get the cannot import name error.
>...
1
Solved
i have a python chatserver that uses twisted and autobahn websockets for connection.
factory = MessageServerFactory("ws://localhost:9000", debug=debug, debugCodePaths=debug)
factory.protocol = Mes...
Horne asked 14/5, 2013 at 9:17
2
Maybe I'm missing something here in the asynchronous designs of Twisted, but I can't seem to find a way to call the sendMessage() method "externaly". By this I mean, sending messages without being ...
1
I want to add basic auth header in the autobahn client tool. How can I achieve that?
Current request
GET / HTTP/1.1
User-Agent: AutobahnPython/0.5.2
Host: 10.35.34.172:9000
Upgrade: WebSocket ...
1
How do I call an autobahn/wamp/twisted protocol publish method from outside of the protocol class?
I have a custom python autobahn client based on https://github.com/tavendo/AutobahnPython/blob/ma...
1
Solved
I'm trying to write unittests for my application that uses Autobahn.
I want to test my controllers which gets received data from protocol, parses it and reacts to it.
But when my test comes to a ...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.