soap question

hi all. i have this code:

[code] Dim sm As SOAPMethod
Dim sr As SOAPResult
// create the soap method and set the parameter(s)
sm = New SOAPMethod(“http://www.webservicex.net/BibleWebservice.asmx?WSDL”)
sm.Parameter(“BookTitle”) = “psalms”
sm.Parameter(“chapter”) = “1”
sm.Parameter(“Verse”) = “1”

// execute the method
sr = sm.Invoke(“GetBibleWordsByChapterAndVerse”)

// display the city portion of the result
If sr.Error Then
Msgbox(sr.ErrorMessage)
Else
MsgBox(sr.Result(“GetBibleWordsByChapterAndVerseResult”))
msgbox(sr.Result(“BibleWords”))
End If[/code]

how could i get just the BibleWords tag?

SRResult.document gives you the XMLDocument
You can use XQL on that to get individual elements.

http://documentation.xojo.com/index.php/XMLDocument