During try use of an example there can be following problems:

- If you do not wish to be connected through Default ProxyServer (or it is not installed in IE) then:
  in code wsClientDlg.h change constant DEFAULT_PROXY to FALSE i.e.
#define DEFAULT_PROXY			FALSE
In addition you can redefine properties:
    RemoteHost = "MyNotDefaultProxyServer" 	// As String
    RemotePort = <MyNotDefaultProxyServerPort>	// As Integer
   (i.e. in resource designer for IDD_WSCLIENT_DIALOG select control IDC_WSDMURCTRL1 by the mouse, and by calling on the right botton propery sheet (Properties...) on tab Control) according to your desires.

- If yours ProxyServer requires authorization (i.e. you receive 407 error during attempt of fulfilment):     
  correct the code in wsClientDlg.h according to your settings.
#define USE_PROXY_AUTHORIZATION	TRUE
#define UID_PWD				_T("dWlkOnB3ZA==") //<- proxyUID:proxyPWD (in Base64 coding)
Pay attention, that the string constant UID_PWD should contain value in format - MypPoxyUID:MyProxyPWD and in the coding Base64. Therefore is necessary to take advantage of any external utility, for example, taken on http://www.planet-source-code.com/xq/ASP/txtCodeId.1710/lngWId.3/qx/vb/scripts/ShowCode.htm  At me, on http://vfpdev.narod.ru/util_e.html is the compilated version of this code - YBase64.zip (54,3KB)

Best regards.
Michael Drozdov, ICS Soft, Perm, Russia
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Mailto:Drozdov@ics.perm.su
My Page:  http://vfpdev.narod.ru/
ICS Page: http://ics.perm.ru/ [on Russian]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~