client Questions

2

Solved

Hi i'm attempted to learn some socket programming in golang, I'm following along with this tutorial http://synflood.at/tmp/golang-slides/mrmcd2012.html#1 Here is the final result of the tutorial...
Indiscipline asked 17/4, 2014 at 18:5

1

Solved

I have to add a custom header in an android grpc client. I am unable to send it successfully. public class HeaderClientInterceptor implements ClientInterceptor { @Override public < ReqT, Resp...
Homopolar asked 16/7, 2017 at 6:10

4

Solved

I am working on a project that requires real-time interaction between users. I want to have a HTML5 web client (simple enough) and also a local client (preferably Java) with both being able to conn...
Jeri asked 17/1, 2014 at 19:32

1

Solved

I'm looking for a way to handle a disconnect, because every time I close a client, the server stops working. I get an error message, that it is "unable to read beyond the end of the stream" in this...
Application asked 5/7, 2017 at 11:16

2

Solved

I have the following problem: I have a webserver. This webserver is behind a router. The problem is, I need the MAC-Address of a client that opens a website on the server for further purposes. I tr...
Kempf asked 23/4, 2012 at 8:50

2

Solved

For a educational purposes Why should the client request a jason or xml file from the server ? What is the advantage in these files (json and xlm) and what is the difference between these fi...
Herzig asked 12/6, 2017 at 23:5

6

Solved

using JQuery Datatables and all is going well. I've worked out how to send addtional information from the client to the server. Now, I want to go back the other way. So, how do I send extra info...
Audient asked 22/5, 2011 at 19:36

7

Solved

I'm using the Jersey client API to submit SOAP requests to a JAX-WS webservice. By default Jersey is somehow using my Windows Nt credentials for authentication when challenged. Can anyone explain w...
Steersman asked 21/7, 2011 at 10:16

1

I want to make a large number of small HTTP requests from a client machine running Java 7 to an external web server over TLS and I would like to use session resumption to make this as efficient as ...
Magness asked 13/4, 2015 at 16:2

1

Does anyone know if this is possible? The closest thing I found to what I am looking for is this: http://bgrins.github.io/videoconverter.js/ But the "docs" are very minimal.
Dandruff asked 19/5, 2017 at 3:51

2

Solved

I am implementing a TCP connection with sockets and I need to get the IP of the client socket on the server side. I have used the socketName.getRemoteSocketAddress() which indeed returns the IP add...
Abigael asked 27/3, 2014 at 14:38

2

I'm trying to set a client-side timeout per request for Alamofire for Swift. The lead architect told me to set this on NSURLRequest, but I'm completely confused on how to actually do that in practi...
Inkberry asked 25/11, 2014 at 20:8

0

I am trying to implement a grpc client in lua.After some exploration I think I need to 1)use a lua http2 library for the transport layer communication 2)prot0buf library for request and response ...
Waterfront asked 21/4, 2017 at 18:31

1

Solved

Could somebody please suggest me a good GUI client tool for Cassandra on Windows? I need something like Robo 3T (formerly Robomongo) for MongoDB.
Wray asked 9/4, 2017 at 16:19

3

Solved

Is there a way to have a simple webserver send messages to Unity? At the moment, we're doing a GET using UnityWebRequest.Get() in the update method. Here's the code: // Update is called once per...
Seasickness asked 31/3, 2017 at 9:28

1

I'm new to openSSL and I trying to figure out what the best / good solution is to create a https connection when using non blocking sockets, and libraries such as libevent, libev or libuv in comb...
Meader asked 31/10, 2012 at 18:57

2

how do we set the source IP-address when we do __socket.connect((host, port)) on a machine that have a several ethernet interfaces?
Cierracig asked 5/12, 2016 at 9:32

2

Solved

I'd like to create a simple browser client that I'll to demo the REST API we have implemented on a server. I need basic functionality like Create an item on server using POST: client fills up a f...
Sowell asked 19/3, 2010 at 17:25

1

Solved

Im fairly new to Tmux but from what I've read, its using a client-server connection. Why is that neccessary? Is that only for managing sessions? Why does it communicate through a socket rather th...
Setsukosett asked 5/3, 2017 at 20:9

2

Solved

I am writing a class for creating authorization to BigQuery and Google Cloud Storage. In the past I have used CredentialStore which has been deprecated. I am trying to use DataStoreFactory but I d...
Dressmaker asked 19/12, 2013 at 14:27

3

Solved

I'm trying to use Jersey Client to simulate HTTP requests to my web service. I tried to implement the simple example from the documentation. Here's my short code: public void restoreTest(String se...
Gaspard asked 2/9, 2013 at 13:11

2

Solved

I am trying to develop a driver for an embedded board. The driver is supposed to open up an interface for v4l2 and communicate with 2 devices using i2c. the driver will act as a master. I can't se...
Claire asked 7/9, 2016 at 12:49

2

Solved

I'm implementing a simple connection between a client and a server in C. In client side, I'm in a loop, reading from a file; every time BUFFER_SIZE bytes and sending it to the server side (didn't ...
Honeycomb asked 12/2, 2017 at 13:29

1

How to control data write and read efficiently? OR What are the possible reason for decreasing read/write speed? Is there any mistake in my code? Currently it is very slow. I am using below code:...
Regan asked 2/2, 2017 at 12:15

1

Solved

I'm trying to understand how to get client's certificates in Go web server. Here is a server code: package main import ( "log" "net/http" "net/http/httputil" ) func defaultHandler(w http.Resp...
Delamare asked 8/2, 2017 at 21:2

© 2022 - 2024 — McMap. All rights reserved.