setExternalNTProxyPassword

void session.setExternalNTProxyPassword ( String password )

Description

Manually set external NT proxy password.

Parameters

  • password Password for the external NT proxy, as a string.

Return Values

Returns void.

Change Log

Version Description
5.0 Added for all editions.

If you are using this method on all of your scripts you might want to set it in screen-scraper's external NT proxy settings.

If you are using NTLM (Windows NT) authentication you'll need to designate settings for both the standard external proxy as well as the external NT proxy.

Examples

Manually Setup External NT Proxy

 // Setup External Proxy
 session.setExternalNTProxyUsername( "guest" );
 session.setExternalNTProxyPassword( "guestPassword" );
 session.setExternalNTProxyDomain( "Group" );
 session.setExternalNTProxyHost( "proxy.domain.com" );

See Also