Hi, I am working on RegistrationException class in System.EnterpriseServices namepace. the method i am working on is GetObjectData(). I am trying to figure out how .net serializes the Errors in GetObjectData() method in this class. There is one hitch. It serializes a whole array of RegistrationErrorInfo classes. I am using serializer.cs. how should i modify serializer.cs to have it find out serialize all this data. i have attached the xml file that was created so far. thanks to duncan for helping me so far. all the best, -- Alexander Chan <[EMAIL PROTECTED]>
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <a1:RegistrationException id="ref-1" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/System.EnterpriseServices/System.EnterpriseServices%2C%20Version%3D1.0.3300.0%2C%20Culture%3Dneutral%2C%20PublicKeyToken%3Db03f5f7f11d50a3a"> <ClassName id="ref-3">System.EnterpriseServices.RegistrationException</ClassName> <Message id="ref-4">test</Message> <InnerException xsi:null="1"/> <HelpURL xsi:null="1"/> <StackTraceString xsi:null="1"/> <RemoteStackTraceString xsi:null="1"/> <RemoteStackIndex>0</RemoteStackIndex> <ExceptionMethod xsi:null="1"/> <HResult>-2146233087</HResult> <Source xsi:null="1"/> </a1:RegistrationException> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
