我认为在使用C#客户端使用Google App Engine Web服务时遇到了问题。我使用的Google App Engine代码is here。这就是服务器上的python脚本的样子:
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
import logging
from StringIO import StringIO
import traceback
import xmlrpclib
from xmlrpcserver import XmlRpcServer
class Application:
def __init__(self):
pass
def getName(self,meta):
return 'example'
class XMLRpcHandler(webapp.RequestHandler):
rpcserver = None
def __init__(self):
self.rpcserver = XmlRpcServer()
app = Application()
self.rpcserver.register_class('app',app)
def post(self):
request = StringIO(self.request.body)
request.seek(0)
response = StringIO()
try:
self.rpcserver.execute(request, response, None)
except Exception, e:
logging.error('Error executing: '+str(e))
for line in traceback.format_exc().split('\n'):
logging.error(line)
finally:
response.seek(0)
rstr = response.read()
self.response.headers['Content-type'] = 'text/xml'
self.response.headers['Content-length'] = "%d"%len(rstr)
self.response.out.write(rstr)
application = webapp.WSGIApplication(
[('/xmlrpc/', XMLRpcHandler)],
debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
客户端(在Python中)是这样的:
import xmlrpclib
s = xmlrpclib.Server('http://localhost:8080/xmlrpc/')
print s.app.getName()
使用Python客户端从Google App Engine中检索值没有任何问题,但我在使用C#客户端检索值时遇到了困难。当我尝试从网络请求404 method not found
时,我得到的错误是GetResponse
。
这是我的代码
var request = (HttpWebRequest)WebRequest.Create("http://localhost:8080/xmlrpc/app");
request.Method = "GET";
request.ContentLength = 0;
request.ContentType = "text/xml";
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse) //404 method not found error here.
{
}
编辑:对于终点,我尝试过:
但没有效果
我认为一定是网址错了,但我不知道怎么做对。有什么想法吗?
答案 0 :(得分:1)
我想发生的事情是您使用HttpWebRequest发送的请求缺少实际内容;这应该是你的xml格式的rpc方法信息。请检查以下代码是否适合您;它应该向http://localhost:8080/xmlrpc/发送请求并将生成的xml转储到控制台中。
// send request
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://localhost:8080/xmlrpc/");
request.Method = "POST";
request.ContentType = "text/xml; encoding=utf-8";
string content = "<?xml version='1.0'?><methodCall><methodName>app.getName</methodName><params></params></methodCall>";
byte[] contentBytes = System.Text.UTF8Encoding.UTF8.GetBytes(content);
request.ContentLength = contentBytes.Length;
using (Stream stream = request.GetRequestStream())
{
stream.Write(contentBytes, 0, contentBytes.Length);
}
// get response
WebResponse response = request.GetResponse();
XmlDocument xmlDoc = new XmlDocument();
using (Stream responseStream = response.GetResponseStream())
{
xmlDoc.Load(responseStream);
Console.WriteLine(xmlDoc.OuterXml);
}
希望这有帮助,尊重
答案 1 :(得分:1)
除了here发布的优秀答案外,还可以使用xml-rpc.net来完成这项工作。
这是服务器端的代码,假设getName现在采用string
参数:
def getName(self,meta, keyInput):
return keyInput
这将是C#客户端代码,通过使用xml-rpc.net:
[XmlRpcUrl("http://localhost:8080/xmlrpc")]
public interface IMath : IXmlRpcProxy
{
[XmlRpcMethod("app.getName")]
string GetName(string number);
}
public string GetName(string keyInput)
{
var mathProxy = XmlRpcProxyGen.Create<IMath>();
mathProxy.Url = "http://localhost:8080/xmlrpc/";
return mathProxy.GetName(keyInput);
}
希望这有助于每个努力让rpc从C#客户端调用GAE的人。
答案 2 :(得分:0)
端点的App Engine应用程序中的正则表达式正好是'/ xmlrpc /',这是您在Python测试中使用的,但是在您的C#客户端中,您使用的是'/ xmlrpc / app',这是没有映射到任何东西。