Sending JSON with socket_send_string URScript command

Hi Stefan,

in a similar case I sent my values to a python daemon which did the json job and the request.

You could convert your message to bytes and send it in a loop:
=> socket_send_byte(value, socket_name=’socket_0’)

or as byte string
=> socket_send_line(str, socket_name=’socket_0’)

On receiving side prepare your json. Iam not sure if you could escape characters in urscript