dynamic setting of encoding on serializer?

2003-12-12 Thread Christopher Painter-Wakefield
Is there any way to dynamically set the encoding of output on a serializer, specifically the XML serializer? I have a customer who is having trouble handing UTF-8 output from my application (he is using Lotus Notes), and would like me to supply a different encoding. I can just create a

Re: dynamic setting of encoding on serializer?

2003-12-12 Thread Jorg Heymans
The fact that serializers don't accept parameters and don't have access to the objecmodel has come up before here and is indeed a pain. Can you maybe add a node to the xml using a stylesheet transformer (they do accept parameters), and then filter out this node in the serializer and remove it

Re: dynamic setting of encoding on serializer?

2003-12-12 Thread Christopher Painter-Wakefield
Thanks - that's a big help, although I may just take the path of least resistance and hand-configure for now :) -Christopher The fact that serializers don't accept parameters and don't have access to the objecmodel has come up before here and is indeed a pain. Can you maybe add a node to