Created
December 28, 2010 18:35
-
-
Save chrisyoung/757518 to your computer and use it in GitHub Desktop.
StrikeIron Soap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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>[email protected]</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