Hi ,

I am using your lib of suds to do some webservice client work ,
here is the sample code :

    url = 'http://youbloommail.com/services/soap'
    start(url)
    credentials = dict(username='11', password='222')
    t = HttpAuthenticated(**credentials)
#    client = Client(url)
    client = Client(url, transport=t)
    print client
#    token = client.service.user.get_users_no_contacts('soaptester','youbloom.com','1111111111', 'soaptester')
#    print 'token="%s"' % token


but what I get is an exception of:


Finished: errors = 1
Traceback (most recent call last):
  File "E:\workspace\youbloom4\apps\suds\public.py", line 298, in <module>
    client = Client(url)
  File "build\bdist.win32\egg\suds\client.py", line 111, in __init__
    self.wsdl = reader.open(url)
  File "build\bdist.win32\egg\suds\reader.py", line 136, in open
    d = self.fn(url, self.options)
  File "build\bdist.win32\egg\suds\wsdl.py", line 136, in __init__
    d = reader.open(url)
  File "build\bdist.win32\egg\suds\reader.py", line 73, in open
    d = self.download(url)
  File "build\bdist.win32\egg\suds\reader.py", line 90, in download
    return sax.parse(file=fp)
  File "build\bdist.win32\egg\suds\sax\parser.py", line 129, in parse
    sax.parse(file)
  File "E:\python2.5.4\Lib\xml\sax\expatreader.py", line 107, in parse
    xmlreader.IncrementalParser.parse(self, source)
  File "E:\python2.5.4\Lib\xml\sax\xmlreader.py", line 123, in parse
    self.feed(buffer)
  File "E:\python2.5.4\Lib\xml\sax\expatreader.py", line 211, in feed
    self._err_handler.fatalError(exc)
  File "E:\python2.5.4\Lib\xml\sax\handler.py", line 38, in fatalError
    raise exception
SAXParseException: <unknown>:76:13: not well-formed (invalid token)


do you know what's it about ? can you help me

--
Best regards,
Jihua