| connectionid1 |
Data Type: (ECMAScript Expression) |
Default: Required |
Unsupported Attribute
The connectionid attribute defines an ECMAScript string value that identifies the first connection to be merged. If this attribute holds an invalid value, then an error.semantic event will be thrown. |
| connectionid2 |
Data Type: (ECMAScript Expression) |
Default: Required |
Unsupported Attribute
The connectionid attribute defines an ECMAScript string value that identifies the second connection to be merged. If this attribute holds an invalid value, then an error.semantic event will be thrown. |
| hints |
Data Type: (ECMAScript Expression) |
Default: Optional |
The hints attribute can be used to specify information used by the platform to configure the event processor. The value of this attribute should equate to an object that contains an array property of "headers"; for instance:
<script>
var Hints = new Object();
Hints.headers = new Object();
Hints.headers['x-mySipHeader'] = 'hello world';
</script>
Note that 'hints.headers' stores what headers to add to the sip request, and that only headers starting with an 'x-' prefix are sent. |