Hello,
I've developed a .NET application that, among other things, does the following:
- Uses WebClient to retrieve data from a remote server.
Serves as a socket server to 2 'satellite' applications run on the same machine or on a LAN.
When I run the app in the VS IDE, it works great. It quickly gets the data from the remote server and communicates perfectly with the 2 satellites.
However, when I build it and run it as an EXE, the response from the remote server is very slow and its communication with the 2 satellite applications become very poor.
Is there some important difference between running an app in the IDE and running it as an EXE that could effect it like this?
take care, lee