|
|
@@ -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'} |
|
|
|
|
|
|
|