Search This Blog

Wednesday, March 17, 2010

WebSphere network deployment - cluster

although i didn't created such topology yet, but i am about to do it in the near future . in the mean while i looked for stuff regards this issue.
and i found many many many stuff.

here some useful links i found that its a good starting point(i might add some later - i am sure there are more)
Setting up a multinode environment
step by step -> Using WebSphere Application Server V5 for load balancing and failover.

session Management in cluster is very important here is a useful link.
IBM WebSphere Session Management



Yaniv T

Sunday, March 7, 2010

Visual C++ 2008 Express

recently i found myself looking for a way to improve our development IDE.
we are still coding via vc++ 6.0 , and moving forward sound great, and might improve developer time and life.

BUT - there is no money to "spend" on not necessary product , so i looked at Visual C++ 2008 Express edition.
i immediate found that Applications using either MFC or ATL require the Standard Edition or higher , and our software using MFC.
another point is that Visual C++ 2008 Express does not include OpenMP support, 64-bit compilers, or a resource editor, about the 64 bit support you might find a solution around this in this post.

another good real life situation read this How useful is Visual C++ 2008 Express Edition for commercial use.

enjoy
Yaniv T

Saturday, March 6, 2010

Convert CSV data to DataTable

here is a complete working function ,how to convert csv data , in this case a string array , string[], to data table

Convert CSV data to a ASP.Net DataTable

enjoy
Yaniv T

keep your session with HttpWebRequest

after i manage to do "login" programmatically via HttpWebRequest class i wanted to consume another page that is visible only after you authenticate (e.g you have a valid session) , i found this post C# Spider with HttpWebRequest.
look at the next line , in my case its was the key, to continue with the same session that i already created - i just use the same CookieContainer i created in the first call.
CookieContainer myContainer = new CookieContainer();

enjoy
Yaniv T

Thursday, March 4, 2010

java script code

i know there are many sites for java script , but,i found this efficient java scripts library.
DHTML scripts for the real world.
i am sure you will find something to enhanced your site.
enjoy
Yaniv T