>
>
> Did you try the example on
>
> http://code.google.com/p/tryton/wiki/RemoteCalls#XML-RPC_in_Python
>
>
> I am having the same issue. I am not exactly sure how that example relates
to a JSON-RPC call
I have tried to POSTing the following to localhost:8000/try
{method:"sever.version",id:1,params:[]}
and I receive a 500 internal error as a response. But in the trytond log
file there is no errors
I also tried posting this and got the same error ...
{method:"system.listMethods",id:1,params:[]}
The tryton client works fine in this respect nut how does a trace translate to
something to be posted ? Like what does the following translate to ?
INFO:tryton.rpc:common.server.version(None, None)
I would assume that this is translated to :
{method:"common.server.version",id:1,params:['','']}
but it just gives the same 500 error code..
Hellafrustrated atm
Nz