Webservice Request and Response
        
    Request
    -------------
    Host: 'https://ussouthcentral.services.azureml.net/workspaces/fd769a98302c4c5d88faec13f23806f4/services/c8bd65a25e0f4b11b09a2f3226262d3a/execute?api-version=2.0&format=swagger'
    headers  {
               'Content-Type':'application/json',
               'Authorization':('Bearer J9RWXmUb14jvpWnfewsQam15EfCiKv2vaT+apVfr3Jzf7IfWWsOLoMCkYg5YTFJM3Ha8Ri8lzDYjv5Mr3eWivg==')
             }
    Body:
           {'1': '-0.128588263976007',
                '2': '-0.104045408999844',
                '3': '-0.430050832298203',
                '4': '1.14199276067661',
                '5': '-0.768614737483865',
                '6': '-0.844111521518547',
                '7': '0.0815495587129935',
                '8': '-0.162112704746779',
                'output': '0'
           }
    Response
    -------------
    {
     'Scored Labels': '0',
     'Scored Probabilities': '0.0102746542543173'
     }
         Python code to call webService from your computer
 
import urllib.request
import json
data = {
        "Inputs": {
                "input1":
                [
                    {
                            '1': "0.415158007",
                            '2': "0",
                            '3': "0",
                            '4': "1",
                            '5': "0",
                            '6': "0",
                            '7': "0.239045722",
                            '8': "0.362933093",
                            'output': "0",
                    }
                ],
        },
    "GlobalParameters":  {
    }
}
body = str.encode(json.dumps(data))
url = 'https://ussouthcentral.services.azureml.net/workspaces/fd769a98302c4c5d88faec13f23806f4/services/c8bd65a25e0f4b11b09a2f3226262d3a/execute?api-version=2.0&format=swagger'
api_key = 'J9RWXmUb14jvpWnfewsQam15EfCiKv2vaT+apVfr3Jzf7IfWWsOLoMCkYg5YTFJM3Ha8Ri8lzDYjv5Mr3eWivg==' # Replace this with the API key for the web service
headers = {'Content-Type':'application/json', 'Authorization':('Bearer '+ api_key)}
req = urllib.request.Request(url, body, headers)
try:
    response = urllib.request.urlopen(req)
    result = response.read()
    json_data=json.loads(result)['Results']['output1'][0]
    #print(result)
    print(json_data)
    print('Scored Labels: '+json_data['Scored Labels'])
    print('Scored Probabilities: '+json_data['Scored Probabilities'])
except urllib.error.HTTPError as error:
    print("The request failed with status code: " + str(error.code))
    # Print the headers - they include the requert ID and the timestamp, which are useful for debugging the failure
    print(error.info())
    print(json.loads(error.read().decode("utf8", 'ignore')))