.net remoting

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dipalichavan82
    New Member
    • Feb 2008
    • 41

    .net remoting

    on Client:
    i have given this application to windows scheduler, so windows is calling this application after each interval.
    I want to update data on server depending upon changes made at client.
    Currently in my application every client send all data(dataset) while calling update method in refernceobject( .net remoting).
    Since all branches sending all data, server n aslo netwok will be loaded, i want to avoid this.HOw can i?
    if I am sending data at table level , corruption of data(if happened) may create probs. please tell
    thnx in advance
  • balame2004
    New Member
    • Mar 2008
    • 142

    #2
    Originally posted by dipalichavan82
    on Client:
    i have given this application to windows scheduler, so windows is calling this application after each interval.
    I want to update data on server depending upon changes made at client.
    Currently in my application every client send all data(dataset) while calling update method in refernceobject( .net remoting).
    Since all branches sending all data, server n aslo netwok will be loaded, i want to avoid this.HOw can i?
    if I am sending data at table level , corruption of data(if happened) may create probs. please tell
    thnx in advance
    use transaction object while executing your sequal statements in ADO.net. it will help you to avoid data corruption.

    Comment

    Working...