Skip to content
Snippets Groups Projects
Commit e724048d authored by Vermaat's avatar Vermaat
Browse files

SOAP tools now use SUDS monkey patch from Mutalyzer.

parent e25f36e4
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
# Monkey patch suds, because for some weird reason the location
# http://www.w3.org/2001/xml.xsd is used for the XML namespace, but the W3C
# seems to respond too slow on that url. We use therefore use
# http://www.w3.org/2009/01/xml.xsd which fixes this.
from suds.xsd.sxbasic import Import
_import_open = Import.open
def _import_open_patched(self, *args, **kwargs):
if self.location == 'http://www.w3.org/2001/xml.xsd':
self.location = 'http://www.w3.org/2009/01/xml.xsd'
return _import_open(self, *args, **kwargs)
Import.open = _import_open_patched
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from datetime import datetime, timedelta
......
#!/usr/bin/env python
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client
......
#!/usr/bin/env python
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client
......
#!/usr/bin/env python
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client
......
#!/usr/bin/env python
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client
......
......@@ -10,6 +10,8 @@
# This code is in the public domain; it can be used for whatever purpose
# with absolutely no restrictions.
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client # https://fedorahosted.org/suds/
......
......@@ -12,6 +12,8 @@
# This code is in the public domain; it can be used for whatever purpose
# with absolutely no restrictions.
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client # https://fedorahosted.org/suds/
......
......@@ -3,6 +3,8 @@
# Usage:
# ./positionconvert.py hg18 'NC_000011.9:g.111959695G>T'
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client # https://fedorahosted.org/suds/
......
#!/usr/bin/env python
from mutalyzer.util import monkey_patch_suds; monkey_patch_suds()
import sys
from suds.client import Client
from suds import WebFault
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment