我正在使用Django和Python开发,并且需要使用SOAP和2个操作发布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。
对于这3个字段,我认为是在我创建的responseData类中,但是我无法返回此类数据。我知道我要问3个问题,但我正在阅读spyne的所有文档,但没有发现任何问题。
最佳答案
首先,感谢您尝试Spyne!
答案:
尝试
return ResponseData(codResultado=1234, message="Hello!")
将
_out_response_name
传递给@rpc
不要发明自己的,而使用内置的
Fault
类。Spyne文档很糟糕,是的,但是还不错。阅读他们:)
Spyne也有一个邮件列表:http://lists.spyne.io/listinfo/people
Hth,