On 9/16/2014 8:07 AM, Ed Judge wrote:
> On Tuesday, September 16, 2014 12:56:33 AM UTC-4, Kevin McMurtrie wrote:
>> In article <54178a93$0$300$
1472...@news.sunsite.dk>,
>> Arne Vajhøj <
ar...@vajhoej.dk> wrote:
>>> On 9/15/2014 8:48 PM, Ed Judge wrote:
>>>> Looking for a good tutorial/coding examples on writing a JSON RPC
>>>> server in Java. There seems to be a couple of different options but
>>>> none that I have seen provide a concrete working example (there is
>>>> always something that is missing). Can anyone suggestion good
>>>> webpage? I don't care what package I use at this point. Something
>>>> that is easy an simple to get running would be greatly appreciated.
>>>
>>> You should use something JAX-RS compliant.
>>>
>>> Maybe that already ships with your server.
>>>
>>> If not then get either RESTEasy for Jersey.
> Do these suggestions _easily_ integrate into an RPC mechanism? The ones I saw include:
>
> jsonrpc4j
> json-rpc
> java-json-rpc
> lib-json-rpc
> simplejsonrpc
> gson-rmi
>
> On the client side I am using "Go". On the server side I want to use Java.
> To give you an idea of what I am looking for and have found for Go:
>
>
http://jan.newmarch.name/go/rpc/chapter-rpc.html
>
> This provides a nice easy concrete example of how to make use of JSON RPC. That is all I am looking for from Java. Kind of like "Hello world" example but for JSON RPC.