supermatchgame
Programmer
I have written some code that sends the XML from an XMLDocument into an MSMQ message. The message arrives at the queue fine but for some reason the format of the message is:
This is causing problems because my middleware engine is expecting the XML without the string wrapper and is refusing to process the message.
Can anyone please tell me if it's possible to send data to MSMQ without this <string></string> wrapper getting appended or if I need to approach this differently?
Thanks!
Code:
<?xml version="1.0"?><string>my xml.. </string>
This is causing problems because my middleware engine is expecting the XML without the string wrapper and is refusing to process the message.
Can anyone please tell me if it's possible to send data to MSMQ without this <string></string> wrapper getting appended or if I need to approach this differently?
Thanks!