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" );
session.setExternalProxyUsername( "guest" );
session.setExternalProxyPassword( "guestPassword" );
session.setExternalProxyHost( "proxy.domain.com" );
session.setExternalProxyPort( "80" );
See Also
- getExternalProxyPort() [session] - Gets the external proxy port
- setExternalProxyHost() [session] - Sets the external proxy host
- setExternalProxyPassword() [session] - Sets the external proxy password
- setExternalProxyUsername() [session] - Sets the external proxy username
scraper on 07/16/2010 at 5:20 pm
- Printer-friendly version
- Login or register to post comments