単純なコードで開始しているdocumentumWebサービスを呼び出しているところです。
from suds.client import Client #@UnresolvedImport
from suds.transport.https import HttpAuthenticated
import urllib2
t=HttpAuthenticated(username='x', password='x')
t.handler = urllib2.HTTPBasicAuthHandler(t.pm)
t.urlopener = urllib2.build_opener(t.handler)
url = 'http://hudt17:8888/services/core/ObjectService?wsdl'
client = Client(url,transport=t)
print client
場合は正常に動作しurl='http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl'
ます。しかし、そうでない場合は、このエラーが返されます。
https://docs.google.com/document/pub?id=1Qk8_qji385B9fZB-z4eMbPc1fv1AXVKEtbxr7Xx6AvQ
ここで何が起こっているのですか?