An endpoint of a bidirectional inter-process communication flow. This often refers to a process flow over a network connection, but by no means is limited to such.

learn more… | top users | synonyms (3)

1
vote
2answers
105 views

App Engine: Keep Socket Open more than 2 Minutes

Using the App Engine Trusted Tester Sockets to connect to APNS. Writing to socket works fine. But the problem is that the Socket gets reclaimed after 2 minutes of inactivity. It says in the Trusted ...
0
votes
2answers
12 views

Connecting to a serversocket from internet to a system connected to internet via LAN

I want to connect to a server which is connected to internet via LAN. So in the client side i need to write code like new Socket("i dont know the ip",PORT_NO) Here which ip address should i give? ...
0
votes
2answers
24 views

recvmsg return error(EBADF) when communicate between two processes using socketpair?

I'm developing a program which do IPC's call between two processes.I create two socket fd using socketpair: int fds[2] = {-1,-1}; if (socketpair(AF_LOCAL, SOCK_STREAM, 0, fds)) { return NULL; } ...
0
votes
2answers
75 views

TCP/IP connection between ubuntu (C) and windows (Java)

I'm trying to establish a TCP/IP communication between a server in C running in ubuntu 12.04 and a client in Java (EJS) running in Win7. The server is a thread of a greater program, so it's created ...
5
votes
1answer
70 views

Prevent an app from binding to a socket that is already bound

How to prevent a Java app from binding to a socket that another process is already bound to on Windows? I have an issue where I have a Java application that is listening on port 80. The application ...
1
vote
1answer
27 views

nodejs - How to test whether remote socket is open

I am creating a socket pass through inspector. Basically, I start up a socket server (net.createServer) and a socket client (net.connect). For testing purposes, I do not have a endpoint socket ...
1
vote
1answer
201 views

MAMP - phpMyAdmin #2002 - Can't connect to local MySQL server through socket '/Applications/MAMP/tmp/mysql/mysql.sock'

I was working on MAMP phpMyAdmin and everything worked well until i query an ALTER TABLE statement from SQL tab. Operation was too long to end so i decided to refresh my page. From this time, i cannot ...
0
votes
1answer
22 views

Socket tcp c# how to clear input buffer?

I'm writing an application for windows phone and I need to communicate with a server and transmit data. The SERVER is written in C++ and I cannot modify it. The CLIENT is what I have to write. The ...
0
votes
1answer
18 views

Hibernate & Tomcat - won't close socket

When I keep sending http requests to my webserver, it stops responding and I'm stuck in a white screen saying, 'waiting for xxx'. It goes unresponsive. Also I don't see any exception on stacktrace. I ...
6
votes
0answers
679 views

Error Domain=NSPOSIXErrorDomain Code=61 “The operation couldn\u2019t be completed. Connection refused”

I am using asyncSocket as client side, aim running my application on I-Phone simulator, and the server side coded with C#. its working perfectly if i try to connect with a server on my LAN but the ...
5
votes
0answers
315 views

How to split received with boost asio udp sockets united datagrams

I've made my UDP server and client with boost::asio udp sockets. Everything looked good before I started sending more datagrams. They come correctly from client to server. But, they are united in my ...
4
votes
0answers
274 views

Equivalent of poll() or WSAPoll() for sockets in D

For socket programming in D, is there an equivalent of poll() (or WSAPoll() on windows)? I'm hoping to write a small single-threaded server. I know technically you can call C functions from D and ...
4
votes
0answers
969 views

NSPOSIXErrorDomain Code=61 “The operation couldn’t be completed. Connection refused”

I have a strange problem sending more than one file on FTP server via WiFi network in a specific environment. I use my own, self-made ftp client (made on sockets). When I test the transfer sending ...
4
votes
0answers
576 views

What are the limits of using sockets for Inter-Process Communication?

I am creating a Firefox extension that allows using Standard ML (SML) as a client-side programming language in Firefox. The way it works is the following: The extension launches a PolyML process ...
3
votes
0answers
269 views

Akka Socket per actor

