using System.Runtime.Serialization.Formatters.Soap;
-
I get the following message: The type or namespace name 'Soap' does not exist in the class or namespace 'System.Runtime.Serialization.Formatters' (are you missing an assembly reference?) On this line here: using System.Runtime.Serialization.Formatters.Soap; What am I missing or has something chnaged in .NET 1.1? (I'm trying to use the BaseSerializable class in this article: http://codeproject.com/soap/soapseraialize.asp )
-
I get the following message: The type or namespace name 'Soap' does not exist in the class or namespace 'System.Runtime.Serialization.Formatters' (are you missing an assembly reference?) On this line here: using System.Runtime.Serialization.Formatters.Soap; What am I missing or has something chnaged in .NET 1.1? (I'm trying to use the BaseSerializable class in this article: http://codeproject.com/soap/soapseraialize.asp )
I think the answer is in your question: ABean wrote: (are you missing an assembly reference?) According to the MSDN Help for System.Runtime.Serialization.Formatters.Soap.SoapFormatter Class[^] you need to reference the assembly System.Runtime.Serialization.Formatters.Soap (see the requirements section at the bottom of the page) To add a reference to this assembly in your project right click the requirements node under the project in the solution explorer and select Add Reference... Find the reference to the above assembly and add it. Does this help?
"You can have everything in life you want if you will just help enough other people get what they want." --Zig Ziglar The Second EuroCPian Event will be in Brussels on the 4th of September Can't manage to P/Invoke that Win32 API in .NET? Why not do interop the wiki way! My Blog