我想实例化一个在wsdl中为Python和zeep的soap API定义的匿名类型。 对于非匿名类型,我只需使用像这样的工厂
abcinstance = factory.abc('whatever', part2 = 'goes')
然后将它交给我需要调用的函数
client.service.doSomethingSpecial(abc = abcinstance)
但是这里
abcdinstance = factory.abcd(Entries = ['something', key = 'else'])
不起作用,因为最后一个' ='显然是错误的语法。一个List需要一个位置参数和一个名字只会增加我的困惑。我对Python很不熟悉,但必须有一个简单的方法来解决这个问题,对吧?
修改
因为您无法通过zeep看到生成的代码。 由wsdl.exe在c#:
中生成的相关代码部分 [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "qwertz")]
public partial class abc
{
private abcEntry[] entriesField;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("Entry", IsNullable = false)]
public abcEntry[] Entries
{
get
{
return this.entriesField;
}
set
{
this.entriesField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "qwertz")]
public partial class abcEntry
{
private string keyField;
private string valueField;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string key
{
get
{
return this.keyField;
}
set
{
this.keyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public string Value
{
get
{
return this.valueField;
}
set
{
this.valueField = value;
}
}
}
我需要实例化类abc以将其赋予函数
zeep中的结构有点不同:
abc需要以下内容
签名:Entries: {Entry: {xsd:string, key: xsd:string}[]}