PackageDescription: SSPI


SSPI

Last published: February 21, 2011 by 'klnsrgn'

Defines 8 Classes
Extends 11 Classes


Creates credentials of the logged-on user using the Windows SSPI library. No username/password must be supplied. Also supports integrated proxy authentication (e.g. Microsoft Forefront proxy server). This package is Public Domain.

" Use the SSPI library. Don't add an authentication token to the first request "
HttpClient new
useWindowsAuthenticationClasses;
get: 'http://localhost/protected.html'

" Use a proxy server with integrated authentication "
Net.HttpClient new
useWindowsProxyServer: 'proxy.mydomain.com:8080';
get: 'http://www.esug.org'

" with VW 7.8 it's possible to combine the integerated proxy authentication with a different authentication scheme for the remote server "

Net.HttpClient new
useWindowsProxyServer: 'proxy.mycompany.com';
username: 'tester' password: 'secret';
get: 'http://www.secret.org/protectedsite'