That error means you are not actually running a websocket-capable server.
Did you add "channels" to INSTALLED_APPS?

Andrew

On Thu, Dec 7, 2017 at 12:03 AM, Maitreya Verma <[email protected]>
wrote:

> I am following this tutorial
> <https://gearheart.io/blog/creating-a-chat-with-django-channels/> to
> learn django channels.
> The following procedure was used :
>
>    - Add the following code in settings.py
>    redis_host=os.environ.get('REDIS_HOST','localhost')
>
>    CHANNEL_LAYERS={
>        "default":{
>            "BACKEND":"asgi_redis.RedisChannelLayer",
>            "CONFIG":{
>                "hosts":[(redis_host),6379],
>            },
>            "ROUTING":'channelproj.routing.channel_routing',
>        },
>    }
>
>    - Create a file routing.py and add the following code
>    from channels import route
>    # This function will display all messages received in the console
>    def message_handler(message):
>        print(message['text'])
>
>    channel_routing = [
>        route("websocket.receive", message_handler),
>    ]
>
>    - run server using python manage.py runserver and then try to connect
>    to server using  ws.connect("ws://localhost:8000/")
>
> I am getting the following error
> websocket._exceptions.WebSocketBadStatusException: Handshake status 200
>
> What can be the reason for this error and how can it be rectified?
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/d560ebbb-242c-4481-b688-42e2d65c112a%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/d560ebbb-242c-4481-b688-42e2d65c112a%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFwN1uqzOi%2BqzANQL%2Bzw%2BZYYQM3YP_xNR631_%3DpDM_oYaej5%3DQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to