Suds 性能 - client.factory.create() 需要 2 分钟以上
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.