Android Question [SOLVED] Redpin ? Rest API ?

lemonisdead

Well-Known Member
Licensed User
Longtime User
Hello,
Please does someone have any idea how to communicate with a Redpin server (redpin.org). I have read that it is a Rest API, they have Eclipse sample project but I can't understand how to communicate with the server.
Thanks for any information
 

lemonisdead

Well-Known Member
Licensed User
Longtime User
I would like to add more information about my previous post : I know what a Rest request is. And I was able to check if the server is receiving the information.

But what I can't get is this :
- if I do a GET request for example sending {"action":"getMapList"} to http://server : port / {"action":"getMapList"} the server gets the request but returns nothing
- so my question about any information is to check if I do it correctly
 
Upvote 0

JordiCP

Expert
Licensed User
Longtime User
Just guessing from a similar case using SOAP, depending on the message structure and server implementarion, there's sometimes in the header a "ReplyTo" and/or "From" field. So, the answer doesn't go to the packet's sender but to the address pointed by this field.
 
Upvote 0

lemonisdead

Well-Known Member
Licensed User
Longtime User
Thanks a lot Jordi, you were right. Many thanks for your help
 
Upvote 0
Top