Today i received a question about how to serialize an arraylist through xmlserialization.
Then i rapidly wrote a class named MyData which has 2 properties
public class MyData
{
public int a;
public string b;
public MyData()
{ }
public MyData(int _a, string _b)
{
a = _a;
b = _b;
}
}
Then generated some instances and added them to an arraylist in the main project.
class Program
{
static void Main(string[] args)
{
RunIt();
}
static void RunIt()
{
MyData v1 = new
MyData(0, "Zero");
MyData v2 = new MyData(1, "One");
MyData v3 = new MyData(2, "Two");

ArrayList al = new ArrayList();
al.Add(v1);
al.Add(v2);
al.Add(v3);

XmlSerializer s = new XmlSerializer(typeof(ArrayList));
string path = @"c:\seri.xml";
TextWriter tx = new StreamWriter(path, true);
s.Serialize(tx, al);
tx.Close();

FileStream fs = File.OpenRead(@"c:\seri.xml");
ArrayList ax = (ArrayList)s.Deserialize(fs);

Console.WriteLine(((
MyData)ax[0]).a.ToString());
Console.WriteLine(((
MyData)ax[1]).a.ToString());
Console.WriteLine(((
MyData)ax[2]).a.ToString());

}
}
When i ran the code i got the error, {"The type ConsoleApplication1.MyData was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically."} which was the main question.

After some search i found out tht XmlSerializer was not aware of the type of MyData class and thus i got the above error.
To make XmlSerializer aware of a custom type, you should use one of it's constructer methods while u'r creating the object.
While creating XmlSerializer object i just added type type of my arraylist includes.
XmlSerializer s = new XmlSerializer(typeof(ArrayList),new Type[]{typeof(MyData)});
Ps: also i found out tht if u're developing this kind of code and having these type of errors, everytime u run the project make sure u delete the serialization file.Cause previous failed attemps may cause the right code to throw exceptions.


 
Categories: Software

Just minutes ago i tried to update my windows xp via ie windows update option.Unfortunately i got a message telling me tht some services (BITS Background intelligent transfer service, Eventlog and Automatic updates) is not running thus windows update is not available unless i start those services.

The interesting thing was all the services mentioned in error message was up & running, so i tried the old & dirty way & restarted windows :)
Believe me if restarting not solves your problem you got a problem.

Then i googled & found an interesting solution & it worked out very well

run "regsvr32.exe wuaueng.dll" command from cmd.

Question was how did wuaueng.dll unregistered?


 
Categories: Genel

2009 will be a kickn year for me.

I really must take some place in movie business.Cause every sunday i watch Avatar with my son and wonder why the hell they don't bring it to screen, then i saw the movie "Avatar" is set to be on screen by december,2009 while i was surfing imdb.



Beside there will be many s.f. movies, but i fall of the chair when i read about "Transformers 2 - the revenge of the fallen" will also take place in 2009.



 
Categories: Genel

Now i stare at space, thinking why did not i buy a backup ups?

I have 2 esx 3.5 running on sunx4600m2's & an emc san, what i wonderful life i used to say to myself.But those nice admin days gone with the blackout.Few days ago building automation manager called me and told there will be an operation on ups and informed me, so tht i can shutdown all systems to reduce data loss in case of some problems.I did what i had to do and shutdown all systems including backbone & network switches.

Operation finished, i got systems up and everything was working fine, another beautiful admin day...
Next day morning my systems engineer called me telling tht all systems are down.End of days...

When we figured out the reason of the problem we found out tht 1 day after the ups operation, a power blackout occured and all systems were reset.

So the list occured;
1-check esx's logs, search for an error or warning.
2-check san
3-check vm's

1- Unfortunately we found a lot of scsi io error lines @ logs.
2- San were fine (god bless emc it has ups inside, even if u pull the plug off it shutsdown clearly)
3- That's a big problem.Some vm's appeared as VM1 (invalid) and VM2 (obsolete)

To solve out problem 1, we tried fsck .All went fine.
To solve out problem 3; the worst day of my life.

First i tried to remove the vm's from inventory and then readd them by browsing vmfs volumes.It did not work.So then i connected directly to esx host using viclient, and tried the same but it all didn't work.

"vmware-cmd -l" service command listed 3 running vm's but when i ping other servers i was able to reach them.
then i ran "cat /proc/vmware/vm/*/names" to list the running vm's on esx using a different method, i saw 7 vm's were up & running.
The vm's were working but i could not reach them from viclient.

