gpt4 book ai didi

java - 使用 XLedger 的 SOAP/WSDL 接口(interface)时遇到问题

转载 作者:太空宇宙 更新时间:2023-11-03 18:52:46 26 4
gpt4 key购买 nike

我不知道如何使用这个 WSDL interface 。我对 WSDL(以及一般的 SOAP)经验为零。

这一切完全超出了我的想象。我的案例如下。我有一个网络应用程序,它使用 REST 接口(interface)与后端进行通信。后端需要与提到的 WSDL 接口(interface)进行通信,以向 Web 应用程序提供其请求的信息。

所以

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

我想我需要一个针对 SOAP 新手的教程。现在有太多差距,我无法从文章中推断来构建我需要的内容。或者也许有帮助的 SO 成员可以向我展示一些示例代码来帮助我入门?

更具体地说,我对 GetTimesheetEntriesData 感兴趣以及它提供的属性。我只是希望能够调用 getter 并将数据发送到 Web 应用程序(在智能手机上运行)。

我什至不确定我在这里问的问题是否正确,但如何使用 WSDL 界面获取用户时间表数据?

[编辑]

这是身份验证的界面:https://ws.xledger.net/WS/Common/Lib/Authentication.asmx?WSDL

最佳答案

好吧,我明白了。我必须利用suds首先。

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)

关于java - 使用 XLedger 的 SOAP/WSDL 接口(interface)时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17921860/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com