client-server Questions
4
Solved
We use hazelcast in client-server mode. The hazelcast cluster contains 2 hazelcast nodes and we have about 25 clients connected to the cluster.
What I am lookin for now is a simple check that tri...
Ovotestis asked 19/12, 2014 at 13:50
1
I use ipython notebook on the browser of my laptop that connects to a remote ipython notebook server in my office. The problem is that if the network is down for a very short period, the connection...
Warrenne asked 21/12, 2015 at 4:54
1
Solved
I'm having difficulty understanding the behaviour of my altered echo server, which attempts to take advantage of python 3's asyncio module.
Essentially I have an infinite loop (lets say I want to ...
Chromato asked 22/6, 2018 at 13:48
8
Solved
Since the Android developers recommend to use the HttpURLConnection class, I was wondering if anyone can provide me with a good example on how to send a bitmap "file" (actually an in-memory stream)...
Injunction asked 1/8, 2012 at 20:13
2
We have 3 products from which user can order.
Eg:
Itunes music
Itunes Books
AppleStore Apps
Given:
3 microservices, which gives 3 individual paginated responses for order history based on ...
Mccaffrey asked 9/5, 2018 at 12:49
6
I have 2 solutions:
- Server Solution
- Client Solution
The server registers itself to my localhost IIS: http://localhost/MyApp/
The client adds WCF Services (Service References) from the local...
Baelbeer asked 2/6, 2011 at 14:27
2
Solved
I was wondering if there was a way to handle a WPF Application Exit event such that the exit was cancelled. The use case is that I have a client-server situation where the server is a WPF app. I wa...
Glyptograph asked 10/10, 2011 at 18:48
2
Can I restart a MongoDB server through the mongo CLI client?
Resonant asked 13/3, 2018 at 13:34
5
Solved
I'm working on a C# Server application for a game engine I'm writing in ActionScript 3. I'm using an authoritative server model as to prevent cheating and ensure fair game. So far, everything works...
Savaii asked 21/4, 2009 at 3:54
2
Solved
I need to implement a game with a server in a local network, with no Internet access.
Provided that I can handle the connections and network communication between clients and server if they are co...
Blub asked 19/4, 2013 at 17:9
3
Solved
I have a service fabric stateful service which exposes an interface like :
public interface IAction
{
Task GetCustomer (Customer customer)
}
The Customer class looks like
[DataContract]
pu...
Flag asked 18/1, 2018 at 5:1
1
Solved
I am trying to send files from a Python server to Java client over a TCP socket. Here is what I have so far:
Java Client (Note that all of the file transfer code is in the getFile() method):
publ...
Gigantism asked 9/1, 2018 at 0:41
1
Solved
I'm tring to implement a java - python client/server socket. The client is in java and the server is write in python
Java Client
import java.io.*;
import java.net.*;
import java.lang.*;
public...
Impenitent asked 15/1, 2018 at 15:31
3
Solved
I have a TCP server that listens for an incoming client, then sends it one packet of data every second. I was wondering, does the SYN/ACK packet only get sent on initial connection, so it looks lik...
Wenz asked 30/8, 2010 at 21:47
1
Here is server side code:
import socket
import sys
HOST = '' # Symbolic name, meaning all available interfaces
PORT = 7800 # Arbitrary non-privileged port
s = socket.socket(socket.AF_INET, socke...
Shick asked 24/12, 2017 at 6:15
0
Under FireDAC, I have a TFDConnection -> TFDQuery -> TDataSetProvider in a server app and a TClientDataSet in a client app. They are connected through the RemObjects Remoting SDK. (The TClien...
Argosy asked 8/12, 2017 at 15:47
9
I'm looking for a javascript library that will let me store data in a client side database and in the back ground automatically sync the database back to the server's database
preferable som...
Baggage asked 14/3, 2010 at 11:25
5
We know that html is the client side scripting, while using angularjs framework in html we include "ng" in html tags.My Question is how the browser recognize or identifies the html tags which has "...
Snapshot asked 20/2, 2015 at 5:5
3
Solved
I have a server, which takes few minutes to process a specific request and then responds to it.
The client has to keep waiting for the response without knowing when it will complete.
Is there a...
Flannel asked 26/7, 2017 at 6:58
3
Solved
I have a problem concerning boost asio libraries. I successfully tried to create a socket between a client and a server, this involves creation of resolvers in order to specify ip and port to the s...
Bottali asked 25/11, 2010 at 8:32
2
Solved
I've been reading this socket tutorial by Oracle and stumbled upon the following text:
If everything goes well, the server accepts the connection. Upon acceptance, the server gets a new socket b...
Calvaria asked 17/6, 2017 at 14:31
5
Solved
I have been working with node.js for a while, now when I'm looking deeper into it, for a chat aplication instead of sending message as client - server - client, there must be some possible ways for...
Balinese asked 14/11, 2012 at 12:34
2
Solved
I am trying to create a simple SSL client and server in Ruby. But I'm getting a cryptic error message and the documentation is of no help.
Here is my server code:
#!/usr/bin/ruby
require "gserve...
Woodworm asked 3/5, 2011 at 16:47
1
I am developing a client-server application. In the usage of this application, clients and server have same AD (Active Directory) domain.
I want my server application to authenticate every client...
Cystolith asked 1/4, 2015 at 21:11
5
Solved
I need to quickly implement a very small C or C++ TCP server/client solution. This is simply to transfer literally an array of bytes from one computer to another - doesn't need to be scalable...
Platter asked 19/3, 2009 at 14:2
© 2022 - 2024 — McMap. All rights reserved.