Web service differences between REST and RPC

后端 未结 9 1277
情歌与酒
情歌与酒 2020-12-07 06:54

I have a web service that accepts JSON parameters and have specific URLs for methods, e.g.:

http://IP:PORT/API/getAllData?p={JSON}

This is

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 07:29

    Over HTTP they both end up being just HttpRequest objects and they both expect a HttpResponse object back. I think one can continue coding with that description and worry about something else.

提交回复
热议问题