Questions tagged [connect]

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

800 questions
9
votes
1 answer

Expressjs/connect - Simulate slow file upload

Is there a way of setting a mode or value in connect or express to simulate slow file uploads??
user1750709
  • 563
  • 3
  • 4
7
votes
1 answer

Apache ProxyRemote with Proxy-Authorization (over connect/HTTPS)

It's easy to use the "RequestHeader append Proxy-Authorization" to create a forward proxy with no authentication that bounce over a password protected one. But this header is not append to CONNECT requests... I'm aware of the patch suggested at…
131
  • 3,071
  • 31
  • 32
6
votes
2 answers

How to make a basic connection to Github in Sourcetree

When trying to clone a repo from Github in SourceTree, it keeps telling me the repo URL is invalid, when I've copy/pasted it directly from the repo's Github page. I'm using HTTPS and trying to make a Basic connection in SourceTree Github connection…
6
votes
2 answers

dojo.connect won't connect 'onclick' with button

I'm running into a problem using dojo.connect() to connect an 'onclick' event with this button: and the code making the connection is: var…
Daniel
  • 571
  • 1
  • 5
  • 9
6
votes
2 answers

Allowing cross-domain calls with Yeoman (1.0) grunt server

I've been using Yeoman 0.9 up until yesterday when I decided to use the beta 1.0 release on OS X. I use Yeoman to develop an angular app. With the Yeoman 0.9-->1.0 migration of my app done and working, I'm now keen to extend the dev server fired up…
user1539426
5
votes
2 answers

Single page applications, http or websockets, is connect/express done for?

This is a question involving single page web apps and my question is in bold. WARNING: I'm hardly an expert on this subject and please correct me if I'm wrong in part of my understanding of how I think HTTP and WebSockets work. My understanding of…
AntelopeSalad
  • 1,736
  • 1
  • 16
  • 27
5
votes
2 answers

Cannot find module 'connect', when attempting to use require('connect').utils.parseCookie with nodejs

I am relatively new to nodejs etc. Anyway I have a program that I am attempting to write that uses a session/authentication system based on this one…
Josh Mc
  • 9,911
  • 8
  • 53
  • 66
5
votes
2 answers

Node.JS session without cookies

I have been trying but I have found out that iOS 5 by default doesn't accept cookies. I have been trying many different things even using Redis but still cannot get a session to persist for more than one request. Without using cookies, what other…
Mitchell Simoens
  • 2,516
  • 2
  • 20
  • 29
5
votes
6 answers

How to connect a QSlider to QDoubleSpinBox

I want to connect a QSlider to a QDoubleSpinBox but while the code compiles fine and runs for simple QSpinBox, it doesn't work for QDoubleSpinBox QSlider *horizontalSlider1 = new QSlider(); QDoubleSpinBox *spinBox1 = new…
linello
  • 8,451
  • 18
  • 63
  • 109
5
votes
2 answers

Live Connect Rest API: Signing user in?

I am working on a poc using the Live Connect Rest API. (Documentation here: http://msdn.microsoft.com/en-us/windowslive/default) Using the example from the link below I am able to login a user and requesting consent for certain actions. However, I…
SaphuA
  • 3,092
  • 3
  • 39
  • 58
5
votes
5 answers

Magento Connect FTP Settings

When I am configuring the settings for Magento Connect I get the following error: Deployment FTP Error. Local file doesn't exist: Settings has not been loaded. Used default settings Config file does not exists please save Settings The…
Tim
  • 45
  • 1
  • 1
  • 5
5
votes
4 answers

Preparing client side Coffeescript: compiling, uglifying gzipping

On server side I am using Connect and Socket.IO. I want to serve my client side code (also CofeeScript) to be compiled (to JavaScript), uglyfied and gzipped. I looked for Conenct middleware to do this to me and found uglify-js-middleware and…
knex
  • 1,733
  • 3
  • 15
  • 11
5
votes
1 answer

PyQt --> connect() --> TypeError: arguments did not match any overloaded call

I have problems with connect() from PyQt4. For example here is .UI converted via pyuic4. from PyQt4 import QtCore, QtGui try: _fromUtf8 = QtCore.QString.fromUtf8 except AttributeError: _fromUtf8 = lambda s: s class Ui_Dialog(object): …
user616268
5
votes
2 answers

How can I tell if I sent a UDP packet to an open port?

I am making a C program in which I need to check for opened UDP ports on the destination computer. Because UDP is connectionless, I can't check the return value of connect() like I can with TCP. send() and sendto() return values are also no help.…
Marian
  • 85
  • 1
  • 3
5
votes
2 answers

RethinkDB connect AttributeError

I'm trying to make a wrapper module for the RethinkDB API and I've come across an AttributeError when importing my class(called rethinkdb.py). I'm working in a virtual machine having a shared folder 'Github'. I do this in IPython console: import…
H. Steven
  • 51
  • 3
1
2 3
53 54