1
vote
0answers
13 views
Ajax Push Engine (APE) - Sockets question
I was looking into APE and they have a socket library that creates a socket server. Is there a tutorial on how to go about creating this so that the socket server is always running? and how well does …
2
votes
2answers
45 views
Forcing a WWAN connection on iPhone, even when Wi-Fi is available
I need to make a network connection over WWAN (i.e. the mobile network) on an iPhone, even when the device is connected to a Wi-Fi network, however I can't find a way to do this.
I've tried going …
1
vote
3answers
40 views
C#: How do I terminate a socket before Socket.BeginReceive calls back?
I have a server that receives connection requests from clients. This server makes use of the asynchronous Socket.BeginReceive and Socket.EndReceive method. The code is pretty similar to the code found …
1
vote
3answers
42 views
inter-process communication on local machine using socket in perl and c#
Hi:
I am working on a c# application that spawn new Processes to run Perl programs:
I was wondering if there is a way to use socket interface to let perl program to talk to c# application. If using …
0
votes
1answer
18 views
Capture Raw NIC IO from .NET Socket as a .NET BitArray
Hi all,
I want to master certain raw protocols to learn about TCP Stream resuming.
I am versed in .Net sockets, and would like to initiate a TCP stream so:
Socket socket = new Socket(Tcp)
…
1
vote
4answers
395 views
What is weblogic.socket.Muxer?
Does any of you understand what weblogic.socket.Muxer is used for in WebLogic 8.1?
Often in thread dumps I see stack traces similar to this:
"ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" …
1
vote
3answers
50 views
C# Socket, time elapsed during sending
Hello.
I'd like to know if there was a way to know the time elapsed during the travel of a data on the network.
For example, I send a packet from computer A to computer B and C (so elapsed time …
1
vote
3answers
151 views
Is there performance penalty on managed code when reading/writing high data volume on TCP/UDP socket compare to unmanaged code?
Do you think C# TCP/UDP socket use in the managed application can handle (roughly) same amount of data as native C++ version? If not, what is data amount we shall consider native or c# is better to …
1
vote
2answers
75 views
C/Python Socket Performance?
Hi, my question simply relates to the difference in performance between a socket in C and in Python. Since my Python build is CPython, I assume it's similar, but I'm curious if someone actually has …
1
vote
2answers
61 views
Fail to open a socket for multicast
Hi,
I have problems to open an multicast socket in Erlang to receive messages:
88> gen_udp:open(5353,[{reuseaddr, true}, {ip,{224,0,0,251}},{multicast_ttl,4},{multicast_loop,false},binary]).
…
0
votes
1answer
50 views
[python] How do I disable Nagle’s algoritm for sockets?
Hi!
I'm writing some python and are stuck at the moment.
I think this "Nagle algoritm" is the problem since my packages are delayed some time for some reason to the client.
I've tried this on both …
1
vote
1answer
31 views
CSocket Server get the client IP Address
How can I get the ip address of a client when he tries to connect to the server?
I'm using CSocket class.
1
vote
1answer
53 views
Connecting 2 different sub neted computers.
How do I connect 2 different subnet’ed computers? For example sake let’s say the following:
192.168.1.92 connected to externally visible 222.251.155.20.
192.168.1.102 connected to externally visible …
1
vote
1answer
36 views
sendto() crashes with error code “Success”
My problem is quite infuriating, actually. I'll show you the code first.
/*
** listener.c -- a datagram sockets "server" demo
*/
//Original Code: Brian Hall (beej@beej.us)
//Commented and modified by …
1
vote
2answers
51 views
Performance of sockets vs pipes
I have a Java-program which communicates with a C++ program using a socket on localhost. Can I expect to gain any performance (either latency, bandwidth, or both) by moving to use a native OS pipe? …