At this stage, the only option was to connect to each running vm by RDP and shutdown them.Create new vm and add the old vm's hdd to the new vm's.
i still did not figure out how things blowed up, but now i know tht the first item on my checklist is to buy a backup ups for esx's and san.

Beautiful admin days...:)


 
Categories: Virtualization

Oğlum ve ben süperkahraman koliğiz.Ben "Süperman"'ci oğlum ise "Spiderman" ci, tabi oğlum zaman zaman "Ironman","Mr Incredible","Transformers (Bumblebee)"'ye kayıyor onu da belirtmek lazım.Tabi durum böyle olunca bir baba olarak kostüm ve oyuncaklardan paçayı kurtaramıyorum.Kostum ve oyuncaklar bir yere kadar süperkahramanlık duygularımızı tatmin ediyor.Farklı ne yapabilirdik ki değil mi?


Hemen hemen bütün kahramanların ortak noktası uçmalarıdır.Bende dedim madem bahçeden bir örümcek yakalayıp oğluşu ısırtamayacağım ve "yalnızlık kalesi" tapusu benim olmayacak dedimki en azından uçalım...

Duygu muhteşemdi.Bir babalık görevini daha yerine getirmiş olmanın huzuru içindeyim :)


 
Categories: Genel

June 25, 2008
@ 01:30 AM


 
Categories: Genel

Canım sıkılmış eski arkadaşlarla msn leşirken bi arkadaşım bana tasarlamış olduğu web sitesinin taslağını gösterdi.

Default.aspx de şirketin başkanı ve yardımcısının boy boy resimleri ve mesajları.

Yahu nedir bu ego,

microsoft.com da açılış sayfasında Bill Gates'in masada oturmuş gülen bi fotoğrafı var mı?
mesaj veriyormu ? 

Arkadaşa saygıdan adresi vermiyorum...


 
Categories: Genel

Bazı zamanlar vardır, bir virgül bile birkaç saate mal olabilir.İşte şansıma geliştirme aşamasında yakaladığım bir "copy paste programming" hatası.

if @va_niccheckcfg_id=0
     begin
         insert
             va_niccheckcfg_tbl
         values
             (
             @va_niccheckcfg_name,
             @va_niccheckcfg_status,
             @va_niccheckcfg_esxip
             )
     end
 else
     begin
         update
             va_niccheckcfg_tbl
         set
             va_niccheckcfg_name=@va_niccheckcfg_name,
             va_niccheckcfg_status=@va_niccheckcfg_status,
             va_niccheckcfg_esxip=@va_niccheckcfg_esxip
         where
             @va_niccheckcfg_id=@va_niccheckcfg_id
     end


evet farketmişsinizdir, update komutunun koşulunda
@va_niccheckcfg_id=@va_niccheckcfg_id
kodu bütün tabloyu 2 sn de allak bullak edebilecek bir potansiyele sahip.

AMAN DİYORUM :)
 
Categories: Software



Dün akşam uzatmanın sonlarına doğru yediğimiz talihsiz golden sonra gözlerimi ekrandan alıp moralim bozuk bir şekilde youtube izlemeye başladım.Sonra yaptığımız son dakika atağını görünce içimden bir belki geçti.Gol olduğunda gözlerime inanamadım ve golü 2-3 sn gecikmeli idrak edebildim.Anladığımda ise ayağa firladım ve bu arada heyecandan elimde tuttuğum evlilik yüzüğüm camdan fırladı :).

Dışarı çıktığımızda ise karnaval havası vardı.Gece süperdi.Bir şey farkettim ne kriz, ne de gündemde dolaşan başka sıkıntılardan eser yoktu...Herkes yarın yokmuş gibi eğleniyordu...

Beni en çok gururlandıran ise yabancı basında dinlediğim bir haberdi.Sunucu Viyana'daki havanın muhteşem olduğunu, oradaki göçmenlerimizin diğer takım taraftarlarından farklı olarak bir futbol takımını değil, Türkiye'yi gönülden desteklediklerini ve biz de burdayız sizin yanınızdayız mesajını verdiğini, Fatih Terim'in çok alçakgönüllü ve mükemmel bir direktör olduğunu maçtan sonra Hırvat t.direktörünü teselli ettiğini, futbol takımının kendi değimiyle "mid-sized players"  olduğunu fakat bu oyunlarıyla aslında çok değerli oyuncular olduklarını kanıtladıklarını bildirdi.

Dediğim gibi sizlere tonlarca altın helal olsun çocuklar...

 
Categories: Genel