CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2001
    Posts
    28

    Question accessing remote machine thru firewall

    I want to connect to remote machine thru firewall using socket class at particular port number.

    Does any one how to implement this in C#?
    WebProxy class can be used only for HTTP requests.
    But I need regular socket connection thru firewall.

    Thanks
    Srini

  2. #2
    Join Date
    Dec 2000
    Location
    Slovakia
    Posts
    1,043
    Look at:

    System.Net
    System.Net.Sockets

    namespaces and especially at Socket, TcpClient and TcpListener classes...

    It is in the MSDN...

  3. #3
    Join Date
    Nov 2002
    Location
    Singapore
    Posts
    1,890
    very well said, Martin, as I agree you always I agree here also,
    TCP.. classes are for that only, .NET remoting will also help in that case.

    thanx Martin,
    -Paresh

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured