Sample XML Posting Response
The SmashFly server will require a response to each job action (insert, add, or delete) it sends.
Respond with the following RESPONSE XML:
<PostingResult>
<Result>Success</Result>
<Error/>
</PostingResult>
where the <PostingResult> node will contain either Success or Failure.
Note: Include an empty <Error /> node even on a successful post.
Sample Failure Response
If the result is Failure, you must provide the error that explains the failure in the <Error> node; for example:
<PostingResult>
<Result>Failure</Result>
<Error>Invalid Account Credentials</Error>
</PostingResult>