Most voted "udp" questions
5 questions
Sort by count of
-
4
votes1
answer110
viewsIt is possible to access a port via TCP/UDP from a web application
It is possible to send data to a port (e.g.: 5151) via TCP or UDP from a site, on the front end, using Javascript for example. I’ve been searching for a while and the closest I’ve come so far is…
-
1
votes0
answers66
viewsNodemcu does not receive the data as I send via UDP Protocol
I am developing a simple application, the goal is to simply send the reading of a sensor connected to an Arduino Nodemcu to a Raspberry PI, and perform a similar reading using Raspberry and send to…
-
0
votes0
answers32
viewsUdpclient not receiving
I tried to make a local chat program using Udpclient, no exception is thrown, it just doesn’t get the message (I’m running 2 equal). My code: public class UdpSenderReciver { int Port = 9600; private…
-
0
votes1
answer92
viewsHow to make more than one type of request to the Python server?
I separated using a function, but the code does not receive the 'date'. COMPLETE SERVER CODE: import socket import json import sys dicty = { 'the': 'o, a, os, as', 'hello': 'ola', 'hi': 'oi',…
-
0
votes0
answers119
viewsSending data to a UDP client
I would like to know if there is any way I can send data to a udp client in nodejs through a browser. I have a form with any 2 fields, I need to take this data placed in the form and send it to the…