You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The XMLRPC interface seems not being able to transmit non-ascii bytes.
If I have for example a process_name like this "test_öäü", then everything is working (the process is started by the supervisor) but the XMLRPC-method getAllProcessInfo is not usable any more because an exception is raise:xml.parsers.expat.ExpatError: unclosed token: line 67, column 0
It seems, that XMLRPC-XML-response has been cut at the end.
When making an xmlrpc-call in verbose-mode, then I can see this:
The XMLRPC interface seems not being able to transmit non-ascii bytes.
If I have for example a
process_name
like this"test_öäü"
, then everything is working (the process is started by the supervisor) but the XMLRPC-methodgetAllProcessInfo
is not usable any more because an exception is raise:xml.parsers.expat.ExpatError: unclosed token: line 67, column 0
It seems, that XMLRPC-XML-response has been cut at the end.
When making an xmlrpc-call in verbose-mode, then I can see this:
Here we can see clearly that the last three bytes are omitted. (
'e>\n'
)I don't know if the same problem van be observed for python 2...
The text was updated successfully, but these errors were encountered: