Refers to a web, database, or web service (API) connection used to transfer data between two endpoints.

learn more… | top users | synonyms

0
votes
1answer
25 views

Bluecove : restart bluetooth stack programmically

I'm trying to close bluetooth service, but Bluecove has bug on Connection close method (https://code.google.com/p/bluecove/issues/detail?id=90) and I am trying to do some workaround to restart ...
0
votes
1answer
34 views

How to callback online/offline status?

Once I was fiddling on jsfiddle, I lost my internet connection. Then, the site alert me that I have no internet connection. Here, give a try by clicking an disabling your connection : a sample code ...
0
votes
1answer
63 views

Connect to PostgreSQL from libreoffice base with SDBC

I'm trying to open a connection to a PostgreSQL database from LibreOffice with SDBC. After installing the "postrgre-sdbc-0.7.6" plugin, the "postgresql" datasource appears. The system asks for the ...
0
votes
0answers
24 views

Hibernate Connection

SQL server 2008 connection in hibernate4 I am getting lot of error..... Please help me to identify the error. Advance Thanks. SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". ...
0
votes
0answers
32 views

Interact with webmatrix database using PHP

I am having trouble using my Webmatrix database. I would like to insert data into the database with a registration page written in PHP. When I created my database the "web.config" file was created. ...
1
vote
1answer
59 views

java.net.socketException:operation time out when running app on real device

this code works fine on emulator, but on real device it gives java.net.SocketException:the operation timed out ive got a php script running on my xampp server. package com.example.new1; ...
-2
votes
0answers
30 views

How a web server works when receiving new requests from the client? [closed]

A web server is listening at port 80 waiting for requests from clients. If there is a client connected to this server, the server will setup connection with it, then response request from client. ...
0
votes
4answers
55 views

Android app on real device,crashes when try connecting to server

I am trying to run a simple android code on my real device but it keeps crashing, it works fine on emulator. my code is package com.example.new1; import java.io.BufferedReader; import ...
0
votes
0answers
46 views

Check a connection using InetSocketAddress

