02-20-04 08:37 AM
Check this out:
http://msdn.microsoft.com/library/default.asp?
url=/library/en-us/dnbda/html/bdadotnetasync1.asp
Using a formatter may solve your problem.
-J
>-----Original Message-----
>Hello,
>
>I have a .NET based AIC that posts an XML string to an
>msmq queue. I set msmq to audit/log the message, and
when
>I look at it the original XML is corrupted as follows:
>the xml "<" and ">" tags are escaped to "<" and ">",
>and the xml is wrapped with an outer "<?xml
version="1.0"?
>
>Why is msmq doing this?? Here is the C# code I'm using
to
>post to the private msmq queue:
>
>System.Messaging.MessageQueue mq =
> new System.Messaging.MessageQueue (strQueueName);
>
>// Send string
>mq.Send(strMessage, strLabel,
>
System.Messaging.MessageQueueTransactionType.Single) ;
>
>.
>
[ Post a follow-up to this message ]
|