Posted in 学习, 工作 on March 11th, 2010 No Comments »
in soaplib/wsgi_soap.py
there are somethings like
if payload:
and this will cause a futurewarning
FutureWarning: The behavior of this method will change in future versions. Use specific ‘len(elem)’ or ‘elem is not None’ test instead.
and the invoke from java client with axis 1.4 will be failed,so we need to change it as it describes:
change
if payload:
to
if payload is not None:
then [...]
Posted in 生活 on March 2nd, 2010 No Comments »
On Sat, Aug 29, 2009 at 10:33 AM, Maksymus007<maksymus…@gmail.com> wrote:
> On Sat, Aug 29, 2009 at 5:40 AM, Wombatpm<bruce.brombe…@gmail.com> wrote:
>>
>> For the record. SOAPLIB 0.8.1 has a bug in generating the WSDL file
>> for Arrays.
>>
>>> <xs:complexType name=”stringArray”>
>>> -
>>> <xs:sequence>
>>> <xs:element minOccurs=”0″ maxOccurs=”unbounded” type=”tns:string”
>>> name=”string”/>
>>> </xs:sequence>
>>> </xs:complexType>
>>
>> the type declaration should be type=”xs:string”
>>
>>
>> The unicode issue [...]