|
|
| RichTheHSTGuy 2004-10-22, 5:49 pm |
| I'm having diffuculty getting an XML document through MSMQT. At 1 time
sending in xml in a string it worked like it was supposed to but if I send it
in unicode it doesn't work at all, nothing happens in HAT or otherwise. I
can't remember exactly what I had done to make it work can anyone help with
ideas of the type of xml to make it work.
| |
| Jason Storey 2004-10-22, 8:47 pm |
| Have you tried working with a different UTF?
"RichTheHSTGuy" <RichTheHSTGuy@discussions.microsoft.com> wrote in message
news:33882C2A-77B2-49CF-A976-2158B6ACA18A@microsoft.com...
> I'm having diffuculty getting an XML document through MSMQT. At 1 time
> sending in xml in a string it worked like it was supposed to but if I send
> it
> in unicode it doesn't work at all, nothing happens in HAT or otherwise. I
> can't remember exactly what I had done to make it work can anyone help
> with
> ideas of the type of xml to make it work.
| |
| Nick Doyle 2004-10-25, 5:49 pm |
| I would:
1. Check system error log
2. Check pipeline.transactional == messages.transactional
Nick
"RichTheHSTGuy" wrote:
> I'm having diffuculty getting an XML document through MSMQT. At 1 time
> sending in xml in a string it worked like it was supposed to but if I send it
> in unicode it doesn't work at all, nothing happens in HAT or otherwise. I
> can't remember exactly what I had done to make it work can anyone help with
> ideas of the type of xml to make it work.
| |
| Matt Milner 2004-10-25, 5:49 pm |
| Check the sample in the SDK on how to send wrapped or unwrapped (I think
those are the terms) data. BizTalk prefers that your message is not a string
but that you set the message stream instead.
matt
"RichTheHSTGuy" <RichTheHSTGuy@discussions.microsoft.com> wrote in message
news:33882C2A-77B2-49CF-A976-2158B6ACA18A@microsoft.com...
> I'm having diffuculty getting an XML document through MSMQT. At 1 time
> sending in xml in a string it worked like it was supposed to but if I send
> it
> in unicode it doesn't work at all, nothing happens in HAT or otherwise. I
> can't remember exactly what I had done to make it work can anyone help
> with
> ideas of the type of xml to make it work.
| |
| Nick Doyle 2004-11-11, 7:46 am |
| First, for debugging this sort of thing I would create a file send port
(passthrough pipeline) with filter set to BTS.ReceivePortName == (your
inbound port)
Helps a lot.
Second, to send xml over msmqt I wrote my own messageformatter (easier than
you might think) according to this :
http://support.microsoft.com/kb/310683/EN-US/
KB article.
Just a copy-paste job and worked well.
Then you set Message[Queue].Formatter = new YourFormatter()
Nick
|
|
|
|