Questions tagged [connect]

DO NOT USE! This tag is being burninated: https://meta.stackoverflow.com/q/418968/6296561

800 questions
3
votes
3 answers

Slave cannot connect to Master

I'm trying to configure my laptop as a slave, my master would be a server where Jenkins is installed. I've followed these instructions. However, when it comes to access http://master:8080/ from my slave's browser, internet cannot display the…
Denis
  • 111
  • 1
  • 1
  • 6
3
votes
1 answer

Bluetooth Server and Client in android

Im trying to create a bluetooth server and client in android. The bluetooth server in android can view all the connected devices and create a data of connected devices and saved it in the sqlite db in android. The server and client must also be…
Jah
  • 223
  • 2
  • 3
  • 13
3
votes
2 answers

Android Studio Failed to fetch - Connection refused: connect

Android Studio Setup Wizard (studio64.exe) is not able to fetch some XMLs. I have set in studio64.exe.vmoptions -Djava.net.preferIPv4Stack=true -Dhttp.proxyHost=... -Dhttp.proxyPort=... Also tried -Dhttp.proxyHost=www.google.com…
syr
  • 836
  • 1
  • 12
  • 28
3
votes
1 answer

Qt C++ connect signal with non-void signature to lambda

I want to connect a signal with non-void signature to a lambda function. My code looks like the following QTimeLine *a = new QTimeLine(DURATION, this); connect(a, &QTimeLine::valueChanged, [a,this](qreal r) mutable { this->setMaximumHeight(r);}); in…
blackgreen
  • 34,072
  • 23
  • 111
  • 129
3
votes
1 answer

Android LocationClient onDisconnect doesn't get called

From the GooglePlayServicesClient.ConnectionCallbacks documentation onDisconnected should get called when the LocationClient is disconnected. From my testing I noticed it never gets called if I disconnect the LocationClient myself. Here is the most…
Moemars
  • 4,692
  • 3
  • 27
  • 30
3
votes
1 answer

how to use Node.js connect-memcached middleware

There is a simple example about how to use connect-memcached. var express = require('express') , session = require('express-session') , cookieParser = require('cookie-parser') , http = require('http') , app =…
Frankjs
  • 565
  • 1
  • 4
  • 14
3
votes
2 answers

Grunt Connect server ignoring port and not opening browser

Trying to get grunt-connect setup. What I want is to start a server (either localhost or an IP), the browser to open at that url and ideally this to livereload when a CSS, HTML or JS file is changed. But we can come to that later. This is what I…
Leads
  • 839
  • 2
  • 10
  • 27
3
votes
4 answers

Can't connect to local IP address on OSX

I'm trying to connect to a webserver that's running on my mac OSX 1.6. I'm able to connect to it locally using http://127.0.0.1:8888/myapp but when I attempt to connect to it using my machine's local IP address (http://192.168.1.15:8888/myapp IP…
Alex Worden
  • 3,374
  • 6
  • 34
  • 34
3
votes
1 answer

Dynamically inject script tag pre

At the end of a request I would like to tap into the results that are text/html end inject tag. Ideally this would tap in as low as possible - i.e. HTTP module or at worst Connect. I'm trying to create a package that will be used for…
vdh_ant
  • 12,720
  • 13
  • 66
  • 86
3
votes
2 answers

Checking that value of ui elements has been changed

Is there any way to check that the ui elements(line edit,combo box,etc.) of the dialog has been changed. What I want is to show a message to the user if he changes the value of any single ui element, saying that details have been partially…
krohit
  • 792
  • 1
  • 7
  • 26
3
votes
3 answers

Server side includes (SSI) with grunt connect web server

We are using yeoman for our dev process and currently using the "grunt server" command to run the grunt connect web server for local development. Every time we save a file, grunt will run all its tasks and reload the browser. The problem is with…
Chris Gunawardena
  • 6,246
  • 1
  • 29
  • 45
3
votes
1 answer

req.session often undefined in a route (connect-redis used as store)

The problem is the following: On the deployed nodejitsu app, often (not always!), when I redirect from the browser (clicks on a a href="/logout") to the /logout route, i get a req.session undefined within that route. app.get('/logout', function(req,…
Markoff Chaney
  • 313
  • 1
  • 4
  • 7
3
votes
3 answers

How to connect to pre-configured Wifi in Android?

So I've been having some trouble figuring this stuff out for myself and I'm rather new at Android so would really appreciate some help on this. I have taken a look at answers such as these on SO: How do I connect to a specific Wi-Fi network in…
user3075099
  • 89
  • 1
  • 10
3
votes
1 answer

How to set SSL_connect on non blocking socket with select on linux platform

I am trying to use the select function to have non-blocking connection from a client to server.I found a tutorial with some code and tried to adapt to this: ... sockfd = socket(AF_INET, SOCK_STREAM, 0); err = connect(sockfd,(struct…
user2664403
  • 31
  • 1
  • 3
3
votes
1 answer

Express REST server losing payload from Ember-data PUT

I am extending the standard Ember example project (in coffeescript) to talk to an express/mongoose RESTful server. I have successfully fetched all and single records via POSTS using the recommended: Find GET /people/123 Find All GET …
ted.strauss
  • 4,119
  • 4
  • 34
  • 57