now the connection to server is established, I am trying to get data from server.
how to do that ?


LSClient c = new LSClient();
c.OpenConnection(connInfo, new RzConnectionListener() );

string item = "SecurityDetail."+"1001";
ExtendedTableInfo tableInfo = new ExtendedTableInfo(
new String[] {"SecurityDetail."+"1001" },
"COMMAND",
new String[] { "CUSIP", "Description", "ISWI", "MaturityDate", "IssueDate", "BenchmarkType" },
true);
tableInfo.DataAdapter = "STATICDATA_ADAPTER";

SubscribedTableKey tableRef = c.SubscribeTable(tableInfo, new RzTableListener(), true); //TODO

。。。。。。