in reply to Parsing and inserting XML data

This may or may not be the cause of your problem but in 'twig_rcvr_server' you have:
$twig->parsefile($xml);
But you are not parsing a file you are parsing the XML content so that should be:
$twig->parse($xml);