| @@ -293,7 +293,7 @@ class DOM: | |||||
| def GetSOAPEnvUri(self, version): | def GetSOAPEnvUri(self, version): | ||||
| """Return the appropriate SOAP envelope uri for a given | """Return the appropriate SOAP envelope uri for a given | ||||
| human-friendly SOAP version string (e.g. '1.1').""" | human-friendly SOAP version string (e.g. '1.1').""" | ||||
| attrname = 'NS_SOAP_ENV_%s' % version.split('.').join('_') | |||||
| attrname = 'NS_SOAP_ENV_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attrname, None) | value = getattr(self, attrname, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||
| @@ -304,7 +304,7 @@ class DOM: | |||||
| def GetSOAPEncUri(self, version): | def GetSOAPEncUri(self, version): | ||||
| """Return the appropriate SOAP encoding uri for a given | """Return the appropriate SOAP encoding uri for a given | ||||
| human-friendly SOAP version string (e.g. '1.1').""" | human-friendly SOAP version string (e.g. '1.1').""" | ||||
| attrname = 'NS_SOAP_ENC_%s' % version.split('.').join('_') | |||||
| attrname = 'NS_SOAP_ENC_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attrname, None) | value = getattr(self, attrname, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||
| @@ -315,7 +315,7 @@ class DOM: | |||||
| def GetSOAPActorNextUri(self, version): | def GetSOAPActorNextUri(self, version): | ||||
| """Return the right special next-actor uri for a given | """Return the right special next-actor uri for a given | ||||
| human-friendly SOAP version string (e.g. '1.1').""" | human-friendly SOAP version string (e.g. '1.1').""" | ||||
| attrname = 'SOAP_ACTOR_NEXT_%s' % version.split('.').join('_') | |||||
| attrname = 'SOAP_ACTOR_NEXT_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attrname, None) | value = getattr(self, attrname, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||
| @@ -393,7 +393,7 @@ class DOM: | |||||
| ) | ) | ||||
| def GetWSDLUri(self, version): | def GetWSDLUri(self, version): | ||||
| attr = 'NS_WSDL_%s' % version.split('.').join('_') | |||||
| attr = 'NS_WSDL_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attr, None) | value = getattr(self, attr, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||
| @@ -402,7 +402,7 @@ class DOM: | |||||
| ) | ) | ||||
| def GetWSDLSoapBindingUri(self, version): | def GetWSDLSoapBindingUri(self, version): | ||||
| attr = 'NS_SOAP_BINDING_%s' % version.split('.').join('_') | |||||
| attr = 'NS_SOAP_BINDING_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attr, None) | value = getattr(self, attr, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||
| @@ -411,7 +411,7 @@ class DOM: | |||||
| ) | ) | ||||
| def GetWSDLHttpBindingUri(self, version): | def GetWSDLHttpBindingUri(self, version): | ||||
| attr = 'NS_HTTP_BINDING_%s' % version.split('.').join('_') | |||||
| attr = 'NS_HTTP_BINDING_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attr, None) | value = getattr(self, attr, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||
| @@ -420,7 +420,7 @@ class DOM: | |||||
| ) | ) | ||||
| def GetWSDLMimeBindingUri(self, version): | def GetWSDLMimeBindingUri(self, version): | ||||
| attr = 'NS_MIME_BINDING_%s' % version.split('.').join('_') | |||||
| attr = 'NS_MIME_BINDING_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attr, None) | value = getattr(self, attr, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||
| @@ -429,7 +429,7 @@ class DOM: | |||||
| ) | ) | ||||
| def GetWSDLHttpTransportUri(self, version): | def GetWSDLHttpTransportUri(self, version): | ||||
| attr = 'NS_SOAP_HTTP_%s' % version.split('.').join('_') | |||||
| attr = 'NS_SOAP_HTTP_%s' % version.replace('.', '_') | |||||
| value = getattr(self, attr, None) | value = getattr(self, attr, None) | ||||
| if value is not None: | if value is not None: | ||||
| return value | return value | ||||