HenryK
HenryK

Reputation: 25

Tsung Secure Websockets Support

Can someone give an example xml that configures Tsung to support secure websockets (wss)?
The default documentation doesn't say anything about whether wss is supported or not.

Upvotes: 2

Views: 528

Answers (1)

OuSs
OuSs

Reputation: 444

To support WSS you should specify the server type to be 'ssl':

<servers>
<!-- wss -->
<server host="MY_TARGET_HOST.com" port="443" type="ssl"></server>
</servers>

Upvotes: 4

Related Questions