Tagged Questions
The reconnect tag has no wiki summary.
7
votes
2answers
6k views
Is there any way to have the JBoss connection pool reconnect to Oracle when connections go bad?
We have our JBoss and Oracle on separate servers. The connections seem to be dropped and is causing issues with JBoss. How can I have the JBoss reconnect to Oracle if the connection is bad while we ...
5
votes
1answer
85 views
How to reconnect when the LDAP server is restarted?
I have a situation where through a Java program, I create a javax.naming.ldap.LdapContext and do a search() operation on it - which makes an underlying connection. Then I put the Java app thread to ...
3
votes
1answer
123 views
Reliably reconnect to the server TCPClient C#
I am having trouble reconnection a TCPClient (actual class name from C#) to its server, is there a well defined way of doing this? Do I need to manage the tcp connection at the server as well if a ...
3
votes
1answer
301 views
WCF Publish / Subscribe: How to handle client side timeout so as not to miss information?
I have a simple WCF publish/subscribe up and running, based on this example. I am using netTcpBinding with reliableSession enabled. Everything works fine with the functionality (the subscribed clients ...
3
votes
5answers
2k views
PHP mysqli reconnect problem
I am having trouble using the mysqli class in PHP and I haven't been able to find the answer anywhere.
In my script a class creates a mysqli connection that it uses throughout it's functions. ...
2
votes
1answer
539 views
TcpClient Auto-Reconnect
What is the best way to make a Tcpclient auto reconnect to the server when
it's disconnected (e.g. by the server itself)?
The code I'm currently using is:
public void ClientWork()
{
...
2
votes
1answer
182 views
Implementing Re-connect Strategy using Ruby Net
I'm developing a small application which posts XML to some webservice.
This is done using Net::HTTP::Post::Post. However, the service provider recommends using a re-connect.
Something like:
1st ...
1
vote
1answer
25 views
Client-server persists connection, do i need to re-connect and re-logging every time the iPhone locked?
Im developing an iPhone app with client-server design, the server manage client connection with sockets and keep an array of all the currently connected clients.
This way i get persists connection ...
1
vote
0answers
48 views
How can I disconnect and reconnect to new Bluetooth device automatically?
I need to send a message to Bluetooth device (phone), and after that disconnect and send the message to another phone.
I tried the Bluetooth chat but there seems to be a conflict when I reconnect ...
1
vote
1answer
237 views
Using joyGetPosEx fails when switching joystick USB port
I am using the "joyGetPosEx" function to detect the joystick inputs:
JOYINFOEX joyInfoEx;
ZeroMemory(&joyInfoEx, sizeof(joyInfoEx));
joyInfoEx.dwSize = sizeof(joyInfoEx);
// poll for values
...
1
vote
1answer
333 views
How To modify Eclipselink JPA 2.0 connection retry behavior
How To modify Eclipselink JPA 2.0 connection retry behavior .
Eclipselink automatically tries to reconnect it self to database whenever it detects a connection failure this causes swing ui to freeze ...
1
vote
1answer
223 views
mysqli.reconnect = ON changed connection encoding?
how to prevent switching the connection encoding by reconnect? Everything of my settings are utf-8, but since I have enabled this function in php.ini of the cli ... I have tested anything ... and when ...
1
vote
4answers
2k views
hibernate c3p0 broken pipe
I'm using hibernate 3 with c3p0 for a program which constantly extracts data from some source and writes it to a database.
Now the problem is, that the database might become unavailable for some ...
0
votes
1answer
49 views
GAE channel API reconnect
I'm working on a chat application on top of GAE and its Channel API. I have studied the doc and the provided examples, also looked through some of the answers around here, still I don't feel like I ...
0
votes
1answer
22 views
Detecting eventmachine disconnections and testing for reconnect
I'm trying to build a system ontop of event machine that will detect when a TCP connection has failed and will test to see if a reconnect can be fired. I've gone through all of the eventmachine code ...
0
votes
0answers
52 views
MySQL's auto-reconnect in django
How do you set the behavior of MySQL's automatic reconnection behavior in django?
I'm assuming this is a client side configuration, correct?
0
votes
0answers
48 views
mysqli.reconnect will it re-run the query which failed due to a timeout?
Recently I have noticed that mysql connections are timing out, increasing wait_timeout has helped this. However it still happens.
We have also enabled mysqli.reconnect in an attempt to catch the ...
0
votes
0answers
44 views
Can't get XMPPReconnect to work on iOS
Seems like I am settings things up correctly but XMPPReconnect is not kicking in.. Am I missing something?
_xmppReconnect = [[XMPPReconnect alloc] init];
[_xmppReconnect activate:_xmppStream];
...
0
votes
1answer
111 views
BoneCP automatic reconnect
Does BoneCP have any mechanism (i.e. configuration) that will allow an automatic reconnect to a MySQL database if the database has been taken offline and restarted
0
votes
1answer
56 views
How to reconnect a socket when catch a SocketException in java?
I've met a problem that when I process my data on my program, that the server may getoff its socket of my client program, but i need to catch this exception and reconnect it to run my program. i did ...
0
votes
1answer
90 views
socket.io reconnecting when connecting remotely
I copied and deployed the socket.io's demo code (found at http://socket.io/ on the front page).
I have a server.js and a index.html with this demo code
When I run 'node server.js' locally, and then ...
0
votes
0answers
10 views
reconnect to database through windows service
When I reconnect my database through windows service it does not serve the first request but does it through next request. Please let me know how can i furnish first request also.
0
votes
3answers
148 views
mysql reconnect c++
Right now I have a C++ client application that uses mysql.h to connect to a MYSQL database and have to preform some logic in case there is a disconnect. I'm wondering if this is the best way to ...
0
votes
1answer
284 views
Need software to create/run macro to automatically reconnect to the internet
I'm looking for software that will allow me to write a macro/script to get EasyTether to re-connect my Android O/S phone (Ally) to the internet (desktop PC) when the connection gets dropped. The ...
0
votes
1answer
163 views
batch file for sporadic internet connection
i've seen pingers and auto redials when theres a request time out.
problem:
but im having a hard time researching the 'counter or increment' part.
idea:
heres how it should be:
start pinging ...
0
votes
1answer
214 views
PHP: mysql_ping - auto reconnect problem
I'm working with an old but very complex piece of php code, which relies on direct mysql access via mysql_* functions. The code uses mysql_ping extensively, but it assumes each mysql_ping call will ...
0
votes
1answer
219 views
Flex VideoDisplay reconnect after idletimeout
I have a VideoDisplay that is able to connect to a source and play. After the connection times out I want the connection to be re-established when my play button is clicked. Right now when I reset ...
0
votes
1answer
216 views
Event Problem in .NET Remoting
Learning from INGO RAMMER's "Advanced .NET Remoting", I tried to use the following codes for firing events to clients:
foreach (Delegate del in MessageArrived.GetInvocationList())
{
try
{
mah = ...
0
votes
1answer
1k views
Java: reconnection on a socket sometimes gives error
I am making a prototype client & server so that I can understand how to handle reconnects.
The server ought to create a serversocket and listen forever. A client may connect, send its data, and ...