Refers to a web, database, or web service (API) connection used to transfer data between two endpoints.
1
vote
0answers
107 views
Oracle taking too long to return invaild username/password error
We have a scenario where its taking around 10 seconds to get the application takes about 10 seconds to get the SQL Exception (stating logon denied as the userid/password combination is invalid) from ...
1
vote
0answers
1k views
How To Check Server or Ip Address available/connected in Android
How to Know server/ip address is available / connected in android.
I try this code
final EditText ed_ip = (EditText)findViewById(R.id.ed_server);
Button btn_ip_save = ...
1
vote
0answers
54 views
Apache2 connection pooling
I want to implement apache connection pooling between two apache2 servers. So that there are connections already established and my response time is reduced.
I am aware that we need to use either ...
1
vote
0answers
218 views
Windows Filtering Platform detecting & authorising outbound connections without first blocking?
Before I even start researching WFP I need to know one thing:
Can I detect an outbound TCP connection attempt, pause it until the user clicks Allow/Block, and then accordingly allow it to succeed or ...
1
vote
0answers
796 views
Android Java TCP / IP socket connection life cycle
I need some implementation TCP/IP on android (obviously by Java)
I came across http://rox-xmlrpc.sourceforge.net/niotut/index.html
However, I am wondering if it is right approach or not.
If you take ...
1
vote
0answers
49 views
How to set NSMuteableURLRequest connection to “Connection: close”?
I have tried setting setting my NSMuteableURLRequest to close , but its always on 'keep-alive' , how can I force to close connection. I am doing like this :
NSMutableURLRequest *req = ...
1
vote
0answers
117 views
Aptana connection error
I have a problem with a SFTP connection on my project.
I succeed creating the connection (The Test button told me all was ok)
And i can browse through de folders of the connection.
I can upload my ...
1
vote
0answers
83 views
Failed to connect to Content Server
So I've just Install Site Studio Designer and I want to connect to the web site.
I enter my Server Cgi URL (https://myservername:port/cs/idcplg).
When I click connect I got a Error :
Failed to ...
1
vote
0answers
1k views
apache2 error : (OS 10054) connection forcibly closed
Apache version is 2.2.17 on a windows 2003 server
Here is how its routing :
user -> AA.com request -> Apache proxy server on AA.com network -> BB.com
This was working without an issue till ...
1
vote
0answers
136 views
Android: Connections per Hostname
How can I find max HTTP connections per host-name using android?
So far I found this site statistics: http://www.browserscope.org/?category=network&v=top-m
But how can I detect it in run time?
1
vote
0answers
522 views
use mysql embedded with qt?
I am trying to use mysql embedded with QT. I already have a Qt mysql plugin linked against mysqld. The plugin loads fine the embedded db but QT does not have easy ways to setup embedded options like ...
1
vote
0answers
149 views
keep sending location update from iPhone to server while the phone is in background
I know that it is possible to keep getting location updates while the phone is in background mode, but is it possible to keep sending this updates to my server?
Im using NSStream to connect to the ...
1
vote
0answers
152 views
Accessing a server running on an android phone from outside
I want to let the users browse and download their content on an android device through an internet connection.
I have successfully made a tiny HTTP server that works fine when you are on the local ...
1
vote
0answers
156 views
android fails to connect to a website
Hi i'm trying to connect to a site, to download an xml. But after the
URLConnection ucon = url.openConnection();
line is called, the program seems to do nothing.
Here is a snippet of my code:
...
1
vote
0answers
149 views
How/where to persist EventMachine object?
I'm trying to write an application that reads data from a View and uses a controller to communicate (put / get data from a channel) with an EventMachine instance.
The design I have right now is that ...
1
vote
0answers
646 views
Android Connection pooling
For implementing http connection pooling, I had gone through this link. After reading this I came to conclusion that making a single Http client object and connection manager with different request ...
1
vote
0answers
271 views
BIS-B connection has to be Blackberry Alliance Program?
I'm totally new in the blackberry developing thing.
I already searched and reading a lot of threads in forum and in RIM tutorial itself.
I already become the member of Blackberry Alliance Program, ...
1
vote
0answers
406 views
How to send a lot of data to a remote MySQL database
I found here (Send data from android to server via JSON) that I can send local Android database data to a remote MySQL database.
So I tried to do that and when I send just a row it works good, but ...
1
vote
0answers
70 views
Not reading full web page content
I'm trying to read a RSS content. I don't know why, the following code (java) isn't able to retrieve all the content.
The page starts with <?xml version="1.0" encoding="UTF-8"?><rss ...
1
vote
0answers
129 views
Problem open scp connection from oracle database with java class
We have a java class into oracle database. Our java class opens a scp connection to a remote server to get a file, when the file is readed, the connection is closed in the java class.
We have also one ...
1
vote
0answers
206 views
checking iphone firmware over USB connection
I wonder if I can write a code to check the firmware version of an iPhone connected to USB.
How can I do that in cocoa?
I wanna be more clear about my question.
I want to check the firmware version ...
1
vote
0answers
732 views
Sharepoint Filter Web Part Connection To Library Web Part
I have two web parts. The provider web part is a custom web part and the consumer a library web part. In the provider web part I filter multiple values. These multiple values shall I transfer to the ...
1
vote
0answers
124 views
Make connection with excel with rapidly data fetching
I am making a website for trading application in which the trading feed is coming from a source in Excel spreadsheet. I have to show data from Excel spreadsheet in a GridView, but when I make a ...
1
vote
0answers
558 views
CLOSE_WAIT problem with HttpWebRequest
I have an application with connects to many websites at the same time and download large files over http.
When I check the system with TcpView there are many connections in CLOSE_WAIT state. My code ...
1
vote
0answers
234 views
What is the best way to use the iPhone SDK to 'listen' for incoming data from a server/API?
I'm developing an app that needs almost real-time Send/Receive data from a server.
Say I have 5 users who are watching a Map view and the server issues a request.
I display a dialog over the map and ...
1
vote
0answers
522 views
Importing stored connections from Mysql Gui tools to Mysql Workbench
I've been working with Mysql Gui tools (for 5.0) at work for nearly 2 years and have accumulated about 100 stored connections.
We're now upgrading to use Mysql Workbench 5.3 Community Edition and i'm ...
1
vote
0answers
401 views
Forcing iPhone WWAN interface to wake up when I try to connect to server
Is there an API call I can call to wake up an iPhone's 3G / WiFi connection before connecting a socket to a remote server, short of doing something stupid like loading a webpage using [NSData ...
1
vote
0answers
2k views
Android: UTF-8 encoded HTTP response to String
I am trying to convert a UTF-8 data to String. The UTF-8 data is obtained by HTTP connection.
My problem is the converted String does not display UTF-8 Characters properly.
Here is my code {extra ...
1
vote
0answers
600 views
WCF NetTcpBinding and load balancing
I have two instances of a WCF service exposing NetTcpBinding endpoints in the application tier, which are consumed by the application tier (heavy traffic website). I need to load balanced these ...
1
vote
0answers
192 views
iPhone: POST connection request format error
im using the following code to open a connection
NSString *message = [NSString stringWithFormat:@"body of the message"];
NSURL *url = [NSURL URLWithString:@"sample url"];
NSMutableURLRequest ...
1
vote
0answers
294 views
Tomcat Mysql connection hangs after about 30 minutes
Facts:
1 Tomcat installation , 1 MySql and 2 applications ( app1 and app2 )
Hosted on shared hosting, so most of admin stuff with mysql is not possible
When tomcat is started the applications ( both ...
1
vote
0answers
101 views
TableView - Tab Navigation - Connection Inspector Issue
Hey, I'm very new and im pretty confused.
I have 3 tabs, using my tab navigation template.
News Tab - > RssFunController(view)
MAP - > SecondView
Podcast -> ThirdView
Ok my question is , I ...
1
vote
0answers
43 views
App unable to connect to share after a period of time
I've got a .NET app monitoring a network share and periodically it loses the connection.
The app itself does not send any login info, it runs under the current (Windows) user.
When this happens I ...
1
vote
0answers
243 views
How to re-use a connection with Informix .Net Provider
im new on informix and i did a webservice on .net c# that calls 3 different store procedures. What i like to know is if Informix or .Net opens 3 different connections to execute this procedures or ...
1
vote
0answers
219 views
Java Windows Mobile Application Taking Too Long To Reestablish Network Connectivity
We have a Java application running on the JBed JVM on Windows mobile 6.1.
When it loses connectivity the application is taking a long time (8 - 10 minutes) to re-establish VPN network connectivity, ...
1
vote
0answers
321 views
Display Problem with absolutepanel with gwt-connector
I am trying to use GWT-Connector in one of my classes to create the connection point to the widgets. Here is what i have:
public class Test extends Composite{
RequiredData rd = new RequiredData();
...
0
votes
0answers
8 views
Detect what network the network card is connected to
I need a way to find out what network the network card is connected to so I can change proxy settings according to what network I am connected to in WPF C# 2010.
any suggestions??
0
votes
0answers
4 views
Function to get bytes in & out for an active connection
I'm trying to build a connection table that shows all active connections but i can't find an API function which returns bytes in and bytes out for a single connection. Is there any?
GetTCPStatisticsEx ...
0
votes
0answers
3 views
Minicom no cmd on start up
I am using minicom in cents to try to connect to a cisco router. I did the configuration with minicom -s changed the serial port to the appropriate one /dev/ttyS1. Saved as dfl. and Exit.
When ...
0
votes
0answers
15 views
Android Bluetooth Can't Connect using createRfcommSocketServiceRecord
I already managed to get it working using this method at android 2.3.3 version, but now I am testing using another device with 2.2 version..
And I can find many devices using discovery, but can't ...
0
votes
0answers
16 views
Identify network problems during ajax request with JQuery
I have a question about JQuery.ajax request.
In a nutshell I have an ajax call like the following one:
$.ajax({
url: <MY_URL>,
type: "POST",
data: <MY_DATA>,
...
0
votes
0answers
21 views
ObjectInputStream Blocking socket external ip madness
When I initialize my objectinputstreams, after I have initialized and flushed by objectoutputstreams, I get this:
Client:
java.net.SocketTimeoutException: Read timed out
at ...
0
votes
0answers
29 views
Dreamweaver PHP connection vs. My manual connection?
I have seen what Dreamweaver (I am using CS6) can do for PHP development, and find it to be a great help. I am trying to understand how to work with files that I have hand coded and created a database ...
0
votes
0answers
25 views
Dynamically change the ServerDB name in SSIS connection manager
We have a few 100's of SSIS packages in our environment. Last night we moved our database from one server to another and renamed it. We now need to go into all of packages and change the connection ...
0
votes
0answers
20 views
Android FTPclient: The download abort takes a long time
I want to abort FTP download, via Abort button. I do not know how to stop long operation: retrieveFile . I have tried abort() but it takes a long time, aslo disconnect() will throw IOException error ...
0
votes
0answers
13 views
ios 6 json depending from the bandwidth the connection will be loss during preparing the data for export
I'm using a JSON REST Serve that i have implemented using Delphi
and I'm transferring the Data from our ERP-CRM to the iPad.
So My Question If i have an amount of data so that the Json File is ...
0
votes
0answers
5 views
Has anyone else had MINA shut down a connection after writing to the session?
I have a MINA program that uses NioSocketConnector (client) and NioSocketAdapter (server). Both of these work except when the NioSocketConnector needs to write a response back to the server. When I ...
0
votes
0answers
35 views
SQL change static connection string if there is no connection
I have static class, which return connection string like:
public static string cString()
{
//(...)
string connString = String.empty;
//check if it have to read connString from file or ...
0
votes
0answers
30 views
pyodbc connect to database twice and failed
I'm trying use Python and pyodbc to access SQL server 2008. The first connection works. Then, after the program finishes its job, it closes the connection. When the program tries to access the ...
0
votes
0answers
11 views
How to delay setting db connection until controller method is called in Cake 1.3.15
Taking over someone else's CakePHP project and have run into a problem where the database connection can not be configured until a controller method is called. The reason it can't be determined when ...
