Having this kind of object:

     class classA
     {
         int x;
         classA z;

         public int X
         {
             get { return this.x; }
             set { this.x = value; }
         }

         public classA Z
         {
             get { return this.z; }
             set { this.z = value; }
         }

     }

     static class Program
     {
         static void Main(string[] args)
         {
             classA myObject = new classA();
             myObject.X = 2;
             myObject.Z = myObject;
         }
     }


How can I send "myObject" via XML webservice for consumption? I am aware
that this is not possible to be XML-serialized with .NET1.1 but, can I
do it with 2.0 or Indigo?

Thanks in advance,

        Andrés  [ knocte ]

-- 

_______________________________________________
Mono-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to