Hello ,
Thank you for posting. Currently we are finding proper resource to assist
you on this issue and will update you as soon as possible.
Thanks,
Luke Zhang
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
> My data may contain the characters < ,&, and > The system I'm sending
> them to wants them to be changed to < & and > respectivily.
It shouldn't need to for > because that's not a markup character,
it's just data when it occurs in normal text; but maybe the target
system doesn't know that.
> So I had gone into the data and was changing them over in the code. However
> when they hit the serializer I end up with
>
> &#60; &#38; and &#62;
>
> How can I prevent the serializer from changing this incorrectly?
My guess is you shouldn't have changed them at all, because now the
& is being output as &
Before, what were they outputting as?
///Peter

Signature
XML FAQ: http://xml.silmaril.ie/
jamie - 27 Apr 2006 00:32 GMT
I've spoken with them and it turns out their documentation is out of date.
The < & and > was put in place for people manually generating
XML files and not using something like the serializer. They now accept the
standard translation so I can undo my changes.
>> My data may contain the characters < ,&, and > The system I'm sending
>> them to wants them to be changed to < & and > respectivily.
[quoted text clipped - 16 lines]
>
> ///Peter
Kevin Yu [MSFT] - 27 Apr 2006 08:53 GMT
Hi Jamie,
As far as I know the escaping is done automatically by the serializer.
Because these characters have special meaning, we have to change them to
other codes. Please don't change them manually, or the deserialization will
fail.
Kevin Yu
Microsoft Online Community Support
============================================================================
==========================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
============================================================================
==========================
(This posting is provided "AS IS", with no warranties, and confers no
rights.)