{"id":3497,"date":"2022-11-11T13:35:24","date_gmt":"2022-11-11T13:35:24","guid":{"rendered":"https:\/\/serviceobjects.wpaladdin.com\/?page_id=3497"},"modified":"2024-03-29T09:41:05","modified_gmt":"2024-03-29T16:41:05","slug":"ev3-soap","status":"publish","type":"page","link":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/","title":{"rendered":"EV3 &#8211; SOAP"},"content":{"rendered":"\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-create-block-tabs\"><ul class=\"tab-labels\" role=\"tablist\" aria-label=\"tabbed content\"><li class=\"tab-label active\" role=\"tab\" aria-selected=\"true\" aria-controls=\"C#\" tabindex=\"0\">C#<\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"Java \" tabindex=\"0\">Java <\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"PHP \" tabindex=\"0\">PHP <\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"RoR \" tabindex=\"0\">RoR <\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"Python \" tabindex=\"0\">Python <\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"ColdFusion\" tabindex=\"0\">ColdFusion<\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"VB\" tabindex=\"0\">VB<\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"Apex \" tabindex=\"0\">Apex <\/li><li class=\"tab-label\" role=\"tab\" aria-selected=\"false\" aria-controls=\"TSQL\" tabindex=\"0\">TSQL<\/li><\/ul><div class=\"tab-content\">\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong>Email Validation 3 C# Code Snippet<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">EV3LibraryClient EV3Client_Backup = null;\nValidateEmailResponse response = null;\n  \ntry\n{\n    EV3Client_Primary = new EV3LibraryClient(\"DOTSEV3PRIMARY\");\n    EV3Client_Primary.InnerChannel.OperationTimeout = new TimeSpan(0, 0, 0, WEB_SERVICE_REQUEST_TIMEOUT);\n    response = EV3Client_Primary.ValidateEmailAddress(EmailAddress, AllowCorrection, Timeout, LicenseKey);\/\/\/EQUATE TO RESPONSE\n    \/\/NULL ERROR || FATAL ERROR RETURNE -- TRY BACKUP\n    if (response == null || (response.Error != null &amp;&amp; response.Error.TypeCode == \"3\"))\n    {\n        throw new Exception();\n    }\n    return response;\n}\ncatch (Exception e)\n{\n    try\n    {\n        EV3Client_Backup = new EV3LibraryClient(\"DOTSEV3BACKUP\");\n        EV3Client_Backup.InnerChannel.OperationTimeout = new TimeSpan(0, 0, 0, WEB_SERVICE_REQUEST_TIMEOUT);\n        return EV3Client_Backup.ValidateEmailAddress(EmailAddress, AllowCorrection, Timeout, LicenseKey);\n    }\n    catch (System.Exception ex)\n    {\n        throw ex;\n    }\n    finally\n    {\n        if (EV3Client_Backup != null) { EV3Client_Backup.Close(); }\n    }\n}<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong>Email Validation 3 Java Code Snippet<\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"java\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">try{\n  \n          \n    ValidateEmailResponse resp = null;\n    ValidateEmailInfo result = null;\n    Error error = null;\n    String email = request.getParameter(\"iEmail\");\n    String allowcorrections = request.getParameter(\"iAllowCorrections\");\/\/\n    String timeout = request.getParameter(\"iTimeout\");\/\/\n    String key = request.getParameter(\"iKey\");\n      \n    \/\/ Create soap request\n    EV3LibraryLocator locator = new EV3LibraryLocator();\n    \/\/ use ssl\n    locator.setDOTSEmailValidation3EndpointAddress(\"https:\/\/trial.serviceobjects.com\/ev3\/soap.svc\/soap\");\n    IEV3Library ev3 = locator.getDOTSEmailValidation3();\n    DOTSEmailValidation3Stub soap = (DOTSEmailValidation3Stub)ev3;\n    soap.setTimeout(5000);\/\/ set timeout\n    try{\n      \n        resp = soap.validateEmailAddress(email, allowcorrections, timeout, key);\/\/validateEmailFull\n  \n        result = resp.getValidateEmailInfo();\n  \n        error = resp.getError();\n        if(resp == null || (error != null &amp;&amp; error.getTypeCode() == \"3\"))\n        {\n            throw new Exception();\n        }\n          \n        }\n        catch(Exception e)\n        {   \/\/FAILOVER- USE BACKUP NOW\n            try{\n                \/\/CALL SOAP USING BACKUP URL (Change the endpoint)\n                resp = soap.validateEmailAddress(email, allowcorrections, timeout, key);\n  \n                result = resp.getValidateEmailInfo();\n  \n                error = resp.getError();\n  \n            }\n            catch(Exception ex)\n            {\n          \n                throw new Exception(\"Both Primary and Backup soap calls failed: \" + ex.getMessage());\n            }\n        }<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong><strong>Email Validation 3 PHP Code Snippet<\/strong><\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/\/ Set these values per web service &lt;as needed>\n$wsdlUrl = \"https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl\";\n$backupWsdlUrl = \"https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl\";\n  \n\/\/ Create the SoapClient and pass the URL to the WSDL file and optional parameters as needed\n\/\/ $soapClient = new SoapClient($wsdlUrl, array(\"trace\" => true, \"exceptions\" => false,));\n  \n  \n$Email = trim($Email);\n$AllowCorrections=trim($AllowCorrections);\n$Timeout=trim($Timeout);\n$LicenseKey = trim($LicenseKey);\n  \n$params['EmailAddress'] = $Email;\n$params['AllowCorrections']=$AllowCorrections;\n$params['Timeout']=$Timeout;\n$params['LicenseKey'] = $LicenseKey;\n  \n  \n\/\/ variable cleanup before generating url\n  \n$Email = strtr($Email,' ','+');\n$AllowCorrections = strtr($AllowCorrections,' ','+');\n$Timeout = strtr($Timeout,' ','+');\n  \n  \necho \"&lt;hr>&lt;h4>Email Validation 3 Result&lt;\/h4>&lt;br>&lt;a href='https:\/\/trial.serviceobjects.com\/ev3\/web.svc\/xml\/ValidateEmailAddress?EmailAddress=\".$Email.\"&amp;AllowCorrections=\".$AllowCorrections.\"&amp;Timeout=\".$Timeout.\"&amp;LicenseKey=\".$LicenseKey.\"'>Raw XML output&lt;\/a>&lt;br>\";\ntry{\n$soapClient = new SoapClient($wsdlUrl, array( \"trace\" => 1 ));\n$result = $soapClient->ValidateEmailAddress($params);\n}\ncatch(Exception $e)\n    {\n        try\n        {\n        $soapClient = new SoapClient($backupWsdlUrl, array( \"trace\" => 1 ));\n        $result = $soapClient->ValidateEmailAddress($params);\n        }\n        catch(Exception $ex)\n        {\/\/Both soap calls failed\n            echo \"&lt;b> Primary and backup wsdls failed &lt;\/b>\";\n            echo \"$ex\";\n        }\n      \n    }<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong><strong><strong>Email Validation 3 RoR Code Snippet<\/strong><\/strong><\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"ruby\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">#Formats inputs into a hash to pass to Soap Client\n        message =   {\n                    \"EmailAddress\" => @request.email,\n                    \"AllowCorrections\" => @request.allowcorrections,\n                    \"Timeout\" => @request.timeout,\n                    \"LicenseKey\" => @request.licensekey,\n                    }\n  \n        #Implemented to make the code more readable when accessing the hash        \n        @ev3response = :validate_email_address_response\n        @ev3result = :validate_email_address_result\n        @ev3info = :validate_email_info\n        @ev3error = :error\n  \n        #Set Primary and Backup URLs here as needed\n        dotsEV3Primary = \"https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl\"\n        dotsEV3Backup = \"https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl\"\n  \n        begin\n            #initializes the soap client. The convert request keys global is necessary to receive a response from the service.\n            client = Savon.client(  wsdl: dotsEV3Primary )\n            #Calls the validate_email_address operation with given inptus and converts response to a hash.\n            response = client.call(:validate_email_address, message: message).to_hash\n  \n            #Checks to see what results came back from the service\n            processresults(response)           \n              \n        #If an error occurs during the call, this will use the dotsEV3Backup url and attempt to retrieve data.\n        rescue Savon::Error => e\n            begin\n            backupclient = Savon.client(wsdl: dotsEV3Backup)\n  \n            #Sets the response to the backclient call to the ValidateEmailAddress operation and converts response to a hash.\n            response = backupclient.call(:validate_email_address, message: message).to_hash\n            processresults(response)\n  \n            #If dotsEV3Backup failed, this will display the error received from the server\n            rescue Savon::Error =>error\n            end\n        end\n    end\n    private\n    def processresults(response)   \n            #Processes Error Response from soap Client     \n            #Processes Valid response from soap client \n            end\n    end<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong><strong><strong><strong>Email Validation 3 Python Code Snippet<\/strong><\/strong><\/strong><\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">mEmailAddress =  EmailAddress.get()\nif mEmailAddress is None or  mEmailAddress == \"\":\n     mEmailAddress = \" \"\nmAllowCorrections =  AllowCorrections.get()\nif mAllowCorrections is None or  mAllowCorrections == \"\":\n     mAllowCorrections = \" \"\nmTimeout =  Timeout.get()\nif mTimeout is None or  mTimeout == \"\":\n     mTimeout = \" \"\nmLicenseKey = LicenseKey.get()\nif mLicenseKey is None or mLicenseKey == \"\":\n    mLicenseKey = \" \"\n#Set the primary and backup URLs as needed\nprimaryURL = 'https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl'\nbackupURL = 'https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl'\n#This block of code calls the web service and prints the resulting values to the screen\ntry:\n    client = Client(primaryURL)\n    result = client.service.ValidateEmailAddress(EmailAddress= mEmailAddress, AllowCorrections=mAllowCorrections, Timeout=mTimeout, LicenseKey=mLicenseKey)\n<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong><strong><strong><strong><strong>Email Validation 3 Code Snippet<\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"xml\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;!--Makes Request to web service --->\n&lt;cfscript>\n        try\n        {\n            if (isDefined(\"form.Action\") AND Action neq \"\")\n            {\n                wsresponse = CreateObject(\"webservice\", \"https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl\");                           \n                outputs = wsresponse.validateEmailAddress(\"#EmailAddress#\", \"#AllowCorrections#\", \"#Timeout#\", \"#LicenseKey#\");\n            }\n        }\n    catch(any Exception){\n        try\n            {\n                if (isDefined(\"form.Action\") AND Action neq \"\")\n                {\n                    wsresponse = CreateObject(\"webservice\", \"https:\/\/trial.serviceobjects.com\/ev3\/soap.svc?wsdl\");                           \n                    outputs = wsresponse.validateEmailAddress(\"#EmailAddress#\", \"#AllowCorrections#\", \"#Timeout#\", \"#LicenseKey#\");\n                }\n            }\n            catch(any Exception)    {\n                 writeoutput(\"An Error Has Occured. Please Reload and try again\");              \n                }\n        }\n&lt;\/cfscript><\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong><strong><strong><strong><strong><strong>Email Validation 3 Visual Basic Code Snippet<\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"visualbasic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Dim ws As New EV3.EV3LibraryClient\nDim response As EV3.ValidateEmailResponse\n  \nresponse = ws.ValidateEmailAddress(EmailAddress.Text, AllowCorrections.Text, Timeout.Text, LicenseKey.Text)\nIf (response.Error Is Nothing) Then\n    ProcessValidResponse(response)\nElse\n    ProcessErrorResponse(response.Error)\nEnd If<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong><strong><strong><strong><strong><strong><strong>Email Validation 3 Apex Code Snippet<\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"java\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">wwwServiceobjectsComEV3.ValidateEmailResponse result;\ntry{\nwwwServiceobjectsComEV3.DOTSEmailValidation3 client = new wwwServiceobjectsComEV3.DOTSEmailValidation3();\nresult = client.ValidateEmailAddress([EmailAddress], [AllowCorrections], [Timeout], [Licensekey]);\n}\ncatch(Exception ex){\n \/\/If the first request failed try the failover endpoint\nwwwServiceobjectsComEV3.DOTSEmailValidation3 backupClient = new wwwServiceobjectsComEV3.DOTSEmailValidation3();\n\/\/The backup environment will be provided to you upon purchasing a production license key\nbackupClient.endpoint_x = 'https:\/\/trial.serviceobjects.com\/EV3\/soap.svc\/soap';\nresult = backupClient.ValidateEmailAddress([EmailAddress], [AllowCorrections], [Timeout], [Licensekey]);\n}<\/pre>\n<\/div>\n\n\n\n<div class=\"wp-block-create-block-tab tab-panel\" role=\"tabpanel\" tabindex=\"0\">\n<p><strong><strong><strong><strong><strong><strong><strong><strong><strong>Email Validation 3 TSQL Code Snippet<\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">SET @requestBody ='&lt;s:Envelope xmlns:s=\"http:\/\/schemas.xmlsoap.org\/soap\/envelope\/\">'+\n                   '&lt;s:Body>'+\n                   '&lt;ValidateEmailAddress xmlns=\"https:\/\/www.serviceobjects.com\">'+\n                   '&lt;EmailAddress>' + @email + '&lt;\/EmailAddress>'+\n                   '&lt;AllowCorrections>' + @allowcorrections + '&lt;\/AllowCorrections>'+\n                   '&lt;Timeout>' + @timeout + '&lt;\/Timeout>'+\n                   '&lt;LicenseKey>' + @key + '&lt;\/LicenseKey>'+\n                   '&lt;\/ValidateEmailAddress>'+\n                   '&lt;\/s:Body>'+\n                   '&lt;\/s:Envelope>'\nSET @requestLength = LEN(@requestBody)\n    --If a production key is purchased, this will execute the failover\nIF @isLiveKey = 1\nBEGIN\n    EXEC sp_OACreate 'MSXML2.ServerXMLHttp', @obj OUT\n    EXEC sp_OAMethod @obj, 'Open', NULL, 'POST', 'https:\/\/sws.serviceobjects.com\/ev3\/soap.svc\/soap', false\n    EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'HOST', 'sws.serviceobjects.com'\n    EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Type', 'text\/xml; charset=UTF-8'\n    EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'SOAPAction', '\"https:\/\/www.serviceobjects.com\/IEV3Library\/ValidateEmailAddress\"'\n    EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Length', @requestLength\n    EXEC sp_OAMethod @obj, 'send', NULL, @requestBody\n    EXEC sp_OAGetProperty @obj, 'Status', @responseCode OUTPUT\n    EXEC sp_OAGetProperty @obj, 'StatusText', @statusText OUTPUT\n    EXEC sp_OAGetProperty @obj, 'responseText', @response OUTPUT\n              \n    --Checks the Response for a fatal error or if null.\n    IF @response IS NULL\n    BEGIN\n        EXEC sp_OACreate 'MSXML2.ServerXMLHttp', @obj OUT\n        EXEC sp_OAMethod @obj, 'Open', NULL, 'POST', 'https:\/\/swsbackup.serviceobjects.com\/ev3\/soap.svc\/soap', false\n        EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'HOST', 'swsbackup.serviceobjects.com'\n        EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Type', 'text\/xml; charset=UTF-8'\n        EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'SOAPAction', '\"https:\/\/www.serviceobjects.com\/IEV3Library\/ValidateEmailAddress\"'\n        EXEC sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Length', @requestLength\n        EXEC sp_OAMethod @obj, 'send', NULL, @requestBody\n        EXEC sp_OAGetProperty @obj, 'Status', @responseCode OUTPUT\n        EXEC sp_OAGetProperty @obj, 'StatusText', @statusText OUTPUT\n        EXEC sp_OAGetProperty @obj, 'responseText', @response OUTPUT\n    END\nEND<\/pre>\n<\/div>\n<\/div><\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":3228,"menu_order":2,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-3497","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>EV3 - SOAP<\/title>\n<meta name=\"description\" content=\"C#Java PHP RoR Python ColdFusionVBApex TSQL Email Validation 3 C# Code Snippet EV3LibraryClient EV3Client_Backup = null; ValidateEmailResponse response =\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EV3 - SOAP\" \/>\n<meta property=\"og:description\" content=\"C#Java PHP RoR Python ColdFusionVBApex TSQL Email Validation 3 C# Code Snippet EV3LibraryClient EV3Client_Backup = null; ValidateEmailResponse response =\" \/>\n<meta property=\"og:url\" content=\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/\" \/>\n<meta property=\"og:site_name\" content=\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-29T16:41:05+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/\",\"name\":\"EV3 - SOAP\",\"isPartOf\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#website\"},\"datePublished\":\"2022-11-11T13:35:24+00:00\",\"dateModified\":\"2024-03-29T16:41:05+00:00\",\"description\":\"C#Java PHP RoR Python ColdFusionVBApex TSQL Email Validation 3 C# Code Snippet EV3LibraryClient EV3Client_Backup = null; ValidateEmailResponse response =\",\"breadcrumb\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/test.serviceobjects.com\/docs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DOTS Email Validation 3\",\"item\":\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"EV3 &#8211; Code Snippets and Sample Code\",\"item\":\"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"EV3 &#8211; SOAP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#website\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/\",\"name\":\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/test.serviceobjects.com\/docs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#organization\",\"name\":\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png\",\"contentUrl\":\"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png\",\"width\":2560,\"height\":1440,\"caption\":\"Service Objects | Contact, Phone, Email Verification | Data Quality Services\"},\"image\":{\"@id\":\"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EV3 - SOAP","description":"C#Java PHP RoR Python ColdFusionVBApex TSQL Email Validation 3 C# Code Snippet EV3LibraryClient EV3Client_Backup = null; ValidateEmailResponse response =","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"EV3 - SOAP","og_description":"C#Java PHP RoR Python ColdFusionVBApex TSQL Email Validation 3 C# Code Snippet EV3LibraryClient EV3Client_Backup = null; ValidateEmailResponse response =","og_url":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/","og_site_name":"Service Objects | Contact, Phone, Email Verification | Data Quality Services","article_modified_time":"2024-03-29T16:41:05+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/","url":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/","name":"EV3 - SOAP","isPartOf":{"@id":"https:\/\/test.serviceobjects.com\/docs\/#website"},"datePublished":"2022-11-11T13:35:24+00:00","dateModified":"2024-03-29T16:41:05+00:00","description":"C#Java PHP RoR Python ColdFusionVBApex TSQL Email Validation 3 C# Code Snippet EV3LibraryClient EV3Client_Backup = null; ValidateEmailResponse response =","breadcrumb":{"@id":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/ev3-soap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/test.serviceobjects.com\/docs\/"},{"@type":"ListItem","position":2,"name":"DOTS Email Validation 3","item":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/"},{"@type":"ListItem","position":3,"name":"EV3 &#8211; Code Snippets and Sample Code","item":"https:\/\/test.serviceobjects.com\/docs\/dots-email-validation-3\/ev3-code-snippets-and-sample-code\/"},{"@type":"ListItem","position":4,"name":"EV3 &#8211; SOAP"}]},{"@type":"WebSite","@id":"https:\/\/test.serviceobjects.com\/docs\/#website","url":"https:\/\/test.serviceobjects.com\/docs\/","name":"Service Objects | Contact, Phone, Email Verification | Data Quality Services","description":"","publisher":{"@id":"https:\/\/test.serviceobjects.com\/docs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/test.serviceobjects.com\/docs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/test.serviceobjects.com\/docs\/#organization","name":"Service Objects | Contact, Phone, Email Verification | Data Quality Services","url":"https:\/\/test.serviceobjects.com\/docs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/","url":"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png","contentUrl":"https:\/\/test.serviceobjects.com\/docs\/wp-content\/uploads\/2022\/08\/SO-logo-2560px-transparent.png","width":2560,"height":1440,"caption":"Service Objects | Contact, Phone, Email Verification | Data Quality Services"},"image":{"@id":"https:\/\/test.serviceobjects.com\/docs\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/3497","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/comments?post=3497"}],"version-history":[{"count":8,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/3497\/revisions"}],"predecessor-version":[{"id":10053,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/3497\/revisions\/10053"}],"up":[{"embeddable":true,"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/pages\/3228"}],"wp:attachment":[{"href":"https:\/\/test.serviceobjects.com\/docs\/wp-json\/wp\/v2\/media?parent=3497"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}