THis is a little tricky with only a partial document, but...
I assume your SOAP xml document has some namespaces declared in the top.
Your error is probably a null pointer exception of some kind, since monsterData may contain a zero-sized list. In your XPath for monsterData you specify namespace prefixes for SOAP-ENV for the envelope, and OPM for most of your nodes, however on JAFolders you specify no namespace. Is this what you want? If JAFolder does have a namespace then your Xpath will return no matches, hence an empty list.
Try spitting out monsterData.length() or ubound(monsterData) (I'm not totally sure what language you are using) to see the number of nodes in the list.
holdmykidney
|