473,608 Members | 2,410 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Error serializing derived Custom Collection Class

I am receiving an error stating that File or Assembly name
<filname.dll> , or one of its dependencies, was not found

In one assembly I have three abstract classes

In another I have three derived classes from the abstract classes

The 1st class contains the 2nd class
The 2nd class is a custom collection for the 3rd class

when I serialize the 1st class I am receiving the error. The classes
look like the following:

Abstract classes:

using System;
using System.Xml.Seri alization;

namespace AbstractClasses
{
public abstract class ContainerBase
{
private LocationsCollec tionBase _locations = null;
public ContainerBase()
{
}

[XmlIgnore()]
public virtual LocationsCollec tionBase Locations
{
get
{
return this._locations ;
}
set
{
this._locations = value;
}
}
}
}
using System;
using System.Xml.Seri alization;

namespace AbstractClasses
{
public class LocationBase
{
public LocationBase()
{
}
}
}
using System;
using System.Collecti ons;
using System.Xml.Seri alization;

namespace AbstractClasses
{
public abstract class LocationsCollec tionBase : ICollection
{
private ArrayList _locationsColle ction;

public LocationsCollec tionBase()
{
this._locations Collection = new ArrayList();
}

public virtual int Add ( LocationBase Location)
{
return this._locations Collection.Add (Location);
}

[XmlIgnore()]
public virtual LocationBase this [int i]
{
get
{
return (LocationBase)t his._locationsC ollection[i];
}
set
{
this._locations Collection[i] = value;
}
}

#region ICollection Members
[XmlIgnore()]
public virtual bool IsSynchronized
{
get
{
return this._locations Collection.IsSy nchronized;
}
}

[XmlIgnore()]
public virtual int Count
{
get
{
return this._locations Collection.Coun t;
}
}

public virtual void CopyTo(Array array, int index)
{
this._locations Collection.Copy To(array,index) ;
}

[XmlIgnore()]
public virtual object SyncRoot
{
get
{
return this._locations Collection.Sync Root;
}
}

#endregion

#region IEnumerable Members

public virtual IEnumerator GetEnumerator()
{
// TODO: Add LocationsCollec tionBase.GetEnu merator implementation
return null;
}

#endregion
}
}
Derived classes:

using System;

namespace DerivedClasses
{
public class Container : AbstractClasses .ContainerBase
{
public Container()
{
base.Locations = new LocationsCollec tion();
}

public override AbstractClasses .LocationsColle ctionBase Locations
{
get
{
return base.Locations;
}
set
{
base.Locations = value;
}
}

}
}
using System;

namespace DerivedClasses
{
public class Location : AbstractClasses .LocationBase
{
public Location()
{
}

public virtual string LocationName
{
get
{
//return base.LocationNa me;
return "Location: " + DateTime.Now.To String();
}
}
}
}

The code to serialize looks like:

StreamWriter writer = new
StreamWriter(@" C:\windows\temp \serializetest\ Container1.xml" );
DerivedClasses. Container Container1 = new DerivedClasses. Container();
XmlSerializer serializer1 = new
XmlSerializer(t ypeof(DerivedCl asses.Container ));
serializer1.Ser ialize(writer.B aseStream,Conta iner1);
Does anybody know what is wrong?

thanks,
-a.n.
Nov 12 '05 #1
0 2483

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3493
by: Craig Schneider | last post by:
// Can anyone explain the bizarre XML Serialization behavior seen in the following code. // It seems that a collection can not be XML Serialized if it contains an Add() method // with a single parameter where that parameter is of a type in the System.Data namespace // (or a class derived from something in the System.Data namespace). // Is there any way to prevent this from blowing up? using System;
2
3286
by: Aleksei Guzev | last post by:
Imagine one writing a class library CL1 for data storage. He defines classes ‘DataItem’ and ‘DataRecord’ so that the latter contains a collection of the former. And he derives class ‘IntItem’ from ‘DataItem’ public class DataItem { public DataItem() {}
2
3754
by: Phillip Galey | last post by:
I have an object called Place which contains only string properties and has the <Serializable()> flag before the class name declaration. I also have a collection object called Places, which is implemented using Inherits System.Collections.Specialized.NameObjectCollectionBase and also has the <Serializable()> flag before the class name declaration. In the calling code, I'm successfully serializing the object to an XML file using a...
0
1444
by: Jordan Bowness | last post by:
I make a similar post in another newsgroup, but this example is simplified somewhat. I have a component (cmpMyComponent) with 2 properties. The 1st property is a string value (Description) and the 2nd property is a strongly typed collection class (myCollectionProperty). The collection contains a simple class (myCustomClass) which has 1 text property (TextProperty).
3
11750
by: RandomEngineer | last post by:
So here's the challenge... How can a collection (System.Collections.Generic.IList) of some custom type be serialized in a web service using .NET 2.0? Below are the class and the web methods in question. The interesting thing is that at each step of the way, DAL & Biz, the someType class is decorated with the Serializable attribute. And the someTypes collection in the web method is correctly populated with the data after the call to...
26
5349
by: nyathancha | last post by:
Hi, How Do I create an instance of a derived class from an instance of a base class, essentially wrapping up an existing base class with some additional functionality. The reason I need this is because I am not always able to control/create all the different constructors the base class has. My problem can be described in code as follows ... /* This is the base class with a whole heap of constructors/functionality*/ public class Animal
5
20105
by: Nirdesh | last post by:
Hi, I am serializing a custom class holding some data for my project. This data internally contains a class which contains an event public delegate void MemberModifiedEventHandler(object sender, MemberModifiedEventArgs e); /// <summary>
0
1168
by: Shaul | last post by:
Hi, My goal is to serialize a collection of type IList<AbstractClass> which contains derived objects instances. My domain object model is a bit complex so I've created a demmi one: public abstract class ProductBase { protected int _id; public int ID
1
1245
by: Karthik1979 | last post by:
I have a custom class inherited from List<T> collection. Along with the base class functionality, I have included my additional properties. When serializing, only the base class items are serialized not my additional properties. I have designed a business object collection like this and I have to pass it across the service layer. But in another end I’m getting partial data not all my information is getting de-serialized. Here is a sample...
0
8010
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8501
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8349
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6820
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6015
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5479
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3967
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
1607
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1336
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.