You've done it right by assigning a made up prefix to match the default prefix in the source xml except that your namespace URIs don't exactly match the ones in setProperty, probably a typo. To select an element do:
Code:
Dim oNode
Set oNode = objXMLDOM.selectSingleNode("/Talk:TalkMessage/Talk:Body/Talka:Notification")
If Not oNode Is Nothing Then
'Process
Else
'Don't process
End If
Joe (MVP - xml)
assuming xml like:
Code:
<TalkMessage xmlns="http://www.xyz.co.uk/CM/envelope">
<Header>
Header stuff
</Header>
<Body>
<Notification xmlns="http://www.talk.co.uk/gateway/notification">
Notification data
</Notification>
</Body>
</TalkMessage>