Dear All I'm new to remoting but have been programming c# for a while.
I have a remoting working use IIS as the server and windows forms as the client.
Here is the question I create an new object on the client that is compatable with my interface ISaveI
public interface ISaveI : IDirty
{
int SaveI();
}
public interface ISaveTranI : ISaveI
{
int SaveI( SqlTransaction tran );
void AfterAllGoodSave();
}
I then call the save on the object though a retomed object say
Feline.Remoting.Helper.SaveI( isWriteMode, Item as ISaveLockI );
It all runs with out error and if I debig the ASP.NET app I can see the object been updated.
The Dirty flag is set to false and other parameter updated during the save.
However when I get after the call the client object has not changed is this corect behaevour or I have got something wrong.
What I what to happen is that the object is saved on the server then the update object is avalable on the client.
Please help