1
Answer

Telnet Application Help Needed... Desperatly...

Administrator

Administrator

22y
2.6k
1
Anyone have a good example of connecting to a remote server via telnet and keeping the connection open, sending and receiving data back and forth until one side or the other drops connection. Alot of the basic Socket examples show connect and disconnect, nothing that actually stays connected. I want to write a telnet application that works like a windows telnet application or any other for that matter. Thanks
Answers (1)
0
sathish kumar

sathish kumar

NA 9 4.2k 9y
Hi Praveen, 
 Thanks for your reply. 
   But in my situation,  it is not a DLL Hell Problem because am creating 2 dlls  at a time with a different name and different functionality and also in this dlls are not added in Registry Editor, it's saved only my application folder.
   I want Add Reference from A DLL to B DLL.
 
   public virtual Tuple<bool, string> isValid(Dynamic_Val_001)
   {
      return new Tuple<bool, string>(false, "Success");
   }
 
Dynamic_Val_001  is A DLL Class Name 
 
    
 
 
0
Praveen Dhatrika

Praveen Dhatrika

NA 840 2.1k 9y
To my understanding I think its like DLL HELL problem.
 
This kind of scenerio is generally termed as dllhell problem. 
Here is what it is,
 
1. I have 2 applications, A1 and A2 installed on my computer.

2. Both of these applications use shared assembly shared.dll

3. Now, I have a latest version of Application - A2 available on the internet.

4. I download the latest version of A2 and install it on my machine.

5. This new installation has over written Shared.dll, which is also used by Application - A1.

6. Application - A2 works fine, but A1 fails to work, because the newly installed Shared.dll is not backward compatible.

So, DLL HELL is a problem where one application will install a new version of the shared component that is not backward compatible with the version already on the machine, causing all the other existing applications that rely on the shared component to break. With .NET versioning we donot have DLL HELL problem any more.
 
also go through these links 

http://csharp-video-tutorials.blogspot.com/2012/07/dll-hell-part-6.html
http://venkataspinterview.blogspot.co.uk/2011/05/what-is-dll-hell-in-net.html 
http://csharp-video-tutorials.blogspot.com/2012/07/how-is-dll-hell-problem-solved-part-7.html
http://venkataspinterview.blogspot.co.uk/2011/06/how-is-dll-hell-problem-solved-in-net.html 

 If you find my post as useful then accept my reply as answer. :)