Products list

JurikSoft Remote Control Tools
version: 1.0.0

Download - 5 MB

Buy Now! (25$ USD)

JurikSoft Proxy Provider
version: 1.1

Download - 800 KB

Buy Now! (49$ USD)

JurikSoft Compression Library
version:1.1.0

Download - 800 KB

Buy Now! (49$ USD)

JurikSoft Folder Browser
version: 1.1

FREE

Download - 160 ÊÁ
(version with using compiler option
"Use MFC in a Static Library")

Download - 20 ÊÁ
(version with using compiler option
"Use MFC in a Shared DLL")

Author:
jurik@juriksoft.net

Technical support: support@juriksoft.net

Info:
info@juriksoft.net

Sales questions:
sales@juriksoft.net

ICQ 55239911

JurikSoft Proxy Provider 1.1

Download - 800 ÊÁ Buy (49$ USD)

One copy (serial number) entitles to use this software product to one software developers team.

Introduction

JurikSoft Proxy Provider is a .NET component with a set of methods, which allow connection to a certain TCP/IP server through Socks and HTTPS Proxy Servers.

The connection is available through Socks Proxy versions 4, 4a, 5 and HTTPS.

When using JurikSoft Proxy Provider when connecting through Socks Servers versions 4a and 5 and HTTPS server you may indicate the name of computer or domain as a Host.

JurikSoft Proxy Provider can establish connection with an authentication feature with Socks version 5 using “ClearText” method and using Basic authentication with HTTPS Server.

There is also a possibility to set time-out when connecting to a certain server through Proxy Server.

JurikSoft Proxy Provider is a .NET DLL library which is very easy to use. You will need to change not more than 4 or 5 lines of source code.

The Main Point: when using JurikSoft Proxy Provider you will not need to inherit ProxyProvider class, which is a great plus for .NET languages as they do not support Multiple inheritance of classes. You will have to call just one method, using as one of parameters Socket or TcpClient object.

The selected object will be connected to a certain host and will be nitialized in case of necessity.

This .NET component was developed using .NET Framework versions 1.1 and Microsoft Visual Studio .NET 2003.


  • Samples of Code for the Use of JurikSoft Proxy Provider in C#

    TcpClient MyTcpClient;

    JurikSoft.Proxy.ProxyProviderProxyProvider_obj = new JurikSoft.Proxy.ProxyProvider();

ProxyProvider_obj.ConnectThroughSocks5Proxy(ref MyTcpClient, “10.0.0.1”, 80, “10.0.0.5”, 1080, “user”, “password”, false, 10000);

 

  • Conclusion

In case the attempt to connect is successful, MyTcpClient object becomes connected to Host “10.0.0.1” at port 80 through Socks Proxy Server version 5 with address “10.0.0.5” and port 1080 and it is ready to use.