forked from ridha/soaplib.client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http.py
51 lines (39 loc) · 1.66 KB
/
http.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# soaplib - Copyright (C) Soaplib contributors.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
#
"""A soap client that uses http (urllib2) as transport"""
import urllib2
from soaplibclient import Service
from soaplibclient import Base
from soaplibclient import RemoteProcedureBase
class _RemoteProcedure(RemoteProcedureBase):
def __call__(self, *args, **kwargs):
out_object = self.get_out_object(args, kwargs)
out_string = self.get_out_string(out_object)
request = urllib2.Request(self.url, out_string, {'Content-type':'text/xml; charset=utf-8'})
code = 200
try:
response = urllib2.urlopen(request)
in_str = response.read()
except urllib2.HTTPError, e:
code = e.code
in_str = e.read()
return self.get_in_object(in_str, is_error=(code == 500))
class Client(Base):
def __init__(self, url, app):
super(Client, self).__init__(url, app)
self.service = Service(_RemoteProcedure, url, app)