0
votes
1answer
15 views
Query related to Connection type BIS-B Socket in Blackberry application
Hi all,
I am trying to establish BIS Socket connection. I am able to establish BIS Http connection from my service provider.
I have downloaded one chat application that checks ne …
1
vote
3answers
70 views
C file transfer question
Hi there,
I implemented a client-server program that allows to transfer files b/w them. The server is using select() to check changes of sockets.
Every test is good except this on …
1
vote
2answers
46 views
How to close a TCP connection by port?
Hi,
I would like to close an existing connection between to application running on my server.
If you have a suggestion please reply on how to program this, you will be appreciated …
1
vote
1answer
35 views
socket “read” hanging if the MacBook sleeps more than 10 minutes
I am writing an app, where a socket is connecting to a host and downloading a file.
The application runs in Mac.
Now, while the app is downloading, if I put the MacBook in sleep m …
2
votes
5answers
160 views
Does Indy support raw TCP sockets on Windows?
I'm a C++ programmer, but my question is about the Delphi network socket library Indy.
Essentially as Microsoft crippled raw sockets with WinXP SP2 so that TCP data cannot be sent …
0
votes
2answers
43 views
How to create simple C# Binary socket server (Not WCF!) (Simplest Way To Open and Use a Socket in C# ?)
How to create simple C# Binary socket server (Not WCF!)
Who knows the Simplest Way To Open and Use a Socket in C# (Not with WCF)?
What do I need? I need -
Open Source Libs
…
0
votes
1answer
18 views
Send reply to broadcast with a Socket
I'm trying to send a broadcast and then let the server reply to it:
public static void SendBroadcast()
{
byte[] buffer = new byte[1024];
var socket = new Socke …
0
votes
2answers
48 views
Python MultiThreading With Urllib2 Issue
I can download multiple files quite fast with many threads at once but the problem is that after a few minutes it tends to slow down gradually to almost a full stop, I have no idea …
2
votes
2answers
93 views
Writing memory to socket in chunks in C
Hi, I'm attempting to write memory contents to a socket in chunks. I can write files that are smaller than my buffer, but anything else and I'm in deep water.
/* allocate memory f …
0
votes
0answers
16 views
Some Async Socket Code - Help with Garbage Collection?
Hi all,
I think this question is really about my understanding of Garbage collection and variable references. But I will go ahead and throw out some code for you to look at.
// …
1
vote
3answers
82 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: 'weblo …
0
votes
5answers
132 views
Networking in C/C++?
I am a begginer C++ programmer. In C#, I used the System.Net.Sockets.Socket class, which represents a networking socket, to create/connect a server. How can I do the same thing in …
0
votes
2answers
61 views
Receiving order of socket
Hi,
I am using socket to send data from local machine to remote in TCP, stream mode.
The code in the local side is :
// ----------- Local
send(sd, pData, iSize, 0); // send data …
1
vote
2answers
70 views
Flash as a socket gateway for javascript
hi everyone,
i just completed a web based chat application based on ajax/php. But the problem with this app is that it has to continuously poll server to check for new messages, …
0
votes
0answers
28 views
strange java socket problem on windows
I've a strange problem with a java server application running on a windows machine;
sometimes the SocketChannel I just obtained by ServerSocketChannel.accept immediately returns an …
