Hello,
I am currently using Python 2.7.10 and the web service does not require authentication.
I am able to call the web service in Python using the script below and I get a return in XML format.
Questions: how do I parse the answer to get only the part I need a "Y' or a "N"
This is what I get on line: t = ET.fromstring(the_page)
<string xmlns="http://www.example.comv/GISAddress">Y</string>
Source code
import arcpy, urllib, urllib2,
url = r'https://wwww.example.com/GISAddress/Check.asmx/VerifyAddress'
values = {'myAddress' : '100 SW 10 street'}
data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
the_page = response.read()
t = ET.fromstring(the_page)