Browse Source

find ET where I put it...

make it support long's..

[git-p4: depot-paths = "//depot/": change = 1103]
replace/b43bf02ddeddd088c0e6b94974ca1a46562eb3db
John-Mark Gurney 17 years ago
parent
commit
ff20e42c0e
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      soap_lite.py

+ 2
- 1
soap_lite.py View File

@@ -11,7 +11,7 @@
inspired by ElementSOAP.py
"""

from coherence.extern.et import ET
from et import ET

NS_SOAP_ENV = "{http://schemas.xmlsoap.org/soap/envelope/}"
NS_SOAP_ENC = "{http://schemas.xmlsoap.org/soap/encoding/}"
@@ -84,6 +84,7 @@ def build_soap_call(method, arguments, is_response=False,
type_map = {str: 'xsd:string',
unicode: 'xsd:string',
int: 'xsd:int',
long: 'xsd:int',
float: 'xsd:float',
bool: 'xsd:boolean'}



Loading…
Cancel
Save