Intro
To end this Sunday I decided to publish a library where I have been working both at work and at home. As soon as i can. I will inc...
For further actions, you may consider blocking this person and/or reporting abuse
i have the following error, when I try to send a msg
DEBUG:SignalRCoreClient:Sending message InvocationMessage: invocation_id 3d582dd3-13c6-45a4-a43e-a67067ca409d, target SendMessage, arguments ['ola']
DEBUG:root:{"type": 1, "headers": {}, "target": "SendMessage", "arguments": ["ola"], "invocationId": "3d582dd3-13c6-45a4-a43e-a67067ca409d", "streamIds": null}
have you the same args on your .NET methods?. Same number of agruments and type? 'SendMessage(string message)'
yes, even I used the same example here docs.microsoft.com/en-us/aspnet/co... with your example chat without auth but I get the same result, so I don't know what could be, the web socket python always close
If you are using that example you need sending 2 parameters ["user", "message"]. Did you try this?¿
yes of course, I did
Can you show SendMessage declaration and the call for hubconnection.send ¿?. That will be helpful
this is the repo github.com/arthas1888/TestSignalRP..., please check it, thanks
attacth image of the error
I found the error is the next:
and only occurs when I send some msg from signalr client python
yes, i just fixed it on version 0.8.1 >.< you can download it! my bad :(
Ohhh thanks so much, on other hand I found another error, when I use reconnect option, and I shut the web app the python script become crazy, open and close the connection and when run the app again is worst
hmm, I'll check it later. I have a lot of issues/features pending related to the reconnection. I will code them on the following days.
ok thanks so much
I uploaded a new version of this signalR client including improves in re-connections, please check it and if you look everything good you can update your library, thanks
the link github.com/arthas1888/TestSignalRP...
Great work!
One question, if I want to store the json data coming in through hub_connection.on("ReceiveMessage", print), in a txt file, how would I do that?
Yes, you can, 'print' is only the callback function. If you create a function like this:
Then you only need to replace 'print' on the callback register function:
This changes will save data passed trhoung signalr
Getting this error- raise TypeError(f'Object of type {o.class.name} '
f'is not JSON serializable')
E TypeError: Object of type WebSocketService is not JSON serializable
Please let me know how to correct it?
Thank you so much!
any idea why I am receving handshake error
DEBUG:SignalRCoreClient:-- web socket error --
Handshake status 400 Bad Request
ERROR:SignalRCoreClient:Handshake status 400 Bad Request
server_url = input_with_default('Enter your server url(default: {0}): ', "ws://mypc.domin.com:4500/faces")
'faces' is the hub name
endpoints.MapHub("faces");
without 'faces' it returns OK
thank you
Hi,
When you connect to a websocket. Previously, you negotiated the connection at mypc.domin.com:4500/faces/negotiate with a POST request. The response of that request will result a connection id that is passed on querystring of the ws://mypc.domin.com:4500/faces request.
If you are not sure that you are connecting to your hub. Try to override on your hub the following method:
public override async Task OnConnectedAsync ()
all the time I was testing using IIS hosted hub, but I tested now running from Visual Studio, and I got my python code working fetching the info from the hub. the issue seems related to IIS. when testing again using IIS hub, I am getting again the handshake error
thank you Andrés Baamonde Lozano for your reply
curl -XPOST mypc.domain.com:4500/faces/negotiate -H 'Content-Length:0'
{"connectionId":"4Qwmg1Q1jsGN-5-gGpmbPw","availableTransports":[{"transport":"ServerSentEvents","transferFormats":["Text"]},{"transport":"LongPolling","transferFormats":["Text","Binary"]}]}
but I am when using the sample code to have python code connected to the Hub I am getting the following error:
DEBUG:SignalRCoreClient:Handler registered started broadcast
DEBUG:SignalRCoreClient:Connection started
DEBUG:root:start url:ws://mypc.domain.com:4500/faces
DEBUG:SignalRCoreClient:-- web socket error --
Handshake status 400 Bad Request
ERROR:SignalRCoreClient:Handshake status 400 Bad Request
DEBUG:SignalRCoreClient:-- web socket close --
any idea please if I have missed something?
Hi Team,
I am using python client for websocket connection in my test.
when I try to make websocket connection on my local Kubernetes environment it works fine but the same thing is not working on QA environment, throws handshakeError
Only difference I can see in Developer(asp .Net) code is as below
.withURL(url),
{skipNegotiation: True,
Transport: HttpTransportType. webSocket}
Can you please help me, how can I pass the same parameter in my python code
hi!, now at version 0.8.4 you can skip negotiation (included at options dictionary). Take a look to "skip negotiation" section mandrewcito.github.io/signalrcore/
Thank you so much!! I really appreciate your effort.
let me test this and will keep you posted.
Negotiate at this moment is not skippable, i will think on that option thank you! ( i will ad it to my task list)
I am trying to make a service of this chat example, which will run at boot up using systemd but it fails with import: not found on all the imports in the program.
How can I make it execute as a service?
Have you venv? if answer is yes try to execute with full path to your python venv´s interpreter.
Hello! I have the following problem:
On the server side I have defined a hub method -> Subscribe(long[] ids)
I wanted to call this method with hub_connection.send("Subscribe", [2312, 12312])
But json transforming the decimal value automatically into strings, so I defined a new method with Subscribe1(string[] ids) and calling it with hub_connection.send("Subscribe", ["2312", "12312"]) but again the it says: InvalidDataException: Error binding arguments. Make sure that the types of the provided values match the types of the hub method being invoked
Do you have any Ideas?
How would I go about reconnecting in case of websocket disconnect?
On disconnect event is only logged, but HubConnection inherits from websocket.WebSocketApp you can search a solution for you problem in this library. Now i have free time to work in library again, so asap i try to fix this issue. Here is an issue related github.com/websocket-client/websoc...
I have looked at the link. The only thing I see is to add run_forever, but you already have that in base_hub_connection.
run_forever seems to work when network cable is disconnected but it only tries to reconnect for approx 1 minute, and it also gives a websocket error after 1 min.
This weekend i was working on it, during this week. I will update library with "ondisconnected" method to configure reconnection. I tried to do that simplest way. I will explain the implementation on a post, to see if someone gives me feedback and improve that feature.
thank you very much for your effort you put on this.
I supports https on the latest version(github.com/mandrewcito/signalrcore...) and yes you can use it! any colaboration is welcomed :D
thank you Andrés Baamonde Lozano.