Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am getting above exception after approximately 6 hrs or more continuous traffic flow through one of my service. The Service is responsible to listen TCP/IP request and pass those messages to an another componant through a port 5024. At the same time if any response recieved from the componant it conveys the message to the same port.

Any guidence/clue on this will be a great help.
Posted

1 solution

This is the usual message in IPC communication via named pipes when the other side of the channel closes the pipe. It's hard to tell you more about it; you simply need to check up your logic. If you can create a really short testable sample which compiles and manifest this problem (for goodness sake, not all your code), it would not be too hard to solve the problem. If you still have this problem and can prepare the sample application, please post it. Use "Improve question".

You can also sort things out by yourself using Debugger, but it could be tricky. Better yet, log all key points in the communication from both parts in a single event log using System.EventLog. To find out the source of the problem, you need to understand the order of operation as it is supposed to be.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900