开发者

How to Access REST Service in Jax-RS using PHP

I Developed a REST Service in Jax-RS, and I have some functions that use the POST metho开发者_开发知识库d, like:

  1. Auth_User()
  2. Get_List()
  3. Insert_Data(id,name,data)

I need to access these functions using PHP cURL. What I basically need is to work the functions from the PHP files, so that my REST Service can work like Facebook App development.

how can I do this using cURL?


You can use the CURL library with it's wide range of options to perform GET/POST/HEAD etc. requests that you would need to communicate with your REST server.

As for parsing data, you would have to take a look at either json_decode() if you get json objects back, or e.g. SimpleXml if you need to parse it as XML.

See this site here for a decent example of querying the yahoo REST api in php/curl:

http://developer.yahoo.com/php/tutorials/water_bug_tutorial-making_rest_request.html


There is no such thing as a REST server. The question you are asking is "How do I make an HTTP request from PHP?" What technology the server is implemented with is absolutely irrelevant. At least it should be!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