jaisanas

jaisanas

Jason.DecodeError on Phoenix Websocket with Cowboy2

Hi guys i have implemented websocket to my phoenix app. Before it success to connected and joined room to my websocket, but right now i got this error

[error] Ranch listener MarketPlaceDisbursementServiceWeb.Endpoint.HTTP had connection process 
started with :cowboy_clear:start_link/4 at #PID<0.499.0> exit with reason: {%Jason.DecodeError
{data: "{   \"topic\": \"room:marketplace_disbursement_service\",   \"event\": \"inquiry_response\", 
  \"payload\": {},   \"ref\": 0 }", position: 2, token: nil}, [{Jason, :decode!, 2, [file: 'lib/jason.ex', line: 78]}, {Phoenix.Socket.V1.JSONSerializer, :decode!, 2, [file: 'lib/phoenix/socket/serializers/v1_json_serializer.ex',
 line: 29]}, {Phoenix.Socket, :__in__, 2, [file: 'lib/phoenix/socket.ex', line: 498]}, '{Phoenix.Endpoint.Cowboy2Handler, :websocket_handle, 2, [file: 'lib/phoenix/endpoint/cowboy2_handler.ex', line: 77]}, {:cowboy_websocket, :handler_call, 6, [file: 
'/Users/jaisanas/work/backend/deps/cowboy/src/cowboy_websocket.erl', line: 471]}, {:cowboy_http, :loop,
 2, [file: '/Users/jaisanas/work/backend/deps/cowboy/src/cowboy_http.erl', line: 233]}, {:proc_lib, 
:init_p_do_apply, 3, [file: 'proc_lib.erl', line: 249]}]}

and here is my mix.exs file:

      {:phoenix, "~> 1.4.0"},
      {:phoenix_pubsub, "~> 1.1"},
      {:phoenix_ecto, "~> 4.0"},
      {:ecto_sql, "~> 3.0"},
      {:postgrex, ">= 0.0.0"},
      {:gettext, "~> 0.11"},
      {:jason, "~> 1.0"},
      {:plug_cowboy, "~> 2.0"},
      {:httpoison, "~> 1.4"},
      {:poison, "~> 3.1"}

On this thread github said that i have to delete rm -rf _build. But it still return error, anyone have a clue how to solve this error ?

Most Liked

NobbZ

NobbZ

<<194, 160>> is U+00A0, a no breaking space.

According to RFC 7159 it is not valid whitespace:

      ws = *(
             %x20 /              ; Space
             %x09 /              ; Horizontal tab
             %x0A /              ; Line feed or New line
             %x0D )              ; Carriage return
jaisanas

jaisanas

Hi guys, thanks for yor help, finally i have found the solution. The problem is my jason contains tab character. So what i have to do is just clear any additional character like newline or tab from:

"{   \"topic\": \"room:marketplace_disbursement_service\",   \"event\": \"inquiry_response\",   \"payload\": {},   \"ref\": 0 }"

to this one:

"{\"topic\":\"room:marketplace_disbursement_service\",\"event\":\"inquiry_response\",\"ref\":0}"

and it works , thanks guys for helping me that the problem is jason

kip

kip

ex_cldr Core Team

That does look like a bug if Jason doesn’t accept 0x09 as whitespace character. The JSON standard certainly suggests it should be valid. Perhaps submit a bug report?

It seems discourse replaces the 0x09 with space characters which is why my copy/paste of your snippet parsed ok.

OvermindDL1

OvermindDL1

Copy/pasted what you put and it works fine:

iex()50> a = "    {    \"a\": \"first\"    , \"b\": \"last\",        \"c\": {}        }"
"    {    \"a\": \"first\"    , \"b\": \"last\",        \"c\": {}        }"
iex()51> Jason.decode(a)
{:ok, %{"a" => "first", "b" => "last", "c" => %{}}}

Throwing in some random tabs is still fine too:

iex()52> a = " \t   {  \t  \"a\": \t\"first\"  \t  ,\t \"b\": \"last\",     \t   \"c\": {} \t
 }"
" \t   {  \t  \"a\": \t\"first\"  \t  ,\t \"b\": \"last\",     \t   \"c\": {} \t       }"
iex()53> Jason.decode(a)
{:ok, %{"a" => "first", "b" => "last", "c" => %{}}}

Are you ‘sure’ your IDE/sublime is not adding in some weird invalid unicode stuff or so? What if you take your not-working json string and assign it to a then run this:

inspect(a, binaries: :as_binaries)

What is the result of that please? :slight_smile:

jaisanas

jaisanas

it returns like below:

"<<123, 32, 194, 160, 194, 160, 34, 116, 111, 112, 105, 99, 34, 58, 32, 34, 114, 111, 111, 109, 58, 109, 97, 114, 107, 101, 116, 112, 108, 97, 99, 101, 95, 100, 105, 115, 98, 117, 114, 115, 101, 109, 101, 110, 116, 95, 115, 101, 114, 118, ...>>"

Where Next?

Popular in Questions Top

Tee
can someone please explain to me how Enum.reduce works with maps
New
lessless
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
ycv005
I have followed this StackOverflow post to install the specific version of Erlang. And When I am running mix ecto.setup then getting fol...
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
mathew4509
I have a list say x = ["23gh", "56kh", "97mh"] I would like to pass each element to Val in each iteration. Say, in iteration 1 -------...
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID&lt;0.412.0&gt; terminating ** (Postgrex.Error) FATAL...
New
jay1
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
idi527
I’ve been re-reading swift book again and noticed that multiline strings there don’t have a trailing line break, unlike in elixir iex(2)...
New

Other popular topics Top

JDanielMartinez
Hi! May someone helps me, please! I have two apps into an umbrella project: the first one is Database, which manages queries, and the se...
New
peerreynders
Manning 2016 Halloween weekend sale via Deal of the Day Friday, October 28 - Half off all MEAPs - code WM102816LT Saturday, October 29 ...
326 29600 154
New
sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
977 41022 311
New
vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
lessless
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
grych
Hi folks, Few months ago I have announced the proof-of-concept of the library to manipulate the browsers DOM objects directly from Elixi...
639 49522 488
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
AstonJ
We’ve put together this wiki for Phoenix LiveView - please feel free to add any info you feel is worth including. What is Phoenix LiveV...
New

We're in Beta

About us Mission Statement