我正在使用Django和Python进行开发,我需要使用带有2个操作的SOAP发布1个服务。为此,我选择了spyne库:
http://spyne.io/#auxproc=Sync&s=aux
因为显然很容易理解并开始发展。我做了第一个例子,很好,甚至我用我的内部逻辑开发了我自己的方法。现在我需要开发其他最特别的功能。我目前的代码是:
class SopoSoap(ComplexModel):
__namespace__ = 'http://service/service.wsdl'
_type_info = {
"field1": Integer(min_occurs = 1),
"field2": Integer(min_occurs = 1),
"field3": Unicode(min_occurs = 1),
"field4": Unicode(min_occurs = 1),
"field5": Unicode(min_occurs = 0),
}
class NewIncidenceService(ServiceBase):
@rpc(SopoSoap, _returns=Integer)
def NewIncidence(sop):
# my differetns operations in code
return a.pk # integer value
application = Application([NewIncidenceService],
tns=http://service/service.wsdl',
in_protocol=Soap11(validator='lxml'),
out_protocol=Soap11(cleanup_namespaces=True)
)
createSop_app = csrf_exempt(DjangoApplication(application))
使用此代码,一切都很好,我生成的wsdl就是这个:
<wsdl:definitions xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:tns="http://localhost/DEMAT/DEMAT_IncidenceManagement/service.wsdl" xmlns:plink="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:xop="http://www.w3.org/2004/08/xop/include" xmlns:soap12env="http://www.w3.org/2003/05/soap-envelope/" xmlns:senc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:senv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap12enc="http://www.w3.org/2003/05/soap-encoding/" targetNamespace="http://localhost/DEMAT/DEMAT_IncidenceManagement/service.wsdl" name="Application">...</wsdl:definitions>
现在我需要这些改变:
首先,如果我尝试这个来源:
class ResponseData(ComplexModel):
message = Unicode
codResultado = Integer
class CreateIncidenceService(ServiceBase):
@rpc(SopoSoap, _returns=ResponseData)
def NewIncidence(sop):
try:
# operations
return ResponseData
我从未收到过我的服务器的答案(Apache与django - wsgi.py),我需要更改rpc装饰器?返回的类型,我在哪里可以找到傻瓜文档的一个很好的例子?
二。这个对我来说非常重要,我需要更改wsdl中特定元素的名称,例如:
<xs:complexType name="NewIncidenceResponse">
or this others:
<wsdl:message name="NewIncidence">
<wsdl:part name="NewIncidence" element="tns:NewIncidence"/>
</wsdl:message>
<wsdl:message name="NewIncidenceResponse">
<wsdl:part name="NewIncidenceResponse" element="tns:NewIncidenceResponse"/>
</wsdl:message>
名称,只有名称,我想这应该是这么简单,因为在Java或.net中你可以毫无问题地更改这些参数的名称,但是这个库我不知道怎么办它?
三,我想返回一个带有3个字段的结构的complexType:
a)代码 b)消息 c)异常:在这里我不知道如何将异常返回给wsdl。
对于我在我创建的responseData类中考虑的这三个字段,但是我无法返回这种类型的数据。我知道我问的是3个问题,但我正在阅读所有spyne的文档,但我找不到任何问题。
答案 0 :(得分:1)
首先,感谢Spyne的尝试!
数目:
尝试
return ResponseData(codResultado=1234, message="Hello!")
将_out_response_name
传递给@rpc
不要发明你的内容并使用内置的Fault
类。
Spyne的文档很糟糕,是的,但它们并不坏。读它们:)
Spyne还有一个邮件列表:http://lists.spyne.io/listinfo/people
H个,