Using Scala with Akka IO is there a way to have an Actor strictly for listening and then when a connection is established create a new actor that will then be responsible for that Socket (Reading, ...
3
votes
0answers
1k views

UDP multicast group on Windows Phone 8

Ok this is one i've been trying to figure out for a few days now. We have an application on Windows Phone 7 where phones join a multicast group and then send and receive messages to the group to talk ...
3
votes
0answers
122 views

Slower HTTP 1.0 Communication on Windows Embedded Compact 7 (Formerly CE)

on Windows Embedded Compact 7 (Formerly CE) I have a much slower performance responsing to HTTP 1.0 requests than on older Windows CE versions (4.0 and 5.0). On Windows CE 5.0 I have about 10 ms to ...
3
votes
0answers
279 views

Android socket & HTTP response headers

The funny thing is: I may have accidentally found the solution for Is it possible to send HTTP request using plain socket connection and receive response without headers?. I hope I'm overlooking ...
3
votes
0answers
562 views

Android application working on WIFI and 3G(Without proxy), but not working on 3G(If proxy and port are assigned)

I am facing some weird problem, Only my application is not working when I switch to 3G service(With proxy) but it is working great in WIFI and 3G(without proxy). Default proxy and port given by my ...
3
votes
0answers
518 views

UDP Broadcasting not working on same machine in windows 8

Hi guys I am developing an application in which broadcasting is essential. I have created two projects Client and server. I am able to send broadcast message but I am not receiving in server project. ...
3
votes
0answers
129 views

Technology for app like teamviewer on android

I am troubling what technologies was used/should be used on an app like teamviewer. I am thinking about an application for android which can auto record any action on the screen of android device, ...
3
votes
0answers
230 views

What does setting NSStreamNetworkServiceTypeBackground “do under the hood”?

I have an in-house app (not for iPhone store distribution, so not subject to Apple approval) which needs to keep a handful of TCP and UDP sockets bound while it is running. While testing I have ...
3
votes
0answers
214 views

BHO installation and not loading with IE, not connecting to desktop through socket

We have a small C# application that have unified login system implemented. BHO in internet explorer picks the url to see if the url is registered otherwise asks User to register their credentials with ...
3
votes
0answers
449 views

Android - How to capture RTP packet

I can view the streaming video from Darwin Streaming Server on Android using VideoView class. I just need to get the sequence number field in an RTP packet to measure Packet Loss Rate. Could you ...
3
votes
0answers
318 views

XPCOM Socket is closing. How to keep it alive?

I'm currently developing a firefox add-on that is a client who connects using TCP sockets to a server. In my little test everything works ok, the client(ff add-on) connects to the server(designed in ...
3
votes
0answers
703 views

Python SSL communication hangs on read, then issues an error 54 - connection reset by peer

I'm making a web services call to a Microsoft CRM web service using Python/suds/python-ntlm, and my call to the service is blocking on an SSL read. The CRM service provider provides both a testing and ...
3
votes
0answers
397 views

parallel-python error: RuntimeError(“Socket connection is broken”)

I am using a simple program to send a function: import pp nodes=('mosura02','mosura03','mosura04','mosura05','mosura06', 'mosura09','mosura10','mosura11','mosura12') nodes=('miner:60001',) def ...
2
votes
0answers
31 views

How Xcode can follow child process on debug mode?

I'm trying to implement multiple process server in C. I'd like to check child process step by step. But on default debug mode, I have no choice to follow parent process, calling fork function. And ...
2
votes
0answers
32 views

After appengine enabled outgoing TCP socket in sdk 1.7,7,will it be possible to establish a JDBC Connection?

https://developers.google.com/appengine/docs/java/sockets/overview Will it be possible to connection to amazon rds through mysql jdbc connector in gae now?
2
votes
0answers
47 views

Streaming audio over a bluetooth socket

I need to stream audio over Windows sockets to a bluetooth headset. I am able to make socket connection to the Bluetooth headset using RFCOMM and A2DP / Headset profile / Hands-free profile. My ...
2
votes
0answers
40 views

Message Broker or ESB?

I have a system that relies on sockets to provide callback capabilities for a gaming system. For failover and scalability, it is possible for a user to be attached to one socket while another user on ...
2
votes
0answers
44 views

Is there any way to find a printer status using java socket program?

Is there are any way to find a printer status using java socket program? This program need to identified printer status. such as Printer ON/OFF/IDEAL. Current Job. Paper level in try. toner leave. ...
2
votes
0answers
70 views

Cursor waits in the wrong window

I am developing a simple chat. The chat client is based on ncurses, and has two window: The "input" window, where users enter messages. The "output" window, where users see messages by other users. ...
2
votes
0answers
104 views

Phonegap UDP sockets?

Is there, by any chance, possible to setup UDP sockets for a Phonegap app? By any available plugin or such? It has to be compatible with Android and iPhone. I know TCP are available through Web ...
2
votes
0answers
86 views

Boost::ASIO cannot write back to client from server

I have a couple questions regarding Boost ASIO. I'm running into a problem where my clients can connect to a server, and asynchronously send data, but cannot receive anything back. The async_write ...
2
votes
0answers
60 views

Android-App consume to much energy. Sockets maybe the reason

In my app I use a datagramSocket, one serversocket and several sockets. When my app runs on my android-device, the phone get hot on one area and it needs lots of energy. I think the reason for the ...
2
votes
0answers
71 views

How to close server socket?

I have multi-threaded application that is using server socket. This is an Android application. Now, since network interface change (WiFi to Ethernet and vice versa) causes IP to change, I need to ...
2
votes
0answers
39 views

What is the proper way to transmit text through WebSockets?

I'm developing a Web application using WebSockets, so at some point I need to send a text file to the web browser (chrome in this case), but chrome just calls onerror without giving me any clue about ...
2
votes
0answers
180 views

Receive broadcast message on Android

First - sorry for my English, I'm not "native writer". I'm sending broadcast message in C++, and want to receive it on Android device. I created such code: ...
1
vote
0answers
69 views

GCDAsyncSocket write timeout does not work

I am trying to set a timeout on write operations when using GCDAsyncSocket. The code is pretty simple and is the following. [iAsyncSocket writeData:bytesToSend withTimeout:3.0 tag:0]; Then I ...
1
vote
0answers
531 views

Bouncy Castle Example Source Needed

Hi I'm looking for some source-code or good documentation on Bouncy Castle's SSL/TLS functions. I need this also to the client side for Java. I have looked everywhere and read books on the subject ...
0
votes
0answers
6 views

Connection refused on client and server, both are on MAC

I am using Mac book and having client and server running on same machine. Server opens socket whenever it has to send command to Client. Problem is Client opens socket at startup but whenever server ...
0
votes
0answers
13 views

socket connection reseting after client disconnect

Good day all I have a java server which can support multiple clients via threads. But after my first client disconnects my server restarts and and keeps on restarting. Here is my code for the server ...
0
votes
0answers
14 views

Event based non blocking client connection

I need to write a smtp client program that will open multiple smtp sockets , each connecting to a smtpd server (non blocking) in a single thread/process and simultaneously send mails to each server ...
0
votes
0answers
4 views

Unable to dial using rild-debug?

Im trying to use dial using rild-debug socket. but when im doing it sometimes the modem crash occurs and other times rild crash occurs. Im unable to get through the problem even after disabling the ...
0
votes
0answers
11 views

socket_connect does not timeout

I am using sockets to send data to a server that may not be responding. So I am trying to define a timeout by using this solution in SO. Make PHP socket_connect timeout socket_set_option($socket, ...
0
votes
0answers
12 views

PHP socket_recv detect disconnect from server

I've posted below the entire bot's source code, with edited values for passwords and such. My bot for IRC works great, doesn't disconnect for the most part... but after 2-3 days, the bot hangs ...
0
votes
0answers
48 views

Android Bluetooth connecting to Device socket.connect() wont connect

FIXED!!! Didnt work because of the UUID since api15 you can use a get function to get the uuid UID uuid = bluetoothDevice.getUuids()[0].getUuid(); BluetoothSocket socket = ...
0
votes
0answers
69 views

TCPConnection refusing connection

I have a standard Client/Server model and the server successfully binds but the Client can not connect and keeps saying the connection has been refused. (stacktrace above client code) I have put my ...
0
votes
0answers
400 views

Login failure Android Telnet source code issue

I am having an issue with this telnet app I am working on. I would need a little help on what I might be doing wrong or what could be corrected. I want this app to open a telnet connection to a ...

1 2 3 4 5 77