GithubHelp home page GithubHelp logo

Comments (9)

eidheim avatar eidheim commented on August 20, 2024

What OS are you on, and what is the output of running ws_examples?

from simple-websocket-server.

rragu avatar rragu commented on August 20, 2024

I'm using centOS 6.7 64bit

from simple-websocket-server.

bboubaker91 avatar bboubaker91 commented on August 20, 2024

did you check your firewall policy? maybe your system is blocking the connection. did you try to stop your firewall?

from simple-websocket-server.

rragu avatar rragu commented on August 20, 2024

When we run the ws_examples the port gets listened but we could not connect the server . we suspect whether there is no incoming connection or the callback handler is not working (read_handshake)
acceptor.async_accept(*connection->socket, [this, connection](const boost::system::error_code& ec) {
//Immediately start accepting a new connection
accept();
if(!ec)
{
read_handshake(connection);
}
});
There is no firewall blocking in our end,We are using BOOST_LIB_VERSION "1_59.
Your help would be highly appreciated.

Thanks in advance

from simple-websocket-server.

eidheim avatar eidheim commented on August 20, 2024

What client are you using?

from simple-websocket-server.

rragu avatar rragu commented on August 20, 2024

We are using 2 URL's to connect server. Please find below:
chrome-extension://pfdhoblngboilpfeibdedpjgfnlcodoo/index.html
https://www.websocket.org/echo.html

from simple-websocket-server.

eidheim avatar eidheim commented on August 20, 2024

Check the console messages on your browser. I got:

The page at 'https://www.websocket.org/echo.html' was loaded over HTTPS, but attempted to connect to the insecure WebSocket endpoint 'ws://..../echo?encoding=text'. This request has been blocked; this endpoint must be available over WSS.doConnect @ echo.js:111
echo.js:111 Uncaught SecurityError: Failed to construct 'WebSocket': An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.

When loading the page with http instead (http://www.websocket.org/echo.html) I got:

WebSocket connection to 'ws://....:8080/echo?encoding=text' failed: Connection closed before receiving a handshake response

Because of the trailing ?encoding=text I changed the endpoint in ws_examples.cpp to this and it worked:

auto& echo=server.endpoint["^/echo/?.*$"];

from simple-websocket-server.

rragu avatar rragu commented on August 20, 2024

Hi Eidheim,

Great thanks for your help. It works fine now.

But can you help us to connect the server with(ws://...:8080) not with(ws://...:8080/echo?encoding=text). Is there any possibilities to run like this?

from simple-websocket-server.

eidheim avatar eidheim commented on August 20, 2024

That depends on the client, and here you are on your own:) Good luck!

from simple-websocket-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.