0

Pythonはまだかなり新しいです。この質問に似た問題があります。私のスクリプトは、メッセージにwsseを使用し、HTTPSを使用してプロビジョニングされたWebサービスに接続しようとしています。認証されていないプロキシを使用する必要があります。私は次のようにサービスを使用するためにsudsを使用します:

import logging
import suds
import urllib2
from suds.client import Client
from suds.transport.https import HttpAuthenticated

#---These are not real values but represent them.---------
SERVICE_URL = 'https://service.com/1/soap'
SERVICE_USR = 'serviceusr'
SERVICE_PWD = 'servicepwd'
WSDL_URL = 'file:///folder/a.wsdl'
PROXY_NAME = 'proxy'
PROXY_PORT = 80
#----------------------------------------------------------

logging.basicConfig(level = logging.DEBUG)
logging.getLogger('suds.client').setLevel(logging.DEBUG)
logging.getLogger('suds.transport').setLevel(logging.DEBUG)

proxy_info = {'host': PROXY_NAME,'port': PROXY_PORT}
proxyHandler = urllib2.ProxyHandler({'https':'https://(host)s:%(port)d/' % proxy_info})
opener = urllib2.build_opener(proxyHandler)
urllib2.install_opener(opener)
security = suds.wsse.Security()
token = suds.wsse.UsernameToken(SERVICE_USR, SERVICE_PWD)
security.tokens.append(token)
messageTransport = HttpAuthenticated(username = SERVICE_USR, password = SERVICE_PWD)
messageTransport.urlopner = opener
client = Client(url = WSDL_URL, location = SERVICE_URL, transport = messageTransport)
client.set_options(wsse=security)
result = client.service.ParseValidAddress('1 ABC Street Somwhere')

スクリプトを実行すると、次のエラーが発生します。

Error details: <class 'urllib2.URLError'> <urlopen error [Errno -2] Name or service not 
known>

そこで、curlを実行して、すべてのネットワークビットが次のように機能していることを確認しました。

curl -x proxy:80 https://service1.com/1/soap

これは、ネットワーク構成とプロキシが正しく設定されていることを示すSOAPメッセージを返します。では、なぜ泡は同じことをしないのですか?どこで失敗しましたか?

4

2 に答える 2

2

それが必要です

proxyHandler = urllib2.ProxyHandler({'https':'https://%(host)s:%(port)d/' % proxy_info})

(「https」と「%」の両方の末尾の「s」に注意してください)。

于 2012-05-03T23:35:27.013 に答える
0

成功!私は次のことをしました、そしてそれは働きました。proxySettings = {'https':'http://{0}:{1}'.format(PROXY_NAME, PROXY_PORT)}クライアントでオプションを追加して設定しますclient.set_options(proxy = proxySettings)。助けてくれてありがとう。

于 2012-05-04T00:15:49.573 に答える