Refers to a web, database, or web service (API) connection used to transfer data between two endpoints.
42
votes
11answers
35k views
Updating from svn repository returns “Could not read chunk size” error
When updating from subversion repository using tortoise svn client I get error looking like that:
Could not read chunk size: An existing connection was forcibly closed by the remote host.
It ...
34
votes
13answers
9k views
Artificially create a connection timeout error
I've had a bug in our software that occurs when I receive a connection timeout. These errors are very rare (usually when my connection gets dropped by our internal network). How can I generate this ...
31
votes
4answers
10k views
How can I programmatically remove the 2 connection limit in WebClient
Those "fine" RFCs mandate from every RFC-client that they beware of not using more than 2 connections per host...
Microsoft implemented this in WebClient. I know that it can be turned off with
...
30
votes
6answers
26k views
HttpClient 4.0.1 - how to release connection?
I have a loop over a bunch of URLs, for each one I'm doing the following:
private String doQuery(String url) {
HttpGet httpGet = new HttpGet(url);
setDefaultHeaders(httpGet); // static method
...
27
votes
2answers
19k views
In Java when does a URL connection close?
When does java let go of a connections to a URL? I don't see a close() method on either URL or URLConnection so does it free up the connection as soon as the request finishes? I'm mainly asking to see ...
25
votes
3answers
72k views
How to determine total number of open/active connections in ms sql server 2005
My PHP/MS Sql Server 2005/win 2003 Application occasionally becomes very unresponsive, the memory/cpu usage does not spike. If i try to open any new connection from sql management studio, then the it ...
25
votes
7answers
42k views
How to detect the physical connected state of a network cable/connector?
In a Linux environment, I need to detect the physical connected or disconnected state of an RJ45 connector to its socket. Preferably using BASH scripting only.
The following solutions which have ...
25
votes
6answers
46k views
Cannot connect to MySQL 4.1+ using old authentication
I'm trying to connect to a mySQL database at http://bluesql.net, but when I try to connect, it gives this error:
Connect Error (2000) mysqlnd cannot connect to MySQL 4.1+ using old authentication
...
25
votes
8answers
21k views
How to check if internet connection is present in java?
How do you check if you can connect to the internet via java? One way would be:
final URL url = new URL("http://www.google.com");
final URLConnection conn = url.openConnection();
... if we got here, ...
24
votes
4answers
7k views
iPhone Simulator - SImulate a Slow Connection?
Is there a way to slow down the internet connection to the iPhone Simulator, so as to mimic how the App might react when you are in a slow spot on the cellular network?
23
votes
7answers
8k views
How do I connect to a database and loop over a recordset in C#?
What's the simplest way to connect and query a database for a set of records in C#?
23
votes
2answers
6k views
When to close db connection on android? Every time after your operation finished or after your app exit
I have an android application that access local sqlite3 db frequently, for performance consideration so i always keep the connection open. But one of my friends recommended me to open/close the ...
22
votes
7answers
11k views
Simulating Slow Internet Connection
I know this is kind of an odd question. Since I usually develop applications based on the "assumption" that all users have a slow internet connection. But, does anybody think that there is a way to ...
21
votes
9answers
62k views
Oracle - What TNS Names file am I using?
Sometimes I get Oracle connection problems because I can't figure out which tnsnames.ora file my database client is using.
What's the best way to figure this out? ++happy for various platform ...
21
votes
1answer
10k views
Python [Errno 98] Address already in use
In my Python socket program, I sometimes need to interrupt it with ctrl-c. When I do this, it does close the connection using socket.close() however when I try to reopen it I have to wait what seems ...
20
votes
6answers
55k views
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated
please see the error below :
Server Error in '/' Application.
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
The statement has ...
20
votes
4answers
127k views
java.net.SocketException: Connection reset
I am getting the following error trying to read from a socket. I'm doing a readInt() on that InputStream, and I am getting this error. Perusing the documentation this suggests that the client part of ...
20
votes
1answer
777 views
In C#, is there any way to have an in-memory file linked as an in-memory SQLite database with System.Data.SQLite?
What I want to do is something along the lines of the following:
using System.Data.SQLite;
using System.IO;
//My SQLite connection
SQLiteConnection myCon;
public void ReadAndOpenDB(string filename)
...
17
votes
6answers
17k views
PHP - MySQL connection not working: 2002 No such file or directory
I tried to use WordPress, and it would never work. I have apache and mysql running, the accounts and database are all set up, there are no typos. So I tried to make a simple connection:
<?php
...
17
votes
2answers
587 views
Moving from mysql connection to mysqli
I have a function I used to use with my scripts. openDBConn() and closeDBConn() These both called the mysql_connect() function. Used as seen below
openDBConn();
$car_model = getCarModel($car_id);
...
16
votes
3answers
17k views
Android HTTP User Agent
Can i ask how to get http_user_agent real device?
When i use WebView, i can get the real value like this:
[HTTP_USER_AGENT] => Mozilla/5.0(Linux; U; Android 2.2; en-gb; LG-P500 Build/FRF91)
...
16
votes
5answers
2k views
How to make two android devices to communicate through TCP
We want to establish TCP/IP connection between two android devices.
For now we thought that it would be simpler if we make the connection device to device. So there is no server that is between the ...
15
votes
9answers
108k views
Why would a “java.net.ConnectException: Connection timed out” exception occur when URL is up?
I'm getting a ConnectException: Connection timed out with some frequency from my code. The URL I am trying to hit is up. The same code works for some users, but not others. It seems like once one ...
15
votes
3answers
11k views
Help troubleshooting SqlException: Timeout expired on connection, in a non-load situation
I have a server hosting a website of mine that has almost zero-traffic.
A few people (< 20) enter the site every day, and a few RSS readers are subscribed to some feeds we put out.
Almost every ...
15
votes
2answers
662 views
Why does PDO print my password when the connection fails?
I have a simple website where I establish a connection to a Mysql server using PDO.
$dbh = new PDO('mysql:host=localhost;dbname=DB;port=3306', 'USER',
'SECRET',array(PDO::MYSQL_ATTR_INIT_COMMAND ...
15
votes
3answers
18k views
Why does an Entity Framework Connection require a metadata property?
I switched my DAL from using LINQ over to Entity Framework. Because my application connects to different databases depending on the current user, I need to dynamically create the DataContext at run ...
14
votes
2answers
25k views
How to grant remote access permissions to mysql server for user?
If I do SHOW GRANTS in my mysql database I get
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD 'some_characters' WITH GRANT OPTION
If I am not mistaken, root@localhost ...
13
votes
9answers
10k views
Best way to manage database connection for a Java servlet
What is the best way to manage a database connection in a Java servlet?
Currently, I simply open a connection in the init() function, and then close it in destroy().
However, I am concerned that ...
13
votes
4answers
16k views
Xcode 4 - Connecting Outlets
This page shows how easily I can connect outlets http://developer.apple.com/technologies/tools/whats-new.html in Xcode 4, but I can't get it.
I right click and drag an outlet from the new ...
12
votes
9answers
30k views
Instantly detect client disconnection from server socket
How can I detect that a client has disconnected from my server?
I have the following code in my AcceptCallBack method
static Socket handler = null;
public static void AcceptCallback(IAsyncResult ar)
...
12
votes
2answers
9k views
What is the difference between connection and read timeout for sockets?
3 questions:
1) What is the difference between connection and read timeout for sockets?
2) What does connection timeout set to "infinity" mean? In what situation can it remain in an infinitive loop? ...
12
votes
5answers
13k views
Best Portable way to connect to SQL server using c++
I want to connect my program which uses C/C++ to a SQL Server database (Express or Standard edition). Because of users' demands, the program will have to be ported to Mac OS too, so the database ...
11
votes
5answers
8k views
Closing WCF connection
We are using WCF service
on the client side we are planning to explicitly close the connection
It seems there are more then one way of closing
Sample1:
In the finally block of the WCF service ...
11
votes
2answers
7k views
Argument type for Qt signal and slot, does const reference qualifiers matters?
For signal and slot of below type
signals:
void textChanged(const QString &);
public slots:
void setText(const QString & text)
the type of argument of textChanged and setText ...
11
votes
5answers
23k views
Relation between Oracle session and connection pool
Let me explain the set up first.
We have an oracle server running on a 2GB RAM machine. The Db instance has the init parameter "sessions" set to 160.
We have the application deployed on Websphere ...
11
votes
6answers
36k views
iPhone TCP/IP Socket Server/Client Program
I have read a lot of questions regarding this subject on this website however they didn't quiet answer my question. If you can't be ### about my goal or background skip to the question.
My Goal
Is ...
10
votes
11answers
23k views
Common WCF Exception : Connection Unexpectedly Closed
I have three projects. One is a WCF Services Project, one is a WPF Project, and one is a Microsoft Unit Testing Project. I setup the WCF Services project with a data object that looks like this:
...
10
votes
6answers
13k views
How to check if a socket is connected/disconnected in C#?
How can you check if a network socket (System.Net.Sockets.Socket) is still connected if the other host doesn't send you a packet when it disconnects (e.g. because it disconnected ungracefully)?
10
votes
2answers
4k views
Which should I close first, the PreparedStatement or the Connection?
When using a PreparedStatement in JDBC, should I close the PreparedStatement first or the Connection first? I just saw a code sample in which the Connection is closed first, but it seems to me more ...
10
votes
3answers
5k views
Android detect if device has internet connection
I need to tell if my device has INTERNET connection or not. I found many answers like
private boolean isNetworkAvailable() {
ConnectivityManager connectivityManager
= ...
10
votes
2answers
3k views
Determining when an EDGE connection comes back after a dropout on an iPhone
I've incorporated Apple's Reachability sample into my own project so I know whether or not I have a network connection - if I don't have a network connection, I don't bother sending out and requests. ...
10
votes
3answers
11k views
The underlying connection was closed: An unexpected error occurred on a receive
First, sorry for my en english, i'm french and it's well known that french people are pretty bad in foreign languages.
I'm here because i have a problem while downloading some files through ftp ...
9
votes
4answers
28k views
Checking internet connection on android
I have the following code for checking internet connection wifi/EDGE/GPRS/3G on my application.
the code is
public static boolean checkConn(Context ctx)
{
ConnectivityManager conMgr = ...
9
votes
8answers
14k views
php connection pooling mysql
I am planning to use MYSQL. Is there a connection pooling extension available. or what is the normal practice for connection.
is this the one used in every where...
mysqli_connect("localhost", "xxx", ...
9
votes
6answers
22k views
MySQL Error “Too many connections”
I am using MySQL 5.0 for a site that is hosted by GoDaddy (linux).
I was doing some testing on my web app, and suddenly I noticed that the pages were refreshing really slowly. Finally, after a long ...
9
votes
5answers
7k views
How do I retrieve a URL from a web site using Java?
I want to use HTTP GET and POST commands to retrieve URLs from a website and parse the HTML. How do I do this?
9
votes
3answers
2k views
Using Directory.Exists on a network folder when the network is down
My company's code base contains the following C# line:
bool pathExists = Directory.Exists(path);
At runtime, the string path happens to be the address of a folder on the company's intranet - ...
9
votes
5answers
5k views
Merge trunk into branch with SVN: “Secure Connection Truncated”
after trying to merge changes to an svn trunk back to the branch with the following command:
../branches/myBranch$ svn merge -r 94:171 https://.../trunk --dry-run
I get the following error from ...
9
votes
2answers
5k views
Send data from android bluetooth to PC with bluecove
I'm trying to send data from android (using API from its SDK) to a PC using Bluecove on windows, being this last one the server.
I can get the android to connect to the server but when I write to ...
8
votes
2answers
12k views
Drawing a line between two draggable divs
Yes I know that this kind of questions have been asked before in the following links: Question 1, Question 2 and Question 3. But my question is quite different from already asked questions.
What I ...