Reputation: 443
we would like to test our secure websocket (i.e wss) end point. I am looking for easy tool to test the endpoint. is there browser plugin available for wss protocol?
Upvotes: 7
Views: 12200
Reputation: 22011
AutobahnTestsuite is an automated WebSocket protocol test suite that supports WSS. It is used by most WebSocket implementors to test their implementations for compliance and interoperability.
The project and third-party Web Application Messaging Protocol (WAMP) clients are also available at: https://crossbar.io/autobahn
Disclosure: I am original author of the testsuite.
Upvotes: 4
Reputation: 1372
I've run into this issue often enough that I finally created my own barebones GUI for testing websockets. It's called Socket Wrench, it supports
It's available for Mac OS X, Windows and Linux and you can get it from here.
Upvotes: 1
Reputation: 443
I used "Simple WebSocket Client" chrome plugin to test wss endpoint. If your websocket is using self signed certificate, you to need add that certificate as a trusted certificated in your browser.
I followed below steps to add the self signed in my chrome browser.
suppose your websocket url is "wss://host1:port1/testSocket" . Then type urls as https:// host1:port1/testSocket and trust the certificate.
Upvotes: 8