|
From: Everson D. <DAE...@AG...> - 2001-09-10 15:22:59
|
FYI. Here is a web service (implemented with .NET) that returns a random bible verse in the form of XML. By using something like this we can add dynamic content to IPN which always helps draw people back. In some of Jonathan's documentation he mentioned displaying a verse from Psalms. Unfortunantely, this web service does not support getting verses from a certain book right now. We can specify the translation in the tr attribute. <http://randombible.godmail.com/randombible.asmx/GetRandomBible?tr=KJV> http://randombible.godmail.com/randombible.asmx/GetRandomBible?tr=KJV <?xml version="1.0" ?> <http://randombible.godmail.com/randombible.asmx/GetRandomBible?tr=KJV#> - <BibleVerseObject xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema" xmlns="http://tempuri.org/"> <tr>KJV</tr> <book>Psalms</book> <bookNumber>19</bookNumber> <chapter>28</chapter> <verse>8</verse> <content>The LORD [is] their strength, and he [is] the saving strength of his anointed.</content> </BibleVerseObject> |