Hi ,
Restsharp support webservice automationtesting like rest .
i want to automation webservice using C# . if Restsharp supports share same sample code.
sample uri : http://currencyconverter.kowabunga.net/converter.asmx
RestClient client = new RestClient("http://currencyconverter.kowabunga.net");
RestRequest request = new RestRequest("/converter.asmx", Method.GET);
request.AddParameter("CurrencyFrom", "USD", ParameterType.GetOrPost);
request.AddParameter("CurrencyTo", "INR", ParameterType.GetOrPost);
request.AddParameter("RateDate", "2018-12-07", ParameterType.GetOrPost);
IRestResponse response = client.Execute(request); //StatusCode: OK, Content-Type: text/html; charset=utf-8, Content-Length: 6651
// JsonDeserializer des = new JsonDeserializer();
XmlDeserializer des = new XmlDeserializer();
var res = des.Deserialize<Dictionary<string, string>>(response); // getting error here like below
System.Xml.XmlException: 'The 'p' start tag on line 108 position 16 does not match the end tag of 'ul'. Line 110, position 17.
Expected result : <decimal xmlns="http://tempuri.org/">70.802040277899920851288365139</decimal>
thanks