System Lead Posting Instructions
This page is designed to assist you in finding help and examples on how to send leads to this system.
Required Items
Be sure that you have the field definition document provided by the company you are posting to. If you do not have this information, please contact the receiving company for more information.
The field definition document specifies what your VID, LID, and AID values are as well as the field names you will be posting in.
The example code contained within this site DOES NOT contain actual field names or values, the correct field names are located in your field definition document.
If you are processing an XML request, please be sure you have the XML schema document provided by the receiving company.
Contacting Support
If you are having issues posting to this system you may contact support using the information above.
Please note, however, general support is not able to assist in problems with account criteria or other account issues.
General support is provided for technical assistance regarding the mechanics of the POST. For account information and questions, please contact the receiving company.
To get started, select the method above to see details on how each method can be implemented.
HTTP URL Encoded Form POST
This option allows you to POST the information through a URL encoded form post. This document explains how to generate a POST from a lead form or back-end code such as ASP, ASP.NET, PHP, etc...
Sending leads straight from a lead form:
This allows you to post information straight from your lead form.
To send leads in from a lead form you would put the POST URL into the form action attribute located in the form tag.
Form Tag Example
<form action="https://impact.mysecurecontract.com/LeadReceiver" method="post">
<input type="hidden" name="vid" value="1234">
<input type="hidden" name="lid" value="1234">
<input type="hidden" name="aid" value="1234">
<input type="hidden" name="successredirecturl" value="http://exampleform.testsite.com/thankyou.html">
<input type="hidden" name="rejectredirecturl" value="http://exampleform.testsite.com/unabletoprocess.html">
.....
</form>
Once the form is submitted, the user will be redirected to the urls located in the successredirecturl or rejectredirecturl.
Note: This method although supported, is NOT recommended. Since the vid, lid, and aid are located in the source of the page, anyone who views this source could see these values and potentially force leads in without your knowledge.
Processing POST through server-side code:
The most common way of getting information into this system is to use server-side code such as ASP, ASP.NET, PHP, etc. to generate the POST and process it against the server.
Here are some quick examples of generating a POST using common languages:
Classic ASP
<%
Dim objWinHttp
Dim strResponseStatus
Dim strResponseText
Set objWinHttp = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
objWinHttp.Open "POST", "https://impact.mysecurecontract.com/LeadReceiver", False
objWinHttp.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objWinHttp.Send "Name=John&Date=" & Server.URLEncode(Now())
strResponseStatus = objWinHttp.Status & " " & objWinHttp.StatusText
strResponseText = objWinHttp.ResponseText
Set objWinHttp = Nothing
%>
.NET Framework
public string GeneratePost()
{
ASCIIEncoding encoding = new ASCIIEncoding();
byte[] data = encoding.GetBytes("FirstName=John&LastName=Doe&Email=noemail@leads.com");
string deliveryAddress = "https://impact.mysecurecontract.com/LeadReceiver";
HttpWebRequest RequestObj = (HttpWebRequest)WebRequest.Create(deliveryAddress);
RequestObj.Method = "POST";
RequestObj.ContentType = "application/octet-stream";
RequestObj.ContentLength = data.Length;
Stream RequestStream = RequestObj.GetRequestStream();
RequestStream.Write(data, 0, data.Length);
RequestStream.Close();
HttpWebResponse HttpResponse;
HttpResponse = (HttpWebResponse)RequestObj.GetResponse();
Stream streamResponse = HttpResponse.GetResponseStream();
StreamReader streamRead = new StreamReader(streamResponse);
return streamRead.ReadToEnd();
}
PHP Using cURL
<?php
$c = curl_init();
curl_setopt($c, CURLOPT_URL, 'https://impact.mysecurecontract.com/LeadReceiver');
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, 'FirstName=John&LastName=Doe&Email=noemail@leads.com');
curl_exec ($c);
curl_close ($c);
?>
Perl
use LWP::UserAgent;
my $ua = new LWP::UserAgent;
my $response = $ua->post('https://impact.mysecurecontract.com/LeadReceiver',
{
FirstName => 'John',
LastName => 'Doe',
Email => 'noemail@leads.com'
});
my $content = $response->content;
Java
String data = URLEncoder.encode("FirstName", "UTF-8") + "=" + URLEncoder.encode("John", "UTF-8");
data += "&" + URLEncoder.encode("LastName", "UTF-8") + "=" + URLEncoder.encode("Doe", "UTF-8");
data += "&" + URLEncoder.encode("Email", "UTF-8") + "=" + URLEncoder.encode("noemail@leads.com", "UTF-8");
URL url = new URL("https://impact.mysecurecontract.com/LeadReceiver");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = rd.readLine()) != null) {
// Process line...
}
wr.close();
rd.close();
Explanation of System Response:
This system will respond with an XML document, this XML document will have the following parameters:
- isValidPost
- (True or False) This parameter signifies if the POST was accepted by the server.
- ResponseType
- No Error - No errors were reported while processing this record
- System ID Missing - Unable to validate the VID and LID combination
- Lead Type ID Missing - LID was not included in the POST
- Vendor ID Missing - VID was not included in the POST
- No Account Found - Lead was not able to be assigned to an account (this may be due to criteria, quantity maxes, etc...)
- Outside Criteria - Criteria match failed for the AID supplied
- Duplicate Lead - Lead has already been submitted to the system
- Account Disabled - The AID supplied has been disabled
- Post Over Max - Quantity cap has been hit
- Data Errors - Information included in the POST was invalid
- ResponseDetails
- Information on the outcome of the POST, this may contain the reject reason as well as more detail.
- LeadIdentifier
- Assigned unique identifier for the POST
- VendorAccountAssigned
- Signifies the AID the lead was assigned to
- PendingQCReview
- (True or False) - This value signifies if the submitted record is set to receive quality verification
- Price
- Accepted price - This is set by the AID the record is assigned to
- RedirectURL
- (Optional) - This value specifies the location the user who submitted the lead should be directed to
Example Response XML
<?xml version="1.0" encoding="utf-8"?>
<PostResponse xmlns="https://www.leadproweb.com/">
<isValidPost></isValidPost>
<ResponseType></ResponseType>
<ResponseDetails></ResponseDetails>
<LeadIdentifier></LeadIdentifier>
<VendorAccountAssigned></VendorAccountAssigned>
<PendingQCReview></PendingQCReview>
<Price></Price>
<RedirectURL></RedirectURL>
</PostResponse>
HTTP GET Request
This option allows you to request the information through a URL GET request.
Processing GET request from a browser:
You can use a web browser to generate a GET request to the server.
Example GET request using the browser's address bar
https://impact.mysecurecontract.com/LeadReceiver?VID=1234&LID=1234&AID=1234&FirstName=John&LastName=Doe&Email=noemail@leads.com
Processing GET request through server-side code:
The most common way of getting a response from this system is to use server-side code such as ASP, ASP.NET, PHP, etc. to generate the request and process it against the server.
Here are some quick examples of generating a GET request using common languages:
Classic ASP
<%
Dim objWinHttp
Dim strResponseStatus
Dim strResponseText
Set objWinHttp = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
objWinHttp.Open "GET", "https://impact.mysecurecontract.com/LeadReceiver", False
objWinHttp.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objWinHttp.Send "Name=John&Date=" & Server.URLEncode(Now())
strResponseStatus = objWinHttp.Status & " " & objWinHttp.StatusText
strResponseText = objWinHttp.ResponseText
Set objWinHttp = Nothing
%>
.NET Framework
public string GenerateRequest()
{
ASCIIEncoding encoding = new ASCIIEncoding();
byte[] data = encoding.GetBytes("FirstName=John&LastName=Doe&Email=noemail@leads.com");
string deliveryAddress = "https://impact.mysecurecontract.com/LeadReceiver";
HttpWebRequest RequestObj = (HttpWebRequest)WebRequest.Create(deliveryAddress);
RequestObj.Method = "GET";
RequestObj.ContentType = "application/octet-stream";
RequestObj.ContentLength = data.Length;
Stream RequestStream = RequestObj.GetRequestStream();
RequestStream.Write(data, 0, data.Length);
RequestStream.Close();
HttpWebResponse HttpResponse;
HttpResponse = (HttpWebResponse)RequestObj.GetResponse();
Stream streamResponse = HttpResponse.GetResponseStream();
StreamReader streamRead = new StreamReader(streamResponse);
return streamRead.ReadToEnd();
}
Explanation of System Response:
This system will respond with an XML document, this XML document will have the following parameters:
- isValidPost
- (True or False) This parameter signifies if the POST was accepted by the server.
- ResponseType
- No Error - No errors were reported while processing this record
- System ID Missing - Unable to validate the VID and LID combination
- Lead Type ID Missing - LID was not included in the POST
- Vendor ID Missing - VID was not included in the POST
- No Account Found - Lead was not able to be assigned to an account (this may be due to criteria, quantity maxes, etc...)
- Outside Criteria - Criteria match failed for the AID supplied
- Duplicate Lead - Lead has already been submitted to the system
- Account Disabled - The AID supplied has been disabled
- Post Over Max - Quantity cap has been hit
- Data Errors - Information included in the POST was invalid
- ResponseDetails
- Information on the outcome of the POST, this may contain the reject reason as well as more detail.
- LeadIdentifier
- Assigned unique identifier for the POST
- VendorAccountAssigned
- Signifies the AID the lead was assigned to
- PendingQCReview
- (True or False) - This value signifies if the submitted record is set to receive quality verification
- Price
- Accepted price - This is set by the AID the record is assigned to
- RedirectURL
- (Optional) - This value specifies the location the user who submitted the lead should be directed to
Example Response XML
<?xml version="1.0" encoding="utf-8"?>
<PostResponse xmlns="https://www.leadproweb.com/">
<isValidPost></isValidPost>
<ResponseType></ResponseType>
<ResponseDetails></ResponseDetails>
<LeadIdentifier></LeadIdentifier>
<VendorAccountAssigned></VendorAccountAssigned>
<PendingQCReview></PendingQCReview>
<Price></Price>
<RedirectURL></RedirectURL>
</PostResponse>
HTTP XML POST
This option allows you to POST an XML document containing the lead information. This document explains how to generate the POST from back-end code such as ASP, ASP.NET, PHP, etc...
Processing the XML POST through server-side code:
The most common way of getting information into this system is to use server-side code such as ASP, ASP.NET, PHP, etc. to generate the XML POST and process it against the server.
Here are some quick examples of generating an XML POST using common languages:
Classic ASP
<%
xmlString = "<Leads vid=""1234" lid=""1234" aid=""1234"">" & vbcrlf
xmlString = xmlString & "<Lead reference=""ABC1234"">" & vbcrlf
xmlString = xmlString & " <FirstName>John</FirstName>" & vbcrlf
xmlString = xmlString & " <LastName>Doe</LastName>" & vbcrlf
xmlString = xmlString & " <Email>noemail@lead.com</Email>" & vbcrlf
xmlString = xmlString & "</Lead>"
xmlString = xmlString & "</Leads>"
Set SendDoc = server.createobject("Microsoft.XMLDOM")
SendDoc.ValidateOnParse= True
SendDoc.LoadXML(xmlString)
sURL = "https://impact.mysecurecontract.com/LeadReceiver"
Set poster = Server.CreateObject("MSXML2.ServerXMLHTTP")
poster.open "POST", sURL, false
poster.setRequestHeader "CONTENT_TYPE", "text/xml"
poster.send xmlString
Set NewDoc = server.createobject("Microsoft.XMLDOM")
newDoc.ValidateOnParse= True
newDoc.LoadXML(poster.responseTEXT)
Set XMLSend = NewDoc
Set poster = Nothing
%>
.NET Framework
public string GeneratePost()
{
string xmlString = @"<Leads vid=""1234"" lid=""1234"" aid=""1234"">
<Lead reference=""ABC1234"">
<FirstName>John</FirstName>
<LastName>Doe</LastName>
<Email>noemail@leads.com</Email>
</Lead>
</Leads>";
ASCIIEncoding encoding = new ASCIIEncoding();
byte[] data = encoding.GetBytes(xmlString);
string deliveryAddress = "https://impact.mysecurecontract.com/LeadReceiver";
HttpWebRequest RequestObj = (HttpWebRequest)WebRequest.Create(deliveryAddress);
RequestObj.Method = "POST";
RequestObj.ContentType = "text/xml";
RequestObj.ContentLength = data.Length;
Stream RequestStream = RequestObj.GetRequestStream();
RequestStream.Write(data, 0, data.Length);
RequestStream.Close();
HttpWebResponse HttpResponse;
HttpResponse = (HttpWebResponse)RequestObj.GetResponse();
Stream streamResponse = HttpResponse.GetResponseStream();
StreamReader streamRead = new StreamReader(streamResponse);
return streamRead.ReadToEnd();
}
PHP Using cURL
<?php
$postdata = "<Leads vid='1234' lid='1234' aid='1234'>
<Lead reference='ABC1234'>
<FirstName>Test</FirstName>
<LastName>ing</LastName>
<Email>noemail@lead.com</Email>
</Lead>
</Leads>";
$user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://impact.mysecurecontract.com/LeadReceiver");
curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
$result = curl_exec($ch);
curl_close($ch);
return $result;
?>
Perl
#!/usr/bin/perl -w
use strict;
use LWP::UserAgent;
use HTTP::Request;
my $xmlString = '<Leads vid="1234" lid="1234" aid="1234">
<Lead reference="ABC1234">
<FirstName>John</FirstName>
<LastName>Doe</LastName>
<Email>noemail@lead.com</Email>
</Lead>
</Leads>';
my $userAgent = LWP::UserAgent->new();
my $request = HTTP::Request->new(POST => 'https://impact.mysecurecontract.com/LeadReceiver');
$request->content($xmlString);
$request->content_type("text/xml; charset=utf-8");
my $response = $userAgent->request($request);
if($response->code == 200) {
print $response->as_string;
}
else {
print $response->error_as_HTML;
}
Java
URL url = new URL("https://impact.mysecurecontract.com/LeadReceiver");
String document = "<Leads vid='1234' lid='1234' aid='1234'>
<Lead reference='ABC1234'>
<FirstName>Test</FirstName>
<LastName>ing</LastName>
<Email>noemail@lead.com</Email>
</Lead>
</Leads>";
FileReader fr = new FileReader(document);
char[] buffer = new char[1024*10];
int b_read = 0;
if ((b_read = fr.read(buffer)) != -1)
{
URLConnection urlc = url.openConnection();
urlc.setRequestProperty("Content-Type","text/xml");
urlc.setDoOutput(true);
urlc.setDoInput(true);
PrintWriter pw = new PrintWriter(urlc.getOutputStream());
pw.write(buffer, 0, b_read);
pw.close();
BufferedReader in = new BufferedReader(new InputStreamReader(urlc.getInputStream()));
String inputLine;
while ((res_line = in.readLine()) != null)
System.out.println(res_line);
in.close();
}
Explanation of System Response:
This system will respond with an XML document, this XML document will have the following parameters:
- isValidPost
- (True or False) This parameter signifies if the POST was accepted by the server.
- ResponseType
- No Error - No errors were reported while processing this record
- System ID Missing - Unable to validate the VID and LID combination
- Lead Type ID Missing - LID was not included in the POST
- Vendor ID Missing - VID was not included in the POST
- No Account Found - Lead was not able to be assigned to an account (this may be due to criteria, quantity maxes, etc...)
- Outside Criteria - Criteria match failed for the AID supplied
- Duplicate Lead - Lead has already been submitted to the system
- Account Disabled - The AID supplied has been disabled
- Post Over Max - Quantity cap has been hit
- Data Errors - Information included in the POST was invalid
- ResponseDetails
- Information on the outcome of the POST, this may contain the reject reason as well as more detail.
- LeadIdentifier
- Assigned unique identifier for the POST
- VendorAccountAssigned
- Signifies the AID the lead was assigned to
- PendingQCReview
- (True or False) - This value signifies if the submitted record is set to receive quality verification
- Price
- Accepted price - This is set by the AID the record is assigned to
- RedirectURL
- (Optional) - This value specifies the location the user who submitted the lead should be directed to
Example Response XML
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPostResponse xmlns="https://www.leadproweb.com/">
<PostResponse>
<isValidPost></isValidPost>
<ResponseType></ResponseType>
<ResponseDetails></ResponseDetails>
<LeadIdentifier></LeadIdentifier>
<VendorAccountAssigned></VendorAccountAssigned>
<PendingQCReview></PendingQCReview>
<Price></Price>
<RedirectURL></RedirectURL>
</PostResponse>
<PostResponse>
<isValidPost></isValidPost>
<ResponseType></ResponseType>
<ResponseDetails></ResponseDetails>
<LeadIdentifier></LeadIdentifier>
<VendorAccountAssigned></VendorAccountAssigned>
<PendingQCReview></PendingQCReview>
<Price></Price>
<RedirectURL></RedirectURL>
</PostResponse>
</ArrayOfPostResponse>
XML Schema Validation
This system is provided to help troubleshoot XML format issues. This service does not validate account requirements such as criteria and quantity maxes.
Processing the XML POST to the validation service through server-side code:
The most common way of checking the XML information is to use server-side code such as ASP, ASP.NET, PHP, etc. to generate the XML POST and process it against the validation service.
Here are some quick examples of generating an XML POST using common languages:
Classic ASP
<%
xmlString = "<Leads vid=""1234" lid=""1234" aid=""1234"">" & vbcrlf
xmlString = xmlString & "<Lead reference=""ABC1234"">" & vbcrlf
xmlString = xmlString & " <FirstName>John</FirstName>" & vbcrlf
xmlString = xmlString & " <LastName>Doe</LastName>" & vbcrlf
xmlString = xmlString & " <Email>noemail@lead.com</Email>" & vbcrlf
xmlString = xmlString & "</Lead>"
xmlString = xmlString & "</Leads>"
Set SendDoc = server.createobject("Microsoft.XMLDOM")
SendDoc.ValidateOnParse= True
SendDoc.LoadXML(xmlString)
sURL = "https://impact.mysecurecontract.com/XMLSchemaValidation"
Set poster = Server.CreateObject("MSXML2.ServerXMLHTTP")
poster.open "POST", sURL, false
poster.setRequestHeader "CONTENT_TYPE", "text/xml"
poster.send xmlString
Set NewDoc = server.createobject("Microsoft.XMLDOM")
newDoc.ValidateOnParse= True
newDoc.LoadXML(poster.responseTEXT)
Set XMLSend = NewDoc
Set poster = Nothing
%>
.NET Framework
public string GeneratePost()
{
string xmlString = @"<Leads vid=""1234"" lid=""1234"" aid=""1234"">
<Lead reference=""ABC1234"">
<FirstName>John</FirstName>
<LastName>Doe</LastName>
<Email>noemail@leads.com</Email>
</Lead>
</Leads>";
ASCIIEncoding encoding = new ASCIIEncoding();
byte[] data = encoding.GetBytes(xmlString);
string deliveryAddress = "https://impact.mysecurecontract.com/XMLSchemaValidation";
HttpWebRequest RequestObj = (HttpWebRequest)WebRequest.Create(deliveryAddress);
RequestObj.Method = "POST";
RequestObj.ContentType = "text/xml";
RequestObj.ContentLength = data.Length;
Stream RequestStream = RequestObj.GetRequestStream();
RequestStream.Write(data, 0, data.Length);
RequestStream.Close();
HttpWebResponse HttpResponse;
HttpResponse = (HttpWebResponse)RequestObj.GetResponse();
Stream streamResponse = HttpResponse.GetResponseStream();
StreamReader streamRead = new StreamReader(streamResponse);
return streamRead.ReadToEnd();
}
PHP Using cURL
<?php
$postdata = "<Leads vid='1234' lid='1234' aid='1234'>
<Lead reference='ABC1234'>
<FirstName>Test</FirstName>
<LastName>ing</LastName>
<Email>noemail@lead.com</Email>
</Lead>
</Leads>";
$user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://impact.mysecurecontract.com/XMLSchemaValidation");
curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
$result = curl_exec($ch);
curl_close($ch);
return $result;
?>
Perl
#!/usr/bin/perl -w
use strict;
use LWP::UserAgent;
use HTTP::Request;
my $xmlString = '<Leads vid="1234" lid="1234" aid="1234">
<Lead reference="ABC1234">
<FirstName>John</FirstName>
<LastName>Doe</LastName>
<Email>noemail@lead.com</Email>
</Lead>
</Leads>';
my $userAgent = LWP::UserAgent->new();
my $request = HTTP::Request->new(POST => 'https://impact.mysecurecontract.com/XMLSchemaValidation');
$request->content($xmlString);
$request->content_type("text/xml; charset=utf-8");
my $response = $userAgent->request($request);
if($response->code == 200) {
print $response->as_string;
}
else {
print $response->error_as_HTML;
}
Java
URL url = new URL("https://impact.mysecurecontract.com/XMLSchemaValidation");
String document = "<Leads vid='1234' lid='1234' aid='1234'>
<Lead reference='ABC1234'>
<FirstName>Test</FirstName>
<LastName>ing</LastName>
<Email>noemail@lead.com</Email>
</Lead>
</Leads>";
FileReader fr = new FileReader(document);
char[] buffer = new char[1024*10];
int b_read = 0;
if ((b_read = fr.read(buffer)) != -1)
{
URLConnection urlc = url.openConnection();
urlc.setRequestProperty("Content-Type","text/xml");
urlc.setDoOutput(true);
urlc.setDoInput(true);
PrintWriter pw = new PrintWriter(urlc.getOutputStream());
pw.write(buffer, 0, b_read);
pw.close();
BufferedReader in = new BufferedReader(new InputStreamReader(urlc.getInputStream()));
String inputLine;
while ((res_line = in.readLine()) != null)
System.out.println(res_line);
in.close();
}
Explanation of System Response:
This system will respond with an XML document, this XML document will have the following parameters:
- Result
- This is the overall result of the check, this will let you know if any of the leads located in the XML failed the validation check.
- ValidationLeads
- ItemID - The index of the lead in the XML
- Result - Result of check
- Reference - Reference attribute on the lead located in <Lead reference="">
- ValidationErrors - An array of all errors generated from the validation check
Example Response XML
<?xml version="1.0" encoding="utf-8"?>
<ValidationResult xmlns="https://www.leadproweb.com/">
<Result></Result>
<ValidationLeads>
<ValidationLead>
<ItemID></ItemID>
<Result></Result>
<Reference></Reference>
<ValidationErrors>
<ValidationError d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
<ValidationError d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
</ValidationErrors>
</ValidationLead>
<ValidationLead>
<ItemID></ItemID>
<Result></Result>
<Reference></Reference>
<ValidationErrors>
<ValidationError d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
<ValidationError d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
</ValidationErrors>
</ValidationLead>
</ValidationLeads>
</ValidationResult>
|