<!--   
To test:
run WCF test client software
add http://localhost:4063/PetlogFoundPet.svc as a service
or 
https://localhost:44327/PetlogFoundPet.svc

UAT
https://petlog-uat-thirdparty.azurewebsites.net/PetlogFoundPet.svc

Staging
https://petlog-kcplstaging-thirdparty.azurewebsites.net/PetlogFoundPet.svc

Live
https://services.thekennelclub.org.uk/PetlogFoundPet.svc

There are 4 mthods (1 main, 3 core)

Test()
TestWithDb()
ValidateXml(xml)
FoundPet(xml)

they have a single XML imput string.
Below are example XML string for use
-->

<!--  For FoundPet -->

<PetlogFoundPet>
	<ChipNumber>578095800014526</ChipNumber>
	<Source>VetFone</Source>
	<PinNumber>72118</PinNumber>
	<CategoryOfFinder>Vet</CategoryOfFinder>
	<Organisation>cromwell vet group</Organisation>
  <CategoryOfFinder>Vet</CategoryOfFinder>
	<ContactName>phoebe</ContactName>
	<ContactNumber>0148052222</ContactNumber>
	<Comments>Match found, details given.</Comments>
	<DateFound>2020-10-05</DateFound>
</PetlogFoundPet>


<!-- Single line for pasting into test application -->
<PetlogFoundPet><ChipNumber>578095800014526</ChipNumber><Source>VetFone</Source><PinNumber>72118</PinNumber><CategoryOfFinder>Vet</CategoryOfFinder><Organisation>cromwell vet group</Organisation><ContactName>phoebe</ContactName><ContactNumber>0148052222</ContactNumber><Comments>Match found, details given.</Comments><DateFound>2020-10-05</DateFound></PetlogFoundPet>


<!-- Example output string -->
<?xml version="1.0" standalone="yes"?>
<PetlogFoundPetReturn>
  <Status>FAIL</Status>
  <Text>The microchip or Petlog ID number is invalid or is not a registered Petlog microchip. Please check these details on your Petlog paperwork and try again. If you continue to experience problems please contact Petlog on 0844 4633 996. Administration lines are open 9am - 5pm Monday to Friday excluding bank holidays.</Text>
</PetlogFoundPetReturn>

