jsonrpc-cpp-devel Mailing List for JsonRpc-Cpp (Page 3)
Brought to you by:
s-vincent
You can subscribe to this list here.
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(1) |
Nov
(1) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(2) |
Aug
(5) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2012 |
Jan
(3) |
Feb
(9) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(4) |
| 2013 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
|
From: Sebastien V. <seb...@cp...> - 2009-09-29 12:37:09
|
Hi Eric, Just one things. When your answer on a mailing-list, please click "reply to all"... I want JsonRpc-Cpp project to stay simple and lightweight so I prefer to not have a library dependency such as Apache axis2. I know that "reinventing the wheel" could be painful, but I don't think it is too complicated to add HTTP header, manage some HTTP errors code... I heard about someone who wants to build multithreaded servers in JsonRpc-Cpp but never heard of him since many times. Regards, -- Seb On Mon, 28 Sep 2009 10:34:16 -0700, Eric Berryman <eri...@gm...> wrote: > Do you think it would be better to build the whole thing on some sort > of engine, like apache axis2? > This would solve a lot of the connection issues; handling multiple > connections, various headers, etc. > > What do you think? > > Thank you! > Eric > > > > On Wed, Sep 23, 2009 at 8:23 PM, Sebastien Vincent > <seb...@cp...> wrote: >> Hi Eric, >> >> Eric Berryman a écrit : >>> >>> Hello! >>> >>> I'm interested in the HTTP encapsulation (and maybe adding some JSONP >>> support). Has anyone started this? I'm willing to work on this :) >>> >>> >> >> Nobody has begun this feature at my knowledge so go ahead :). >> >> Thanks to contribute to JsonRpc-Cpp. >> >> Regards, >> -- >> Sebastien Vincent >> >>> Thank you! >>> Eric >>> >>> >>> ------------------------------------------------------------------------------ >>> Come build with us! The BlackBerry® Developer Conference in SF, CA >>> is the only developer event you need to attend this year. Jumpstart your >>> developing skills, take BlackBerry mobile applications to market and >>> stay >>> ahead of the curve. Join us from November 9-12, 2009. Register >>> now! >>> http://p.sf.net/sfu/devconf >>> _______________________________________________ >>> Jsonrpc-cpp-devel mailing list >>> Jso...@li... >>> https://lists.sourceforge.net/lists/listinfo/jsonrpc-cpp-devel >>> >> >> >> |
|
From: Sebastien V. <seb...@cp...> - 2009-09-24 03:50:53
|
Hi Eric, Eric Berryman a écrit : > Hello! > > I'm interested in the HTTP encapsulation (and maybe adding some JSONP > support). Has anyone started this? I'm willing to work on this :) > > Nobody has begun this feature at my knowledge so go ahead :). Thanks to contribute to JsonRpc-Cpp. Regards, -- Sebastien Vincent > Thank you! > Eric > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Jsonrpc-cpp-devel mailing list > Jso...@li... > https://lists.sourceforge.net/lists/listinfo/jsonrpc-cpp-devel > |
|
From: Eric B. <eri...@gm...> - 2009-09-23 23:29:51
|
Hello! I'm interested in the HTTP encapsulation (and maybe adding some JSONP support). Has anyone started this? I'm willing to work on this :) Thank you! Eric |
|
From: Sebastien V. <seb...@cp...> - 2009-05-28 14:47:33
|
Hello all, I am proud to announce version 0.2 of JsonRpc-Cpp! Here the ChangeLog: - Batched call support; - Possibility to compile with debug symbols; - Add NetstringException class; - Add simple JSON-RPC TCP and UDP client examples; - Add unit tests (with CppUnit); - Add scons help documentation (scons -h); - Add JsonRpc-Cpp version in jsonrpc.h; - Support for MS Windows (MinGW only); - Add JsonCpp installation howto. Here things to do for those who are motivated to contribute: - Implement a ClientTransactionManager for JSON-RPC client. This object would manage retransmissions, check if server response correspond to a precedent query, ... - HTTP/CGI encapsulation; - Multithreaded server; - Anything you think good to JsonRpc-Cpp. Best regards, -- Sebastien Vincent |
|
From: Andrew R. <an...@gr...> - 2009-05-22 15:11:53
|
I'm playing around with the jsonrpc-cpp library, and like it a lot. However, one of the issues is that it seems to be single-threaded. A delay or block whilst handling a request will cause other requests to be delayed. This could be a problem if you need to go back to a database for each request and have multiple clients connecting. Is there a plan to implement a multi-threaded version of this? I'm currently investigating ways in which I could multi-thread this myself, probably using an existing threading TCP server as a base. Andrew |