sending XML via MSMQ

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i'm working on an app that needs to send large XML files from a server to
remote devices via MSMQ. what is the best (ie: most efficient) object type
to use for the body of the message? should i use 'string'? XmlDocument?
something else?

thanks!
 
"XML" and "efficient" aren't really compatible terms. XML is a string, so
if you want to send raw XML, that's fine. If you ewant efficient you should
compress it before sending.
 
Back
Top