|
Hi, We came in a performance/binding issue when we want to return the refreshed data from Webservice to the client . The first one(A) has performance issue with very high cpu usage and the second one(B) lost the data binding.
A) To return the refreshed data from the web services to the client we used Merge method As follow:
clientDataSet.Merge(“�.call a method in webservice to return dataset with fresh data..�nbsp;)
This works but has a poor performance with high cpu usage. Q1 : Any other alternative to return the data from web service to the client without using Merge method?
B) If we simply change the above code to the following (with no Merge) then will have a better performance with low cpu usage.
ClientDataSet=“�.call a method in webservice to return dataset with fresh data..�nbsp;
But we lose the data binding in client side. Means, now the refreshed data are in the client dataset but these values are not bind to the screen fields any more. Q2: what is the relation between Merge and data binding?
I would appreciated to share with me Any better idea to get ride of these issues Thanks�Ali
P.S.: I already posetd this question in a wrong forum that's why reposted here again,sorry.
|