如何从C#调用Google App Engine上的方法

时间:2010-04-01 15:10:09

标签: c# google-app-engine

我在我的帐户中有一个应用程序,我想从客户端应用程序调用一个接受int编号并返回一个int数字(int someMethod(int someVar))的方法,该应用程序必须用C#编写。

2 个答案:

答案 0 :(得分:4)

在AppEngine应用程序中调用方法所需要做的就是将其公开为应用程序处理的URL。您的C#应用​​程序可以使用WebRequest向该URL发出请求。

答案 1 :(得分:1)

WebRequest wr = WebRequest.Create(Your method URL);

您可以使用HTTP Analyzer之类的程序进行网址。

wr.Headers.add(headerName, value); //the same as in HTTP Analyzer show;      

WebResponse response =  wr.GetResponse();