In the past, I have had experience calling WCF services or ASMX services, you just add service reference to the .svc or .asmx url and it generates the proxy for you, and then you have intellisense for calling the methods.
Is it the same for a non .net webservice?
I need to call this
http://www.earthtools.org/webservices.htm
from c# code in a winrt app, but I just dont know how
If you have WSDL then you can add reference to that service. but here you try to call REST service.
you need to send post request and rad the response as:
example from here.