Is there a secure websocket (wss protocol) browser plugin available?

we would like to test a secure websocket endpoint (ie wss). I'm looking for a simple endpoint validation tool. is there a browser plugin for wss protocol?

+3


source to share


2 answers


I used the "Simple WebSocket Client" chrome plugin to test the wss endpoint. If your website uses a self-signed certificate, you need to add that certificate as trusted, certified in your browser.

I followed the below steps to add self signed in my Chrome browser.



Let's assume your websocket url is "wss: // host1: port1 / testSocket". Then enter url as https: // host1: port1 / testSocket and trust the certificate.

+4


source


AutobahnTestsuite is an automatic WebSocket protocol test packet that supports WSS. It is used by most WebSocket developers to test their implementations for compliance and compatibility.



Disclosure: I am the original author of testuite.

+4


source







All Articles