How do i connect to any restful webservice
using C#
I have the below information about the webservice
The BASE_URL
is the URL
at which the WebServices
are hosted. This BASE_URL
is then followed by the required GROUP
name, and then the required METHOD
name.
For example,
BASE_URL = https://www.abcd.com/ws/
GROUP = transaction
METHOD = createTransaction
This would give a complete URL of :
https://www.abcd.com/ws/transaction/createTransaction
Every invocation must contain the following parameters (as POST variables) :
Name
username
password
pin
Please help me with some link to achieve the coding.