Skip to content

Instantly share code, notes, and snippets.

@yetanotherchris
Created February 11, 2013 21:46
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 yetanotherchris/4757898 to your computer and use it in GitHub Desktop.
Save yetanotherchris/4757898 to your computer and use it in GitHub Desktop.
RSS Soap packet
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<FilterFeedsResponse xmlns="http://tempuri.org/">
<FilterFeedsResult>
<FeedItemSummary>
<Title>string</Title>
<TldName>string</TldName>
<Content>string</Content>
<PublishDate>string</PublishDate>
<Hash>int</Hash>
<FeedImage>string</FeedImage>
<Url>string</Url>
</FeedItemSummary>
<FeedItemSummary>
<Title>string</Title>
<TldName>string</TldName>
<Content>string</Content>
<PublishDate>string</PublishDate>
<Hash>int</Hash>
<FeedImage>string</FeedImage>
<Url>string</Url>
</FeedItemSummary>
</FilterFeedsResult>
</FilterFeedsResponse>
</soap:Body>
</soap:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment