client-server Questions

3

Solved

I (server java developer) and two my colleagues (ios and Android developers) have a problem (in fact a dispute). Opinion of the mobile developers: i have to replace in JSON, which they retrieving ...
Breakup asked 16/10, 2015 at 6:35

4

Solved

I am building a c#/wpf project. It's architecture is this: A console application which will be on a virtual machine (or my home computer) that will be the server side. A wpf application that will...
Krakow asked 14/9, 2015 at 14:27

4

I have read many publications about MVC, but I still can't clearly understand why do we need "controller". I usually write applications in client-server model: server contains all the business-l...
Empress asked 2/12, 2012 at 17:33

3

Solved

I am trying to reason about how a simple server implemented in C with sockets can handle concurrent clients. Let's say a simple server waits for a client to connect and then read a message sent fro...
Barytes asked 16/7, 2015 at 18:6

2

Solved

I am new to writing Rails and APIs. I need some help with S3 storage solution. Here's my problem. I am writing an API for an iOS app where the users login with the Facebook API on iOS. The server ...
Tirzah asked 30/5, 2012 at 6:28

2

Solved

I am trying to create a server that can accept both secure SSL and insecure plain text connection (for backwards compatibility). My code is almost working except the first transmitted data received...
Countless asked 5/3, 2013 at 15:21

5

Solved

Please suggest java library, that implements reliable udp. It will be used for a game server to communicate to clients and to other servers. PS Maybe you can suggest tech that will be more product...
Jaquelinejaquelyn asked 30/6, 2011 at 8:21

1

Solved

I have created a sslclient and sslserver using QSslSocket in Qt 5.4.1 in debian wheezy. When I run the program they dont work at all. After debuging my code I saw when it try to create a new object...
Rabies asked 27/5, 2015 at 5:14

2

Solved

I want to apologize for the long post but I wanted to make sure I supplied everything needed to get some help. The Error: Unable to write data to the transport connection: An established connectio...
Bik asked 18/5, 2015 at 19:34

1

Solved

I have a Dealer socket in client side, who is connected to Router socket in server side. I often see Heartbeating mechanism : the server regularly send message to the client in order that client k...
Papyraceous asked 24/4, 2015 at 8:28

3

Solved

I have interest in exploring real-time multiplayer client-server game development and related algorithms. A lot of famous multiplayer games such as Quake 3 or Half-Life 2 use delta compression tech...

2

I am writing a client-server program and I want that to send an image. The code is the following: //RECEIVER while(true){ try{ socket = server.accept(); out = new ObjectOutputStream(socket.get...
Tempestuous asked 1/8, 2014 at 18:55

3

Im trying out the new and exciting features of chrome canary 19. I can basically grab the video from the web-cam and set it to a source element for a video tag. <!DOCTYPE html> <html>...
Firstly asked 10/2, 2012 at 2:19

1

Solved

I am using the following Code for Checking Address Resusability:- import java.io.IOException; import java.net.InetSocketAddress; import java.net.ServerSocket; import java.net.Socket; public clas...
Papillon asked 29/12, 2014 at 7:49

3

I'm developing a socket server using C# .NET. I'm using the async model provided by the SocketAsyncEventArgs class, because it must be a high performance server to support many connections in short...
Doi asked 7/10, 2010 at 11:37

2

Solved

I currently have a TCP server set up that can accept a connection from a client and echo whatever the client inputs. How would I go about making multiple clients connect to the server and have thei...
Boulevardier asked 15/12, 2014 at 21:12

1

Solved

This polling business seems like it was written by a madman, and I am unsure how to use it to allow for multiple clients to connect to a server and then send their input to all other clients. So ...
Shedd asked 15/12, 2014 at 22:52

2

Solved

I read in MSDN about the send() and recv() function, and there is one thing that I'm not sure I understand. If I send a buffer of size 256 for example, and receive first 5 bytes, so the next time ...
Hasen asked 29/11, 2014 at 18:57

2

I'm having problems understanding socket programming and need some help. I am suppose to modify my server code that I have written to accept 3 clients. I know I am suppose to use a fork for each cl...
Seigel asked 1/5, 2013 at 23:36

1

Solved

I'm trying to get into Netty using a simple server-client application (code see below). I'm struggling with two issues: the ConfigServerHandler resp. ConfigClientHandler is called correctly. But...
Kayleigh asked 21/11, 2014 at 7:53

2

Solved

So I created an app where the app connects to the server and tells it to do something. However the server takes a lot of time to do that thing (like an hour or so). So it doesn't make sense to conn...
Organic asked 13/11, 2014 at 22:4

4

Solved

Users save three data: name, note and image. As you can see the code below, I succeeded to code to send the name and note to the server side. But, I have no idea how to send a selected image file ...
Moreville asked 8/5, 2013 at 17:35

4

I am trying to load 2 javascript events/functions in the body onload as follows :- <body onLoad="getSubs(document.form1.HotelID.options[document.form1.HotelID.selectedIndex].value);getTags(docu...
Plyler asked 12/4, 2012 at 11:23

1

Solved

I would like to create two protocols (TcpClient and UdpServer) with asyncio on app.py where the TcpClient will have a persistent connection with the server.py and UdpServer serving as UDP Server: ...
Lavernlaverna asked 23/9, 2014 at 14:59

1

Solved

I'm trying to write a simple echo server with Netty. I'm reading Netty in Action MEAP v8 to get down some theory and learn the core basics of Netty. The client connects successfully, but no message...
Krenek asked 8/9, 2014 at 9:12

© 2022 - 2024 — McMap. All rights reserved.