You need to explain what you mean by calling, but you can definitely use the web client to send an HTTP request to the remote URL and get the result:
using (var client = new WebClient())
{
string result = client.DownloadString("http://example.com/yoursevletaddress");
}
source
share