Suds 性能 - client.factory.create() 需要 2 分钟以上

发布于 2024-09-15 10:48:35 字数 398 浏览 4 评论 0原文

我正在使用 Suds 在 Python 中发送/接收 SOAP 消息。创建一个通过肥皂信封发送的对象需要花费非常长的时间。

client = Client(wsdldict['Contact'], faults=True, headers=session) #takes ~5 seconds
lq1=client.factory.create("ns1:ListOfContactQuery") #takes ~130 seconds

WSDL 文件相当大(1MB),但我不知道这是否是问题所在。 Suds 性能是否会在某个点崩溃?

I'm using Suds to send/receive SOAP messages in Python. It is taking an insanely long time to create an object to send via the soap envelope.

client = Client(wsdldict['Contact'], faults=True, headers=session) #takes ~5 seconds
lq1=client.factory.create("ns1:ListOfContactQuery") #takes ~130 seconds

The WSDL file is fairly large (1MB) but I do not know if that is the issue or not. Does Suds performance breakdown at a certain point?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待圉鍢 2024-09-22 10:48:35

SUDS 性能在大型 WSDL 文件上确实会崩溃。我之前在使用 Citrix NetScaler SOAP API 时也经历过同样的事情。

如果您能够将 WSDL 过滤为所需命令的子集、将文件存储在磁盘上并在本地加载,或者利用 SUDS 的缓存功能,那么您可以在创建新客户端时显着增加处理时间。

SUDS performance does breakdown on large WSDL files. I have experienced this same thing before with the Citrix NetScaler SOAP API.

If you are able to filter your WSDL into a subset of required commands, store the file on disk and load it locally, or make use of SUDS' caching functionality, you can dramatically increase this processing time when creating a new client.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文