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