So i have a assignment to write some REST client calls to a REST web service which does not exist.
To work around it i created a mock web service using Jersey. But i am not sure what technology the actual REST service would use.
Please advise on what technology should i use to send down the REST calls to the server.
Also if possible also give me a sample of how to send down a XML GET request to the REST service.
Thanks much for the help.
REST is HTTP. You can use anything that sends HTTP requests:
It’s just an HTTP GET request. How it’s built/generated/sent depends on what library and programming language you’re writing the client in. But the actual request itself would look something like this: