Re: [ADVANCED-DOTNET] Alternatives to remoting

2007-03-07 Thread Marc Brooks
Some very interesting reading on IPC/Remoting here: http://blogs.msdn.com/jackg/archive/2007/03/05/net-remoting-appdomains-out-of-process-two-way-etc.aspx -- "I am Dyslexic of Borg. Resistors are fertile. Prepare to have your ass laminated." -- Dan Nitschke Marc C. Brooks http://musingmarc.blog

Re: [ADVANCED-DOTNET] XmlSerializer question...

2007-03-07 Thread Fernando Tubio
Yes, it is possible. For example, YourType obj = new YourType(); XmlSerializer serializer = new XmlSerializer( typeof( YourType ) ); XmlSerializerNamespaces namespaces = new XmlSerializerNamespaces( ); namespaces.Add( "", "" ); XmlWriterSettings settings = new XmlWriterSetting

[ADVANCED-DOTNET] XmlSerializer question...

2007-03-07 Thread Mike Andrews
Is it possible to create an XmlSerializer that will not create the xmlns attributes and add the encoding type to the resultant xml serialized document? Here's what's created: http://www.w3.org/2001/XMLSchema-instance"; xmlns:xsd=" http://www.w3.org/2001/XMLSchema"; id="afac03d2-2a9c-42d0-a93c

Re: [ADVANCED-DOTNET] Alternatives to remoting

2007-03-07 Thread Dean Cleaver
Sadly my final outcome was to use the GAC for about 6 components. Another complication I had to overcome was the remoting configuration - I use a customised compression sink based on Ingo Rammer's sample, but I cannot figure out how to configure that in code - so I have to ship a .config file, a

Re: [ADVANCED-DOTNET] Alternatives to remoting

2007-03-07 Thread Sébastien Lorion
Out of curiosity, any follow-up on this ? I might run into this same kind of issues soon... Sébastien On 2/28/07, Dean Cleaver <[EMAIL PROTECTED]> wrote: Hi, My issues aren't with the returned serialisable classes - it's with the remote classes. Strangely, I can create an instance of my remote