5

私のサーバーでは、Python の標準的な例 (追加の Hello World メソッドを使用) を使用しており、クライアント側では C# の XML-RPC.NET ライブラリを使用しています。しかし、クライアントを実行するたびに、メソッドが見つからないという例外が発生します。それを修正する方法についてのアイデア。

ありがとう!

パイソン:

from SimpleXMLRPCServer import SimpleXMLRPCServer
from SimpleXMLRPCServer import SimpleXMLRPCRequestHandler

# Restrict to a particular path.
class RequestHandler(SimpleXMLRPCRequestHandler):
    rpc_paths = ('/RPC2',)

# Create server
server = SimpleXMLRPCServer(("", 8000),
                            requestHandler=RequestHandler)
server.register_introspection_functions()

# Register pow() function; this will use the value of
# pow.__name__ as the name, which is just 'pow'.
server.register_function(pow)

# Register a function under a different name
def adder_function(x,y):
    return x + y
server.register_function(adder_function, 'add')

def HelloWorld():
        return "Hello Henrik"

server.register_function(HelloWorld,'HelloWorld')

# Register an instance; all the methods of the instance are
# published as XML-RPC methods (in this case, just 'div').
class MyFuncs:
    def div(self, x, y):
        return x // y

server.register_instance(MyFuncs())

# Run the server's main loop
server.serve_forever()

C#

namespace XMLRPC_Test
{
    [XmlRpcUrl("http://188.40.xxx.xxx:8000")]
    public interface HelloWorld : IXmlRpcProxy
    {
        [XmlRpcMethod]
        String HelloWorld();
    }
    [XmlRpcUrl("http://188.40.xxx.xxx:8000")]
    public interface add : IXmlRpcProxy
    {
        [XmlRpcMethod]
        int add(int x, int y);
    } 
    [XmlRpcUrl("http://188.40.xxx.xxx:8000")]
    public interface listMethods : IXmlRpcProxy
    {
        [XmlRpcMethod("system.listMethods")]  
        String listMethods();
    } 

    class Program
    {
        static void Main(string[] args)
        {
            listMethods proxy = XmlRpcProxyGen.Create<listMethods>();
            Console.WriteLine(proxy.listMethods());
            Console.ReadLine();
        }
    }
}
4

1 に答える 1

5

宣言をこれに変更すると機能しますか?

[XmlRpcUrl("http://188.40.xxx.xxx:8000/RPC2")]

Python ドキュメントから:

SimpleXMLRPCRequestHandler.rpc_paths

XML-RPC 要求を受信するための URL の有効なパス部分をリストするタプルである必要がある属性値。他のパスに投稿されたリクエストは、404「そのようなページはありません」HTTP エラーになります。このタプルが空の場合、すべてのパスが有効と見なされます。デフォルト値は ('/', '/RPC2') です。

于 2009-10-17T19:47:08.963 に答える