1

このWSDL インターフェースを使用する方法がわかりません。私は WSDL (および一般的な SOAP) の経験がありません。

それはすべて私の頭の上に完全に行きます。私の場合は以下です。REST インターフェイスを使用してバックエンドと通信する Web アプリがあります。バックエンドは、Web アプリが要求する情報を Web アプリに提供するために、前述の WSDL インターフェースと通信する必要があります。

そう

[Client] <-- REST --> [Server] <-- SOAP --> [XLedger]

完全な SOAP 初心者を対象としたチュートリアルが必要だと思います。現在、ギャップが多すぎます。記事から推測して、必要なものを構築することはできません。または、役立つ SO メンバーがサンプル コードを見せてくれるのでしょうか?

具体的に言うと、 GetTimesheetEntriesDataとそれが提供する属性に興味があります。ゲッターを呼び出して、データを Web アプリ (スマートフォンで実行) に送信できるようにしたいだけです。

ここで正しい質問をしているのかどうかもわかりませんが、WSDL インターフェイスを使用してユーザーのタイムシート データを取得するにはどうすればよいでしょうか。

[編集]

認証用のインターフェースは次のとおりです: https://ws.xledger.net/WS/Common/Lib/Authentication.asmx?WSDL

4

1 に答える 1

1

わかりました。私は最初にを使わなければなりませんでした。

import httplib
import urllib2 as u2
from suds.transport.http import HttpTransport


class HTTPSClientAuthHandler(u2.HTTPSHandler):
    def __init__(self, key, cert):
        u2.HTTPSHandler.__init__(self)
        self.key = key
        self.cert = cert

    def https_open(self, req):
        # Rather than pass in a reference to a connection class, we pass in
        # a reference to a function which, for all intents and purposes,
        # will behave as a constructor
        return self.do_open(self.getConnection, req)

    def getConnection(self, host, timeout=300):
        return httplib.HTTPSConnection(host, key_file=self.key, cert_file=self.cert)


class HTTPSClientCertTransport(HttpTransport):
    def __init__(self, key, cert, *args, **kwargs):
        HttpTransport.__init__(self, *args, **kwargs)
        self.key = key
        self.cert = cert

    def u2open(self, u2request):
        """
        Open a connection.

        @param u2request: A urllib2 request.
        @type u2request: urllib2.Request.
        @return: The opened file-like urllib2 object.
        @rtype: fp
        """
        url = u2.build_opener(HTTPSClientAuthHandler(self.key, self.cert))
        if self.u2ver() < 2.6:
            return url.open(u2request)
        else:
            return url.open(u2request, timeout=self.options.timeout)
.
.
.
def consume_soap():
    from suds.client import Client
    from datetime import date
    from calendar import monthrange

    transport = HTTPSClientCertTransport('auth/key_no_passphrase.pem', 'auth/cert.pem')
    client = Client(XLedgerInterface.WSDL_EXPORT_PATH, transport=transport)
    year = date.today().year
    month = date.today().month
    first_date = str(date(year, month, 1))
    last_date = str(date(year, month, monthrange(year, month)[1]))
    xml = client.service.GetTimesheetEntriesData(sUserName=XLedgerInterface.USER_ID,
                                                 sKey=XLedgerInterface.KEY,
                                                 sApplication=XLedgerInterface.APPLICATION_NAME,
                                                 iEntityCode=XLedgerInterface.ENTITY_CODE,
                                                 dDateFrom=first_date,
                                                 dDateTo=last_date,
                                                 sFreeText='',
                                                 sFilter='',
                                                 eOption="Open")
    return self._get_as_json(xml)
于 2013-08-05T13:49:28.453 に答える