Handling serialized xml when remoting

by Ritmo2k at 2013-02-13 18:57:07

I often encounter the scenario where xml files read in and cast to [XML] objects become tricky to work with
at the far end of a remoting session when passed through invoke-command as an argument.

Once received, if the elements are to deep, I seem to loose the ability to traverse them, does anyone know
any ways to handle Deserialized.System.Xml types at the far end of a remoting session or doc to help
understand how this data must be accessed once deserialized?

Thanks!
by Ritmo2k at 2013-02-14 19:20:16
Got this solved, converted the xml object to a string, shipped that off then converted back to an xml object.