I created an Android program which test a connection to my server, but I need to check few connections through ports. My code: public void cp(View arg0) throws IOException { ...
0
votes
1answer
34 views

FileStream.copyTo(Net.ConnectStream) what happens intern?

this code works fine. My question is what happens within the Net.ConnectionStream when i use the CopyTo() method? System.Net.HttpWebRequest request using (FileStream fileStream = new ...
0
votes
1answer
43 views

Broken Pipe - Cannot connect to openERP 6.0.4 server using port 8070

I have an issue whereby all clients cannot connect to openERP server 6.0.4 using port 8070. It happened sometimes in a while (4-6 months). I wonder whats the problem, I checked the network traffic, ...
0
votes
0answers
49 views

SharePoint 2010 list connection string - BIDS

I have configured SharePoint 2010 environment for Windows Authentication as well as Form based Authentication. When I try to create a report (BIDS) with SharePoint list data source by connecting as ...
0
votes
1answer
21 views

Connection error in source() and install.packages()

While my computer is connected to Internet and can normally ping repositories, install.packages() and source() command (with remote file) are not working: install.packages("xcms") --- Please select a ...
0
votes
1answer
55 views

Youtube API Use Eden PHP library

I try ot use API Eden for YouTube. http://www.eden-php.com/documentation/social/google/youtube I block for the connection. I use this code like thez say : session_start(); $auth = ...
0
votes
1answer
25 views

Products are not bein saved (anythin else is): keeps loading/processing

Unitll this morning I have experienced zero troubles while saving products in Magento. But, since an hour or 2, my products are just not being saved. Magento keeps loading (a popup stays with ‘Please ...
0
votes
0answers
15 views

Cannot Join Reliable Raw Session (ALLJOYN_JOINSESSION_REPLY_FAILED)

this question is related to alljoyn library for java - android How could I debug ALLJOYN_JOINSESSION_REPLY_FAILED exception? The issue occurs when I am trying to join a reliable raw session. The ...
0
votes
0answers
9 views

Can only restablish a bluetooth connection a finite number of times

I have an application (activity and service) which can establish a connection with a separate device and pull data off it over spp Bluetooth. It need to do this once a day. However, there appears to ...
0
votes
1answer
26 views

Webpage won't load due to “Cannot connect to server error”

I have the following activity that will connect to a webpage. The activity works but it can never connect to a webpage regardless of what website it is, I keep getting the same message. Can anyone ...
0
votes
1answer
25 views

How to communicate from android emulator with server which has not registered in DNS

I am uploading image from android emulator to server(which is not registered in DNS) using php script. But I got the following error. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> ...
0
votes
1answer
50 views

Simple vbscript script that checks internet link's healthiness and switches to backup connection if main dropped

I need to come up with simple solution for an internet gw in SOHO environment. It has 2 internet connections - main via adsl link and backup via USB 3G modem. Both connections export standart PPP ...
-1
votes
0answers
45 views

java.lang.ClassNotFoundException: javax.xml.bind.annotation.XmlAccessorType

I want to receive data from the server in the Android project environment. Firstly, I had tried in the Java project. It worked well. But the following error occurred when I changed the environment ...
2
votes
1answer
69 views

hibernate closing connections or not?

My code is below. Possibly I am using it many times in similar manner, i.e in simple words, I am managing the session and transaction this way: List<Login> users= null; try{ ...
0
votes
1answer
36 views

Postgres : Access to database denied

I've seen a few posts with this problem, but it seems to be a different issue: I'm running Postgres 9.1 on a Ub 12.04 server. It runs fine. From the server itself, If I try and connect from pgAdmin ...
0
votes
1answer
71 views

Can't connect to MySQL, even though running

This is driving me crazy! I have MySQL preference pane on my Mac OS X Lion, and also start and stop it from Terminal. mysql works from terminal and I can connect to databases, but when I do it from ...
0
votes
1answer
45 views

more than one connection in NodeJs

I need to make download script by NodeJs,which limit connections number and speed for each session. I can read file and write is to response by NodeJs, maybe I can limit speed by sleep package of ...
0
votes
1answer
41 views

Connect to Oracle DB with Java

I am trying to connect to Oracle DB hosted by the faculty. Given information: host: bazi.finki.ukim.mk port: 1521 sid: ORCL user: xxx pass: xxx here is the code: try { ...
0
votes
1answer
24 views

Loading from a database to a jlist brings errors

I have created a database and every entry from the JList will be added to a table in the database. This work perfectly, but my next task is to get whatever is in the database to load to the JList. I ...
0
votes
1answer
84 views

Python Exception Handling - Best Practices

I'm writing a python program the accesses a database. I want to catch three types of exceptions when I make a http request. Timeouts, network errors, and http errors. I'm looking for the best way to ...
0
votes
1answer
74 views

Close connection when NSOutputStream has finished

How can a connection be closed when the NSOutputStream has finished sending data? After searching around i have found that the event NSStreamEventEndEncountered is only called if the server drops the ...
1
vote
1answer
221 views

Connecting multiple devices to bluetooth in Android

So far what I know that its possible to communicate to multiple devices from your android phone. But my case is that I want to connect two 'similar' devices. My understanding is that, I need to use ...
0
votes
1answer
66 views

Server-client cprogramming handle multiple connection requests

Want to make a server-client connection. I want to send data of 2 or more clients to the server. The server needs to collect al this data and write it to database. The problem is, how to work with ...
0
votes
1answer
78 views

what is “T!” represent in socket connection?

i have open java socket for read serial data on localhost, but the when i try more times to read data then i get just two bytes which are T!. i don't know what this two characters represent ?? and ...
0
votes
1answer
56 views

socket keepalive works with xp but not with windows 7 c#

I have a strange problem: I have a list of TcpClients that I need to be notified when one of them disconnects. When each of them is initialized I set their socket to keepalive (setsocketoption, and ...
1
vote
1answer
45 views

The Better Way of Determining Internet Connectivity

Originally a question about why a web view was failing when a broadcastReceiver said the device was connected to the internet: WebView Fails w/ Good Connection This lead to two answers, a technically ...
0
votes
0answers
116 views

Facebook server-side login authentication issues 27th of april 2013

Im trying to make a facebook login connection, så that it will be easier for my future user to sign up to my web site. But I keep getting: echo("The state does not match. You may be a victim ...
0
votes
1answer
30 views

Where can I locate exact credentials for MySQL Database PHP connection in PHPMyAdmin?

Where can I find the exact credentials to input into my PHP script to connect to a MySQL database. If applicable, where is this information in the latest cPanel or recent PHPMyAdmin. Thank you! I need ...
-2
votes
1answer
8 views

Conflicting network connections? [closed]

We are hosting a Minecraft server behind behind a firewall. We are aiming for around 100-200 players online. When connections get to the firewall, they are forwarded to our server with the firewall's ...
0
votes
1answer
51 views

force close TIME_WAIT connections by sending RST to dst and src?

The MySQL server had some few "Too many connections" warnings , and on the server there's a ton of unknown TIME_WAIT connection on my system like: # netstat -npat tcp 0 0 ...
1
vote
1answer
73 views

iOS game center — frequent CONNECTION INTERRUPTED messages

I am working on an iOS game center game, using GKTurnBasedMatch. Every time an incomplete turn, there is a message in the console like this: 2013-04-26 19:26:45.115 AppName[6439:5a9f] CONNECTION ...
1
vote
0answers
48 views

How to detect a usb host connection on a usb device system in C?

I am pretty new to Linux so I apologize if I will ask some really simple stuff. I am working on a custom board with SAM9G25 and Angstrom distribution as operating system. The board as to act as a USB ...
0
votes
1answer
41 views

send data from android to php, may be data not reaching php end

i am trying to send some data from my android code to php file. and trying to fetch it back from php and display it in emulator my java code ` try{ URL url = null; ...
0
votes
0answers
9 views

Passing connection variables to sessions - best practice

I'm writing some geolocation functions that will be making use of Sphinx, MySQL and Memcache. This means I constantly find myself referencing them like this: $result = get_loctext_from_coord ($lat, ...
1
vote
0answers
25 views

how to stop a NSRunLoop

i have a connection in a thread, so i add it to run in a loop to get all data: [[NSRunLoop currentRunLoop] run]; [connection scheduleInRunLoop:[NSRunLoop currentRunLoop] ...
0
votes
0answers
14 views

Oracle Connection Manager Configuration [closed]

I've a problem with Oracle Connection Manager and I've read the Oracle topic about it at OCM but it doesn't work well An image Inside Diagram describing the diagram I want to configure The IP for ...
1
vote
0answers
126 views

org.hibernate.util.JDBCExceptionReporter - Connection has already been closed

Getting the error below while saving an object. Could anyone please let me know this log stands for - 2013-04-25 01:22:44 [ajp-bio-8009-exec-3908] ERROR ...
-2
votes
1answer
52 views

Java connection to database not working

I need help with this code for establishing a connection to a database. try { String str="SELECT * FROM Author WHERE city LIKE 'P%'"; Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con = ...
0
votes
0answers
32 views

PHP : Connection aborted while scraping data from site

I am scraping from a site which list some products and i have save the product page urls in the Ddatabase and looping through the table for getting the url and using the simple html dom parser for ...
0
votes
2answers
43 views

cPanel mysql error 0

I was trying to connect to my mysql server via PHP webpage, and after some time, I figured out that it returns error 0. Some details: I am running a webserver with cPanel, and it also includes mysql ...
1
vote
1answer
82 views

Connecting Windows Form with XNA Application

I am creating a XNA application, i want to add a Windows form before starting XNA application which asks person his username and password to login, i created all this but when i Run my program it ...
0
votes
2answers
48 views

Use of Prepared Statements using Concurrency in Java

I have an application that processes lots of data in files and puts this data into a database. It has been single threaded; so I create a database connection, create prepared statements on that ...

1 2 3 4 5 67