Tagged Questions
0
votes
1answer
87 views
Concurrent Clients issue in C# Sockets
I am working on a client server application, Windows Server and Linux Client. I was testing my server with multiple concurrent clients. I tried just 20 concurrent connections from client, and i ...
0
votes
0answers
158 views
Communication between C# and VB6 applications over TCP
The scenario: A VB6 application and a Windows Service developed with C#. The goal is for the VB6 application to communicate with the service over TCP.
I implemented a TcpListener in the service:
...
0
votes
3answers
246 views
Simple C++ server-client application with winsock
I'm trying to write a simple server-client application, which all it's supposed to do is this:
Client connects to server, Server waits for a message, client takes input from user, and sends it over to ...
0
votes
1answer
100 views
sending structure with winsock
I try to send a structure from a client to a server. I read in the internet that i have to type cast the structure to a char array, but when i try this the char has not content.
Here is my struct:
...
6
votes
0answers
228 views
Middleware in client/server communication
I'm building a client/server pair in C++, and I've used the winsock for the communication. However, I'm not able to find any library in C++ by which I can implement something that, instead of sending ...
2
votes
1answer
403 views
How to make a synchronous chat program to send and receive messages synchronously?
At the moment I am creating a client server console application in c++. With the use of the winsock2.h library and UDP protocol we use the sendto and recvfrom to send messages as strings from the ...
5
votes
2answers
489 views
Is closesocket thread safe?
Is it safe if I want to call closesocket() on a server socket from 1 thread which is separate from another thread which runs the server using the same server socket?
0
votes
2answers
196 views
Winsock sends additional data
I'm writing a small client/server application in c++ with winsock and I can't explain a few things that are happening..
I wrote 2 basic functions that send/receive all the data through a TCP ...
0
votes
1answer
324 views
Resolving DNS with winsock, with server behind router
I recently started to play around with sockets in windows and I ran into a bit of trouble..
I have an application that I want to find a host with DNS name resolution (through an internet connection).
...
0
votes
1answer
329 views
Using Python in Windows, how do I send and retrieve an arbitrary amount of data over a socket connection?
I am trying to follow an example from an online tutorial regarding basic client-server socket programming using standard Python libraries (version 2.7), but I cannot get the example to work under ...
1
vote
3answers
934 views
c++ server client chat question
Ok,
so im making a server, client app in c++ console based.
What i did so far:
i can connect to the server
i can send messages to the server
the server can send the messages back
but what i cant ...
1
vote
2answers
298 views
how to handle packets in multi-threaded server client program?
I currently have a client app that works but it is single threaded.
my packets look like this: < len_of_data>|< data>"
"|" is used as a separator for my data.
< len_of_data> is always 4 ...
0
votes
1answer
489 views
Winsock TCP Packets sent but not reaching host
When the server sends 4 or more - 25 Byte packets to the client only the first 2 are processed by the client. I am using Event select on the client, and send on the server. There are no errors but ...
1
vote
1answer
2k views
Light Client using Windows Socket and Excel VBA
I have an excel workbook containing a lot of different data. On the other side, I have a server in Java that does a lot of computing work. I would need to connect my XL Workbook this server using a ...
1
vote
1answer
626 views
winsock select()ing runtime error
I'm trying to find a solution to a question I posted earlier about synchronizing chat messages, and one member pointed me in the direction of the select() function. I read this section under Beej's ...
2
votes
2answers
3k views
Determining the IP address of a connected client on the server
I have a server running on one machine and have the port it uses forwarded to my router, and another machine running the client connecting to the server using my ISP assigned external IP address ...
0
votes
4answers
2k views
connecting to an IP address instead of localhost?
this is my second go at this, I've written a server application as below which outputs whatever the client sends. I have one server.exe version where it listens to anything using INADDR_ANY, Having ...
0
votes
2answers
463 views
How do I make my server application use my IP address instead of localhost
this is probably trivial but I need help in making my server listen on my ISP IP address rather than the localhost in my client-server messager program. My server and client is as follows.
server
...
1
vote
3answers
869 views
winsock client and server communication
sorry I know I have been posting threads related to the same topic over throughout the past day but I've hit another issue.
server.cpp
/*Server */
#define _WIN32_WINNT 0x501
#include ...
0
votes
1answer
131 views
winsock server trouble shooting
Ive written and compiled a server program that is meant to echo onto the the screen whatever the client application types in, the code is as below.
/*Server */
#define _WIN32_WINNT 0x501
#include ...
-3
votes
4answers
545 views
UDP socket problem
I'm writing a multiplayer game (obviously using UDP sockets. note: using winsock 2.2). The server code reads something like this:
while(run)
{
select(0, &readSockets, NULL, NULL, &t)
...
