Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 SOAPpy 编写 Web 服务客户端。然而,在定义 WSDL 对象之后,对 Web 服务方法的调用被包装在一个
<v1> .. actual parameters .. </v1>
如何禁用此 v1 标签?
您可以通过在参数调用列表中提供名称来给出标签的名称,即:
server.GetList(GetListRequest = { "order" : "asc" })
然后v1被替换GetListRequest为我最初想要的。
v1
GetListRequest