Questions tagged [socketserver]

Python module which simplifies the task of writing network servers.

385 questions
0
votes
1 answer

Basic client-server synchronization

Let do simple thing, we have a cloud, which client draws, and server which sends commands to move cloud. Assume what client 1 runs on 60 fps and Client 2 runs on 30 fps and we want kinda smooth cloud transition. First problem - server have different…
Aristarhys
  • 2,092
  • 7
  • 37
  • 68
0
votes
1 answer

ERROR: Failed to load PhotonLicensing.dll

The logfile states that my Photon license has expired or the PhotonLicensing.dll can't be loaded.
photonians
  • 699
  • 1
  • 4
  • 12
0
votes
1 answer

SocketServer.py errors

Can anyone see what the problem is here? I am new to python and I need some guidance. I'm running Python 2.7.3 in 32-bit mode on a mac with Lion. Dependencies include pyOSC pyserial 2.6 python-xbee-api 2.00 optparse_gui 0.2 wxPython 2.8 I would…
RexTheRunt
  • 141
  • 1
  • 3
  • 12
0
votes
1 answer

C++ socket server to Flash/Adobe AIR?

I am using AIR to do some augmented reality using fudicial marker tracking. I am using FLARToolkit and it works fine, except the frame rate drops to ridiculous lows in certain lighting conditions. This is because Flash only uses the CPU for…
user1418227
  • 201
  • 1
  • 4
  • 12
0
votes
1 answer

P2P application using sockets

I have two P2P applications running, one in 10.7.1.1(A) and other in 10.7.1.3(B). It is kind of a chat application where each sends and receives only text messages and nothing else. Basically i am interfacing with 2 UDP sockets in both A and B for…
user754740
  • 117
  • 2
  • 6
0
votes
1 answer

Using python to send a single int over ethernet

I need to make a server that recieves and sends single integers using tcp. Socketserver gives me a TypeError if i try to do this. Is there an alternative or do i need to write a server from scratch?
Megimoo
  • 387
  • 1
  • 3
  • 15
0
votes
2 answers

Socket server memory keeps on increasing

We have a socket server developed in C#.Net 3.5. I see server memory usage increasing whenever a client disconnectes and connects. The server disconnects the client if valid credentials were not provided. When the client attempts to connect with…
dabididabidi
  • 41
  • 1
  • 6
0
votes
1 answer

Redirecting TCP traffic to another destination

I have a game client. Which connects to this game. I'm trying to set up a socket server which intercepts all traffic to the game server(The game runs through the use of sockets) My problem is that i would need to redirect all traffic my computer…
Stackie Overflower
  • 201
  • 1
  • 6
  • 14
-1
votes
1 answer

Okhttp websocket server Shutdown detection

I am developing a nodemcu websocket server android client app using java.i successfully created client and connected to it through a websocket client service.i can detect server failure/closed when sending data.but can't detect it at the time of…
-1
votes
3 answers

Error in server client File Transfer program?

Server class: import java.net.*; import java.io.*; public class fileserver { public static void main(String args []) { ServerSocket ss=new ServerSocket(2345); Socket s= ss.accept(); FileInputStream f=new…
Tushar Jain
  • 134
  • 1
  • 12
-1
votes
1 answer

Problem running tcp server via systemd service getting address already in use

I am trying to run SocketServer.TCPServer Yesterday midnight I put the code for review https://codereview.stackexchange.com/q/232879/22943, however I could not get the TCPServer to work with Systemd, now today I have finally pin pointed where the…
Ciasto piekarz
  • 7,853
  • 18
  • 101
  • 197
-1
votes
1 answer

Why is this ModuleNotFoundError error occuring?

Traceback (most recent call last): File "server.py", line 1, in import SocketServer ModuleNotFoundError: No module named 'SocketServer'\
-1
votes
2 answers

C program that connects to index.php on xampp server

I am looking to setup a C client that can communicate with an index.php file running on a local XAMPP server. All the tutorials online are based on creating a C client and connecting to a C server. But how would I connect a C client to a PHP file on…
-1
votes
1 answer

Python socket server for multiple connection handling

Can some one suggest a good example for socket server which can handle multiple connections with threading from python. (Live connection (like server-client ping-pong) that will handle from threads)
chinthakaS
  • 125
  • 1
  • 2
  • 10
-1
votes
1 answer

Java chat application only picking up some sent messages

I'm writing an all-in-one java chat program which will either act as a client or a server. I'm currently having this problem where, after the connection is established, the program only successfully recieves (or sends?) some of the messages. I've…
DK_
  • 147
  • 1
  • 4
  • 11
1 2 3
25
26