Skip to content

Instantly share code, notes, and snippets.

@chrisyoung
Created December 28, 2010 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisyoung/757518 to your computer and use it in GitHub Desktop.
Save chrisyoung/757518 to your computer and use it in GitHub Desktop.
StrikeIron Soap
<!-- INPUT -->
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:wsdl="http://www.strikeiron.com"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header>
<LicenseInfo>
<RegisteredUser>
<Password>****</Password>
<UserID>****</UserID>
</RegisteredUser>
</LicenseInfo>
</env:Header>
<env:Body>
<VerifyEmail>
<Timeout>30</Timeout>
<Email>johndoe@strikeiron.com</Email>
</VerifyEmail>
</env:Body>
</env:Envelope>
<!-- OUTPUT -->
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Header xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<SubscriptionInfo xmlns="http://ws.strikeiron.com">
<LicenseStatusCode>0</LicenseStatusCode>
<LicenseStatus>Valid license key</LicenseStatus>
<LicenseActionCode>0</LicenseActionCode>
<LicenseAction>Decremented hit count</LicenseAction>
<RemainingHits>13</RemainingHits>
<Amount>0</Amount>
</SubscriptionInfo>
</Header>
<soap:Body>
<VerifyEmailResponse xmlns="http://www.strikeiron.com">
<VerifyEmailResult>
<ServiceStatus>
<StatusNbr>400</StatusNbr>
<StatusDescription>Invalid Input</StatusDescription>
</ServiceStatus>
<ServiceResult>
<EMail />
<LocalPart />
<DomainPart />
<RecommendedRetry>false</RecommendedRetry>
</ServiceResult>
</VerifyEmailResult>
</VerifyEmailResponse>
</soap:Body>
</soap:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment