setExternalNTProxyUsername
void session.setExternalNTProxyUsername ( String username )
Description
Manually set external NT proxy username.
Parameters
- username Username 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" );
session.setExternalNTProxyUsername( "guest" );
session.setExternalNTProxyPassword( "guestPassword" );
session.setExternalNTProxyDomain( "Group" );
session.setExternalNTProxyHost( "proxy.domain.com" );
See Also
- getExternalNTProxyUsername() [session] - Gets the external NT proxy username
- setExternalNTProxyDomain() [session] - Sets the external NT proxy domain
- setExternalNTProxyHost() [session] - Sets the external NT proxy host
- setExternalNTProxyPassword() [session] - Sets the external NT proxy password
scraper on 07/16/2010 at 5:20 pm
- Printer-friendly version
- Login or register to post comments