{"info":{"_postman_id":"30f64565-8f49-4c6b-81b5-f7f62915708f","name":"Postman Training - SOAP","description":"<html><head></head><body><p>This is a collection of different SOAP APIs that are completely public and do not require any authentication, making it easier for consumers to play with and understand what APIs are all about by seeing the many different ways in which APIs can be used.\nI have added basic Tests using Cheerio, user defined functions, some Math functions. This will provide an idea for those who start their SOAP API testing in Postman. </p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"8848049","collectionId":"30f64565-8f49-4c6b-81b5-f7f62915708f","publishedId":"TW6tNBDz","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-02-05T08:25:49.000Z"},"item":[{"name":"Numbers","item":[{"name":"NumberToWords","event":[{"listen":"test","script":{"id":"c177dcb9-6bf1-472a-b4d7-9e87a2416b36","exec":["var jsonObject = xml2Json(responseBody);\r","console.log(jsonObject);\r","\r","pm.test(\"response is ok\", function () {\r","    pm.response.to.have.status(200);\r","    pm.response.to.have.status(\"OK\");\r","});\r","\r","pm.test(\"Response time is less than 2000ms\", function () {\r","    pm.expect(pm.response.responseTime).to.be.below(2000);\r","});\r","\r","pm.test(\"Content-Type header is text/xml\", () => {\r","  pm.expect(pm.response.headers.get('Content-Type')).to.eql('text/xml; charset=utf-8');\r","});\r","\r","pm.test(\"Check Expected Number\", () => {\r","  pm.expect(jsonObject['soap:Envelope']['soap:Body']['m:NumberToWordsResponse']['m:NumberToWordsResult']).to.eql(\"five hundred\");\r","});\r","\r","console.log(pm.request.body.raw);\r",""],"type":"text/javascript"}}],"id":"09756022-bbd6-4bd0-9a57-4216dfb748d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml; charset=utf-8","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n  <soap:Body>\n    <NumberToWords xmlns=\"http://www.dataaccess.com/webservicesserver/\">\n      <ubiNum>500</ubiNum>\n    </NumberToWords>\n  </soap:Body>\n</soap:Envelope>"},"url":"https://www.dataaccess.com/webservicesserver/NumberConversion.wso","description":"<p>Returns the word corresponding to the positive number passed as parameter. Limited to quadrillions. Added basic tests and on parsing the XML response.</p>\n","urlObject":{"protocol":"https","path":["webservicesserver","NumberConversion.wso"],"host":["www","dataaccess","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"09756022-bbd6-4bd0-9a57-4216dfb748d4"},{"name":"NumberToDollars","event":[{"listen":"test","script":{"id":"4de229d2-a519-401f-88fa-f9733e8c073c","exec":["function humanize(num){\r","  var ones = ['', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine',\r","              'ten', 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen', 'sixteen',\r","              'seventeen', 'eighteen', 'nineteen'];\r","  var tens = ['', '', 'twenty', 'thirty', 'forty', 'fifty', 'sixty', 'seventy', 'eighty',\r","              'ninety'];\r","\r","  var numString = num.toString();\r","\r","  if (num < 0) throw new Error('Negative numbers are not supported.');\r","\r","  if (num === 0) return 'zero';\r","\r","  //the case of 1 - 20\r","  if (num < 20) {\r","    return ones[num];\r","  }\r","\r","  if (numString.length === 2) {\r","    return tens[numString[0]] + ' ' + ones[numString[1]];\r","  }\r","\r","  //100 and more\r","  if (numString.length == 3) {\r","    if (numString[1] === '0' && numString[2] === '0')\r","      return ones[numString[0]] + ' hundred';\r","    else\r","      return ones[numString[0]] + ' hundred and ' + humanize(+(numString[1] + numString[2]));\r","  }\r","\r","  if (numString.length === 4) {\r","    var end = +(numString[1] + numString[2] + numString[3]);\r","    if (end === 0) return ones[numString[0]] + ' thousand';\r","    if (end < 100) return ones[numString[0]] + ' thousand and ' + humanize(end);\r","    return ones[numString[0]] + ' thousand ' + humanize(end);\r","  }\r","}\r","\r","\r","var jsonObject = xml2Json(responseBody);\r","console.log(jsonObject);\r","\r","console.log(pm.environment.get(\"int\"));\r","console.log(humanize(pm.environment.get(\"int\")));\r","\r","\r","\r","pm.test(\"Value as expected\", () => {\r","  pm.expect(jsonObject['soap:Envelope']['soap:Body']['m:NumberToDollarsResponse']['m:NumberToDollarsResult']).to.eql(humanize(pm.environment.get(\"int\"))+ \" dollars\");\r","});\r","\r","pm.environment.set(\"pri\", jsonObject['soap:Envelope']['soap:Body']['m:NumberToDollarsResponse']['m:NumberToDollarsResult']);\r",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"41cf2394-1275-4492-b6c4-6ff1e4c7cd43","exec":["pm.environment.set(\"int\", pm.variables.replaceIn('387'));\r","\r",""],"type":"text/javascript"}}],"id":"302728f1-4f7b-47e5-b3e7-bc40acefbcb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml; charset=utf-8"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n  <soap:Body>\n    <NumberToDollars xmlns=\"http://www.dataaccess.com/webservicesserver/\">\n      <dNum>{{int}}</dNum>\n    </NumberToDollars>\n  </soap:Body>\n</soap:Envelope>"},"url":"https://www.dataaccess.com/webservicesserver/NumberConversion.wso","description":"<p>Returns the non-zero dollar amount of the passed number. Added Tests by creating the user defined functions.</p>\n","urlObject":{"protocol":"https","path":["webservicesserver","NumberConversion.wso"],"host":["www","dataaccess","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"302728f1-4f7b-47e5-b3e7-bc40acefbcb7"},{"name":"NumberToWords - Using Cheerio","event":[{"listen":"test","script":{"id":"529e1156-6399-4cf8-a68a-3e81b267434b","exec":["var cheerio = require('cheerio');\r","pm.test(\"Cheerio\",() => {\r","    const $ = cheerio.load(responseBody,{\r","        ignoreWhitespace: true,\r","        xmlMode: true\r","    });\r","\r","    //Render XML\r","  console.log(\"Entering logic\");\r","    console.log($.xml());\r","\r","pm.test(\"Using Cheerio \", function () \r","{\r","pm.expect($('m\\\\:NumberToWordsResponse').attr('xmlns:m')).to.eql('http://www.dataaccess.com/webservicesserver/')\r","pm.expect($('m\\\\:NumberToWordsResult').text()).to.eql(\"five hundred \");\r","});\r","\r","\r","});"],"type":"text/javascript"}}],"id":"4f65e444-7da5-4233-99d1-b9a9021de5f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml; charset=utf-8","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n  <soap:Body>\n    <NumberToWords xmlns=\"http://www.dataaccess.com/webservicesserver/\">\n      <ubiNum>500</ubiNum>\n    </NumberToWords>\n  </soap:Body>\n</soap:Envelope>"},"url":"https://www.dataaccess.com/webservicesserver/NumberConversion.wso","description":"<p>Adds two integers. Same ADD api, but here used cheerio functions to reach the element we needed.</p>\n","urlObject":{"protocol":"https","path":["webservicesserver","NumberConversion.wso"],"host":["www","dataaccess","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f65e444-7da5-4233-99d1-b9a9021de5f4"}],"id":"d00f7df2-aadf-4e71-83eb-1b25804780d6","description":"<p>Some basic numbers requests.</p>\n","_postman_id":"d00f7df2-aadf-4e71-83eb-1b25804780d6"},{"name":"Calculator","item":[{"name":"Multiply","event":[{"listen":"test","script":{"exec":["var jsonObject = xml2Json(responseBody);\r","console.log(jsonObject);\r","\r","function multiply(num1,num2){\r","var value = Number(num1) * Number(num2);\r","var result = value.toString();\r","var length = Math.ceil(Math.log10(value + 1));\r","console.log(length);\r","console.log(result);\r","return result;\r","}\r","\r","var num1 = pm.environment.get(\"mul1\");\r","var num2 = pm.environment.get(\"mul2\")\r","\r","console.log(multiply(num1,num2));\r","\r","pm.test(\"Value as expected\", () => {\r","  pm.expect(jsonObject['soap:Envelope']['soap:Body']['MultiplyResponse']['MultiplyResult']).to.eql(multiply(num1,num2));\r","});\r",""],"type":"text/javascript","id":"d2049d6b-ab08-4a18-8226-8aa268784948"}},{"listen":"prerequest","script":{"exec":["pm.environment.set(\"mul1\", pm.variables.replaceIn('233'));\r","pm.environment.set(\"mul2\", pm.variables.replaceIn('258'));"],"type":"text/javascript","id":"cba7e7d1-5fa8-4707-a45e-d81a10e0af85"}}],"id":"7b3c579d-a3ee-4602-9daa-04745d6718ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml; charset=utf-8","type":"text"},{"key":"SOAPAction","value":"http://tempuri.org/Multiply","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n  <soap:Body>\n    <Multiply xmlns=\"http://tempuri.org/\">\n      <intA>{{mul1}}</intA>\n      <intB>{{mul2}}</intB>\n    </Multiply>\n  </soap:Body>\n</soap:Envelope>","options":{"raw":{"language":"xml"}}},"url":"http://www.dneonline.com/calculator.asmx","description":"<p>Multiplies two integers. Used environment variables and user defined functions for smart tests.</p>\n","urlObject":{"protocol":"http","path":["calculator.asmx"],"host":["www","dneonline","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b3c579d-a3ee-4602-9daa-04745d6718ec"},{"name":"Divide","event":[{"listen":"prerequest","script":{"exec":["pm.environment.set(\"div1\", pm.variables.replaceIn('356'));\r","pm.environment.set(\"div2\", pm.variables.replaceIn('11'));"],"type":"text/javascript","id":"da1b65c8-3b43-4719-8a41-ee08449ebd51"}},{"listen":"test","script":{"exec":["var jsonObject = xml2Json(responseBody);\r","console.log(jsonObject);\r","\r","function divide(num1,num2){\r","value = num1 / num2;\r","var value1 = Math.round(value);\r","var result = value1.toString();\r","Math.trunc(result);\r","return result;\r","console.log(result);\r","}\r","\r","var num1 = pm.environment.get(\"div1\");\r","var num2 = pm.environment.get(\"div2\")\r","\r","console.log(num1 / num2);\r","console.log(divide(num1,num2));\r","\r","pm.test(\"Value as expected\", () => {\r","  pm.expect(jsonObject['soap:Envelope']['soap:Body']['DivideResponse']['DivideResult']).to.eql(divide(num1,num2));\r","});"],"type":"text/javascript","id":"5eab91d2-a251-4118-87bf-f30b64191dd4"}}],"id":"63569f44-fec6-4878-8790-dd3787e1b4fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml; charset=utf-8","type":"text"},{"key":"SOAPAction","value":"http://tempuri.org/Divide","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n  <soap:Body>\n    <Divide xmlns=\"http://tempuri.org/\">\n      <intA>{{div1}}</intA>\n      <intB>{{div2}}</intB>\n    </Divide>\n  </soap:Body>\n</soap:Envelope>"},"url":"http://www.dneonline.com/calculator.asmx","description":"<p>Divides two integers. Used environment variables and user defined functions for smart tests.</p>\n","urlObject":{"protocol":"http","path":["calculator.asmx"],"host":["www","dneonline","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"63569f44-fec6-4878-8790-dd3787e1b4fe"},{"name":"Add","event":[{"listen":"prerequest","script":{"exec":["pm.environment.set(\"add1\", pm.variables.replaceIn('14'));\r","pm.environment.set(\"add2\", pm.variables.replaceIn('438'));"],"type":"text/javascript","id":"453ac511-141c-462c-b381-95a7af76973b"}},{"listen":"test","script":{"exec":["var jsonObject = xml2Json(responseBody);\r","console.log(jsonObject);\r","\r","function add(num1,num2){\r","var value = Number(num1) + Number(num2);\r","var result = value.toString();\r","return result;\r","console.log(result);\r","}\r","\r","var num1 = pm.environment.get(\"add1\");\r","var num2 = pm.environment.get(\"add2\")\r","\r","console.log(add(num1,num2));\r","\r","pm.test(\"Value as expected\", () => {\r","  pm.expect(jsonObject['soap:Envelope']['soap:Body']['AddResponse']['AddResult']).to.eql(add(num1,num2));\r","});"],"type":"text/javascript","id":"2ef6bb31-2c3e-4ac9-8b9b-2a8a9eaee15b"}}],"id":"bda3b4d5-2602-49fa-927b-00fe7e0d8ba4","protocolProfileBehavior":{"disabledSystemHeaders":{"content-type":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml","type":"text"},{"key":"SOAPAction","value":"http://tempuri.org/Add","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:tem=\"http://tempuri.org/\">\n   <soapenv:Header/>\n   <soapenv:Body>\n      <tem:Add>\n         <tem:intA>{{add1}}</tem:intA>\n         <tem:intB>{{add2}}</tem:intB>\n      </tem:Add>\n   </soapenv:Body>\n</soapenv:Envelope>"},"url":"http://www.dneonline.com/calculator.asmx","description":"<p>Adds two integers. Used environment variables and user defined functions for smart tests.</p>\n","urlObject":{"protocol":"http","path":["calculator.asmx"],"host":["www","dneonline","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bda3b4d5-2602-49fa-927b-00fe7e0d8ba4"},{"name":"Subtract","event":[{"listen":"prerequest","script":{"exec":["pm.environment.set(\"sub1\", pm.variables.replaceIn('293'));\r","pm.environment.set(\"sub2\", pm.variables.replaceIn('752'));"],"type":"text/javascript","id":"437e2434-6558-42d6-a210-d40543434c9b"}},{"listen":"test","script":{"exec":["var jsonObject = xml2Json(responseBody);\r","console.log(jsonObject);\r","\r","function sub(num1,num2){\r","var value = Number(num1) - Number(num2);\r","var result = value.toString();\r","return result;\r","console.log(result);\r","}\r","\r","var num1 = pm.environment.get(\"sub1\");\r","var num2 = pm.environment.get(\"sub2\")\r","\r","console.log(sub(num1,num2));\r","\r","pm.test(\"Value as expected\", () => {\r","  pm.expect(jsonObject['soap:Envelope']['soap:Body']['SubtractResponse']['SubtractResult']).to.eql(sub(num1,num2));\r","});"],"type":"text/javascript","id":"546205f6-6990-4d0c-8baf-f214bc92905e"}}],"id":"7103789b-6428-4561-bf10-60ad7e38a702","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml; charset=utf-8","type":"text"},{"key":"SOAPAction","value":"http://tempuri.org/Subtract","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n  <soap:Body>\n    <Subtract xmlns=\"http://tempuri.org/\">\n      <intA>{{sub1}}</intA>\n      <intB>{{sub2}}</intB>\n    </Subtract>\n  </soap:Body>\n</soap:Envelope>"},"url":"http://www.dneonline.com/calculator.asmx","description":"<p>Subtracts two integers. Used environment variables and user defined functions for smart tests.</p>\n","urlObject":{"protocol":"http","path":["calculator.asmx"],"host":["www","dneonline","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7103789b-6428-4561-bf10-60ad7e38a702"}],"id":"7061767b-4ab4-4076-814b-9fc72869ac43","description":"<p>A simple SOAP API calculator.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"88cf6b60-6d46-42eb-aec0-fd3dceadecb8"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"2dc2b965-5efe-4e60-b7a9-b5a40f0379e5"}}],"_postman_id":"7061767b-4ab4-4076-814b-9fc72869ac43"},{"name":"Book ISBN Numbers","item":[{"name":"Is Valid ISBN13 Number","event":[{"listen":"prerequest","script":{"id":"5681f9ff-70e7-4980-8308-1d4719a9e884","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"91c71c19-7d19-4bb3-93d9-979dcc47a5de","exec":["var req = xml2Json(request.data);\r","console.log(req);\r","\r","var ISBN = req['soap:Envelope']['soap:Body']['IsValidISBN13']['sISBN'];\r","\r","console.log(typeof(ISBN));\r","\r","pm.environment.set(\"ISBN\", ISBN);\r","\r","var jsonObject = xml2Json(responseBody);\r","console.log(jsonObject);\r","\r","//declaration\r","\r","var result = jsonObject['soap:Envelope']['soap:Body']['m:IsValidISBN13Response']['m:IsValidISBN13Result'];\r","\r","\r","var isValidIsbn = function(str) {\r","\r","    var sum,\r","        weight,\r","        digit,\r","        check,\r","        i;\r","\r","    str = str.replace(/[^0-9X]/gi, '');\r","\r","    if (str.length != 10 && str.length != 13) {\r","        return false;\r","    }\r","\r","    if (str.length == 13) {\r","        sum = 0;\r","        for (i = 0; i < 12; i++) {\r","            digit = parseInt(str[i]);\r","            if (i % 2 == 1) {\r","                sum += 3*digit;\r","            } else {\r","                sum += digit;\r","            }\r","        }\r","        check = (10 - (sum % 10)) % 10;\r","        return (check == str[str.length-1]);\r","    }\r","\r","    if (str.length == 10) {\r","        weight = 10;\r","        sum = 0;\r","        for (i = 0; i < 9; i++) {\r","            digit = parseInt(str[i]);\r","            sum += weight*digit;\r","            weight--;\r","        }\r","        check = (11 - (sum % 11)) % 11\r","        if (check == 10) {\r","            check = 'X';\r","        }\r","        return (check == str[str.length-1].toUpperCase());\r","       \r","    }\r","}\r","\r","pm.test(\"Value as expected\", () => {\r","  pm.expect(result).to.eql(isValidIsbn(ISBN).toString());\r","});\r",""],"type":"text/javascript"}}],"id":"a2e73524-571d-402e-90bb-62b08dcd19be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"text/xml; charset=utf-8"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n  <soap:Body>\n    <IsValidISBN13 xmlns=\"http://webservices.daehosting.com/ISBN\">\n      <sISBN>978-1-8619-7271-2</sISBN>\n    </IsValidISBN13>\n  </soap:Body>\n</soap:Envelope>"},"url":"http://webservices.daehosting.com/services/isbnservice.wso","description":"<p>The test is done by calculation on the first 12 digits and compare the result with the checksum number at the end. You have to pass a 13 digits number.</p>\n","urlObject":{"protocol":"http","path":["services","isbnservice.wso"],"host":["webservices","daehosting","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2e73524-571d-402e-90bb-62b08dcd19be"}],"id":"4e708ed8-638f-4637-bd2a-448d10fd040a","description":"<p>SOAP APIs for book ISBN numbers.</p>\n","event":[{"listen":"prerequest","script":{"id":"e8f68732-ed08-417d-b86f-8193fc8636e0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c58c2753-a6a9-4a1e-816c-05d036195551","type":"text/javascript","exec":[""]}}],"_postman_id":"4e708ed8-638f-4637-bd2a-448d10fd040a"},{"name":"Temperature","item":[{"name":"Celsius to Farenheit Conversion - Using Cheerio","event":[{"listen":"test","script":{"id":"284037ef-52f8-4f01-ab67-36c71260d602","exec":["var cheerio = require('cheerio');\r","//const response = pm.response.json();\r","pm.test(\"Cheerio\",() => {\r","    const $ = cheerio.load(responseBody,{\r","        ignoreWhitespace: true,\r","        xmlMode: true\r","    });\r","\r","        //Render XML\r","  console.log(\"Entering logic\");\r","    console.log($.xml());\r","\r","    pm.test(\"Using Cheerio \", function () \r","{\r","pm.expect($('CelsiusToFahrenheitResponse').attr('xmlns')).to.eql('https://www.w3schools.com/xml/')\r","pm.expect($('CelsiusToFahrenheitResult').text()).to.eql(\"68\");\r","});\r","});"],"type":"text/javascript"}}],"id":"c8374cf5-799b-4fd4-9135-e6f5f7945804","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/soap+xml; charset=utf-8","type":"text"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap12=\"http://www.w3.org/2003/05/soap-envelope\">\n  <soap12:Body>\n    <CelsiusToFahrenheit xmlns=\"https://www.w3schools.com/xml/\">\n      <Celsius>20</Celsius>\n    </CelsiusToFahrenheit>\n  </soap12:Body>\n</soap12:Envelope>"},"url":"https://www.w3schools.com/xml/tempconvert.asmx","description":"<p>Converts celsius temperature to farenheit. Used cheerio function to write Tests.</p>\n","urlObject":{"protocol":"https","path":["xml","tempconvert.asmx"],"host":["www","w3schools","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c8374cf5-799b-4fd4-9135-e6f5f7945804"}],"id":"9252eda1-f1f4-44ba-84bd-c8d86ed0e5d7","_postman_id":"9252eda1-f1f4-44ba-84bd-c8d86ed0e5d7","description":""}],"event":[{"listen":"prerequest","script":{"id":"d00f3c0a-22d8-48a5-b7af-db7205d450bd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"459d2dde-ac0f-4d97-a6a5-c62cd981a042","type":"text/javascript","exec":[""]}}]}