Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 30 Next »

Refresh page Apr 23, 2024 06:46

Supported Clients
SmartClient WebClient NGClient

Methods Summary
HttpClient createNewHttpClient() Create an http client (like a web browser with session binding) usable todo multiple request/posts in same server session.
Array getMediaData(url) Get media (binary data) such as images in a variable.
String getPageData(url) Get all page html in a variable, if this url is an https url that uses certificates unknown to Java then you have to use the HttpClient so that smart client users will get the unknown certificate dialog that they then can accept or you must make sure that those server certificates are stored in the cacerts of the java vm that is used (this is required for a web or headless client)

Methods Details

createNewHttpClient()

Create an http client (like a web browser with session binding) usable todo multiple request/posts in same server session.
Make sure you call client.close() on it after you used this client object to clean up resources.

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var client = plugins.http.createNewHttpClient();

getMediaData(url)

Get media (binary data) such as images in a variable. It also supports gzip-ed content.
If this url is an https url that uses certificates unknown to Java
then you have to use the HttpClient so that smart client users will get the unknown certificate dialog that they then can accept
or you must make sure that those server certificates are stored in the cacerts of the java vm that is used (this is required for a web or headless client)

Parameters

String url ;

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

var image_byte_array = plugins.http.getMediaData('http://www.cnn.com/cnn.gif');

getPageData(url)

Get all page html in a variable, if this url is an https url that uses certificates unknown to Java
then you have to use the HttpClient so that smart client users will get the unknown certificate dialog that they then can accept
or you must make sure that those server certificates are stored in the cacerts of the java vm that is used (this is required for a web or headless client)

Parameters

String url ;

Returns

Supported Clients

SmartClient,WebClient,NGClient

Sample

// get data using a default connection
var pageData = plugins.http.getPageData('http://www.cnn.com');

  • No labels