SOA and Host Systems
M icrosoft recently released a white paper about leveraging value of host systems with real world SOA. The paper can be downloaded here . We from Microsoft Unit at Inter Access are now doing some researched based on this paper. We are trying for instance to call RPG code on AS/400. In a previous posts I mentioned I have been able to extract data from DB2 on AS/400, so connecting to AS/400 was easy. Same counts for connecting to a DB2 database. My colleague Hugo has written a nice tool to view data inside DB2 that helps to indentify tables, colums and so on. I must say he has done a nice job with only a few lines of code: MsDb2Connection con = new MsDb2Connection(textBox1.Text); MsDb2Command command = new MsDb2Command(textBox2.Text, con); MsDb2DataAdapter adapter = new MsDb2DataAdapter(command); MsDb2Transaction tran = null; DataSet ds = new DataSet(); try { con.Open(); tran = con.BeginTransaction(IsolationLevel.ReadCommitted); command.Transaction = tran; adapter.Fill(ds); dataGridView1...