client Questions

8

I tried for days to use a web view with a client certificate embedded in the application, but it seems to me that the android sdk does not provide any way to do it, is there a callback to intercept...
Scenario asked 23/3, 2013 at 15:59

2

Solved

im trying to develop a game where i store a scoreboard in a text file which is stored on server (currently on localhost). I am using http get and post calls in order to communicate with the server ...
Idolatrize asked 6/7, 2020 at 13:12

4

I am new to socket programming and I need to clarify some things. Do you need a server between two client communication? Let me explain what I mean: Example 1: Client1: Server, I want to talk ...
Factional asked 17/9, 2015 at 13:2

2

Solved

I'm a little confused about the new RDAP protocol and whenever it makes sense to pursue it any further. It looks to me like everyone agreed on it to be the successor of whois, but their databases s...
Depriest asked 8/5, 2016 at 15:3

1

Solved

How can I make the on_message function work asynchronously in my Tornado WebSocketClient? I guess I need to await the on_message function, but I don't know how. Or is there even a fundamental mis...
Indignity asked 30/5, 2020 at 12:40

1

I am testing OData .Net Client as following: static void Main(string[] args) { var dataServiceContext = new Container(new Uri("http://localhost.fiddler:6851/")); var selectedOrders = from orde...
Holmium asked 23/8, 2015 at 14:1

2

I'm trying to build a simple app that calls an API with quarkus-rest-client. I have to inject an API Key as a header which is the same for all resources of the API. So I would like to put the valu...
Pergola asked 25/10, 2019 at 12:34

4

Solved

I'm new to Thrift. I think I installed it correctly. I have the folowing libs : luckyan315@ubuntu:~/code/thrift-0.8.0/tutorial/cpp$ ll /usr/local/lib/ total 11496 drwxr-xr-x 4 root root 4096 Mar ...
Swayne asked 31/3, 2012 at 14:42

6

Solved

Is there a c# client that follows the socket.io protocol? I have a socket.io server that is communicating with a socket.io javascript client via a website, but i also need to connect a c# piece to ...
Pagel asked 27/6, 2011 at 22:51

1

Solved

I'm trying to authenticate my flutter app to keycloak through openid_client following the repo example, I've wrote an authentication function like this authenticate() async { // parameters here...
Roderich asked 23/3, 2020 at 13:20

6

Solved

I am just starting to learn how to use RMI, and I have a question. I have the following directory structure: compute.jar client | org\examples\rmi\client |--> ComputePi // client main |--&g...
Bootee asked 30/6, 2012 at 10:26

17

Solved

With JSR 311 and its implementations we have a powerful standard for exposing Java objects via REST. However on the client side there seems to be something missing that is comparable to Apach...
Yonder asked 21/10, 2008 at 10:50

1

Solved

I am working on a search engine product and need to know the client country code. I tried to get it with this URL and it returns server side country code. How can I get the correct user country cod...
Bridal asked 20/2, 2020 at 15:29

2

Solved

Code from README.md val scarletInstance = Scarlet.Builder() .webSocketFactory(okHttpClient.newWebSocketFactory(GDAX_URL)) .addMessageAdapterFactory(MoshiMessageAdapter.Factory()) .addStreamAda...
Vietcong asked 2/7, 2019 at 7:44

3

I'm using Jersey Client API in the following way :- User user = webRsrc.accept(MediaType.APPLICATION_XML).post(User.class, usr); So I'm expecting the response in object of User class which is a ...
Sandarac asked 8/1, 2010 at 6:59

2

I am new to this networking in iOS so doesn't know all the concepts so well and I'm making an app which allows to show data on browser which is on device, For that I'm creating a socket-port and us...
Sonde asked 21/1, 2020 at 5:50

2

I need to sendo a lot of messages via netcat or something similar. The problem is that when I run echo "something" | netcat ip port the connection continues opened after I received the response. Ac...
Colleen asked 18/1, 2019 at 14:27

6

Solved

I am using DefaultHttpClient in my current app. I read this article which states that the DefaultHttpClient is deprecated: http://developer.android.com/reference/org/apache/http/impl/client/Defau...
Astylar asked 4/8, 2015 at 6:40

3

Solved

When there are problems while running a recipe and the client run is hanging half way, the installed Chef client will be unusable. You can then exit the machine, reboot, clean up chef pid files a...
Mammilla asked 18/8, 2015 at 11:7

2

Solved

I have been trying to send messages to clients from service worker but if I use self.clients.matchAll() .then((clients) => { clients.forEach(function(client) { client.postMessage({msg: 'Hell...
Barringer asked 9/2, 2017 at 2:22

1

I want to dive into graphQL using Java. I want to query an existing graphQL Service. From what I have found so far are ways to generate the graphQL schemafiles either in JSON or IDL from your...
Tetramethyldiarsine asked 23/7, 2018 at 9:21

4

Solved

We are trying to choose a framework for our client development for a web application. These are the key points about our application. 1) Rich text application where user performs many activi...
Slovenly asked 7/4, 2013 at 10:33

0

According to the examples here and here here I setup a server and a client that uses TLS with custom certificates. Analyzing the memory usage over times with pprof shows that the number of allocs ...
Falda asked 19/7, 2019 at 13:13

1

Solved

I know that the gRPC team recommends that we use a single channel through the entire app, which is exactly what we going to do. But we are not sure about the client class, that receives this channe...
Iniquitous asked 19/7, 2019 at 10:42

3

I'm trying to work with the UDP protocol, and I don't understand the difference between a UDP Server and a UDP Client. Don't they do the same thing ?
Nolitta asked 17/12, 2017 at 18:46

© 2022 - 2024 — McMap. All rights reserved.