External Proxy Settings
Overview
If you are already going through a proxy server, screen-scraper must be told the credentials in order to get out to the internet. These methods are all provided to manually tell screen-scraper how to get through your external proxy.
If you always go through the same external proxy you would probably want to set the credentials in screen-scraper's proxy settings so that you don't have to specify them in all of your scrapes.
getExternalNTProxyDomain
string session.getExternalNTProxyDomain ( )
Description
Retrieve the external NT proxy domain.
Parameters
This method does not receive any parameters.
Return Values
Returns the external NT domain, as a string.
Change Log
Version |
Description |
5.0 |
Added for all editions. |
Examples
Log External NT Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalNTProxyUsername( ) );
session.log( "Password: " + session.getExternalNTProxyPassword( ) );
session.log( "Domain: " + session.getExternalNTProxyDomain( ) );
session.log( "Host: " + session.getExternalNTProxyHost( ) );
See Also
getExternalNTProxyHost
string session.getExternalNTProxyHost ( )
Description
Retrieve the external NT proxy host.
Parameters
This method does not receive any parameters.
Return Values
Returns the external NT host, as a string.
Change Log
Version |
Description |
5.0 |
Added for all editions. |
Examples
Log External NT Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalNTProxyUsername( ) );
session.log( "Password: " + session.getExternalNTProxyPassword( ) );
session.log( "Domain: " + session.getExternalNTProxyDomain( ) );
session.log( "Host: " + session.getExternalNTProxyHost( ) );
See Also
getExternalNTProxyPassword
string session.getExternalNTProxyPassword ( )
Description
Retrieve the external NT proxy password.
Parameters
This method does not receive any parameters.
Return Values
Returns the external NT password, as a string.
Change Log
Version |
Description |
5.0 |
Added for all editions. |
Examples
Log External NT Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalNTProxyUsername( ) );
session.log( "Password: " + session.getExternalNTProxyPassword( ) );
session.log( "Domain: " + session.getExternalNTProxyDomain( ) );
session.log( "Host: " + session.getExternalNTProxyHost( ) );
See Also
getExternalNTProxyUsername
string session.getExternalNTProxyUsername ( )
Description
Retrieve the external NT proxy username.
Parameters
This method does not receive any parameters.
Return Values
Returns the external NT username, as a string.
Change Log
Version |
Description |
5.0 |
Added for all editions. |
Examples
Log External NT Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalNTProxyUsername( ) );
session.log( "Password: " + session.getExternalNTProxyPassword( ) );
session.log( "Domain: " + session.getExternalNTProxyDomain( ) );
session.log( "Host: " + session.getExternalNTProxyHost( ) );
See Also
getExternalProxyHost
string session.getExternalProxyHost ( )
Description
Retrieve the external proxy host.
Parameters
This method does not receive any parameters.
Return Values
Returns the external host, as a string.
Change Log
Version |
Description |
5.0 |
Available for all editions. |
Examples
Log External Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalProxyUsername( ) );
session.log( "Password: " + session.getExternalProxyPassword( ) );
session.log( "Host: " + session.getExternalProxyHost( ) );
session.log( "Port: " + session.getExternalProxyPort( ) );
See Also
getExternalProxyPassword
string session.getExternalProxyPassword ( )
Description
Retrieve the external proxy password.
Parameters
This method does not receive any parameters.
Return Values
Returns the external password, as a string.
Change Log
Version |
Description |
5.0 |
Available for all editions. |
Examples
Log External Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalProxyUsername( ) );
session.log( "Password: " + session.getExternalProxyPassword( ) );
session.log( "Host: " + session.getExternalProxyHost( ) );
session.log( "Port: " + session.getExternalProxyPort( ) );
See Also
getExternalProxyPort
string session.getExternalProxyPort ( )
Description
Retrieve the external proxy port.
Parameters
This method does not receive any parameters.
Return Values
Returns the external port, as a string.
Change Log
Version |
Description |
5.0 |
Available for all editions. |
Examples
Log External Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalProxyUsername( ) );
session.log( "Password: " + session.getExternalProxyPassword( ) );
session.log( "Host: " + session.getExternalProxyHost( ) );
session.log( "Port: " + session.getExternalProxyPort( ) );
See Also
getExternalProxyUsername
string session.getExternalProxyUsername ( )
Description
Retrieve the external proxy username.
Parameters
This method does not receive any parameters.
Return Values
Returns the external username, as a string.
Change Log
Version |
Description |
5.0 |
Available for all editions. |
Examples
Log External Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalProxyUsername( ) );
session.log( "Password: " + session.getExternalProxyPassword( ) );
session.log( "Host: " + session.getExternalProxyHost( ) );
session.log( "Port: " + session.getExternalProxyPort( ) );
See Also
setExternalNTProxyDomain
void session.setExternalNTProxyDomain ( String domain )
Description
Manually set external NT proxy domain.
Parameters
- domain Domain 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
setExternalNTProxyHost
void session.setExternalNTProxyHost ( String host )
Description
Manually set external NT proxy host/domain.
Parameters
- host Host/domain 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
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
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" );
See Also
setExternalProxyHost
void session.setExternalProxyHost ( String host )
Description
Manually set external proxy host/domain.
Parameters
- host Host/domain for the external 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 proxy settings.
Examples
Manually Setup External Proxy
// Setup External Proxy
session.setExternalProxyUsername( "guest" );
session.setExternalProxyPassword( "guestPassword" );
session.setExternalProxyHost( "proxy.domain.com" );
session.setExternalProxyPort( "80" );
See Also
setExternalProxyPassword
void session.setExternalProxyPassword ( String password )
Description
Manually set external proxy password.
Parameters
- password Password for the external 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 proxy settings.
Examples
Manually Setup External Proxy
// Setup External Proxy
session.setExternalProxyUsername( "guest" );
session.setExternalProxyPassword( "guestPassword" );
session.setExternalProxyHost( "proxy.domain.com" );
session.setExternalProxyPort( "80" );
See Also
setExternalProxyPort
void session.setExternalProxyPort ( String port )
Description
Manually set external proxy port.
Parameters
- port Port for the external 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 proxy settings.
Examples
Manually Setup External Proxy
// Setup External Proxy
session.setExternalProxyUsername( "guest" );
session.setExternalProxyPassword( "guestPassword" );
session.setExternalProxyHost( "proxy.domain.com" );
session.setExternalProxyPort( "80" );
See Also
setExternalProxyUsername
void session.setExternalProxyUsername ( String username )
Description
Manually set external proxy username.
Parameters
- username Username for the external 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 proxy settings.
Examples
Manually Setup External Proxy
// Setup External Proxy
session.setExternalProxyUsername( "guest" );
session.setExternalProxyPassword( "guestPassword" );
session.setExternalProxyHost( "proxy.domain.com" );
session.setExternalProxyPort( "80" );
See Also