EditLive! 9 Documentation : setHttpLayerManager Method

This function has been removed in EditLive 9.1. The "default" Oracle/Sun layer is used for all HTTP connections.

 

This property specifies the way in which Ephox EditLive! manages HTTP interactions. 

Syntax

Visual Basic Script
object.HttpLayerManager = httpLayer
ASP.NET
prefix:EditLiveJava HttpLayerManager = httpLayer
JavaScript
editliveInstance.setHttpLayerManager(httpLayer);

Parameters

httpLayer

A string specifying the HTTP connector responsible for managing HTTP requests generated from EditLive!. The accepted HTTP connectors are:

  • default
  • apache

The default value is default.  The default HTTP upload manager is provided by Oracle's Java implementation.

Examples

The following code would specify that the HTTP connector is set to default.

VBScript
editlive1.HttpLayerManager = "default"
ASP.NET Server Control
<elj:EditLiveJava 
  ...
  HttpLayerManager="default" 
  ... 
/>
JavaScript
editlivejs.setHttpLayerManager("default");

Remarks

The following is a list of the possible HTTP connectors used to manage HTTP interactions:

  • default
    Oracle's URL class HTTP connector.
  • apache
    HTTP connector created by Ephox using an Apache implementation.