Thomas Calmant
Thomas Calmant
I'm trying to solve it with a full rewrite of the parsing implementation. See the [Core Rewrite](https://github.com/tcalmant/python-javaobj/projects/1) project for more information
Hi, I've tried with both implementations of JavaObj and with `jdeserialize`, and your file is not readable by any of them. The issue is: ```array type listed, but typecode is...
If I understand correctly, you want to transmit the serialized object as a `String`. The ISO-8859-1 encoding should indeed ensure to have the equivalent of the underlying bytes without conversion...
That's good to know :) Note that the main purpose of javaobj is to read data written from "foreign" Java software without requiring the execution, not even the installation, of...
I've just made a small test and reproduced this error. ``` python ==Oops state dump============= References: [[net.centersight.model.datapoint.DatapointBean:0x1], 'Ljava/lang/Integer;', 'Ljava/lang/String;', 'Ljava/lang/Long;', 'Ljava/lang/Boolean;', 'Ljava/util/Date;', 'Lnet/centersight/model/datapoint/DatapointValueBean;', [net.centersight.model.NodeBean:0x1], 'Lnet/centersight/model/NodeBean;', 'Ljava/lang/Double;', 'Ljava/util/List;', 'Ljava/util/TimeZone;', , [java.lang.Long:0x3B8BE490CC8F23DF],...
Just a comment to tell you I haven't forget about this issue ;) So far, I've found that this might be due to the way `java.sql.Timestamp` is serialized. Its parent...
I haven't tested it, but as it is based on the xmlrpclib transport classes, it should support basic auth as is, using the `http://user:pass@host:port/path` URL format. (again: not tested). Else,...
In this case, you have to handle the basic authentication in the request handler. You can take a look at [this blog post](http://acooke.org/cute/BasicHTTPA0.html) to see how it could be implemented...
First try to implement an asyncio server is a success, using [`aiohttp`](https://aiohttp.readthedocs.io/) as the underlying HTTP server. Here are the tasks to implement the asynchronous server: - [x] Extract the...
The first version of the asynchronous request handler has been pushed on the [`protocol_extract`](https://github.com/tcalmant/jsonrpclib/tree/protocol_extract) branch. A draft of documentation have also been pushed, with a snippet to start the server...