ChangeLog 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. 2004-02-23 Lluis Sanchez Gual <[email protected]>
  2. * AsyncCalls.cs, BaseCalls.cs, CallSeq.cs, ContextHookAttribute.cs,
  3. ContextsTest.cs, CrossDomainCalls.cs, DelegateCalls.cs, HttpCalls.cs,
  4. ReflectionCalls.cs, ServerObject.cs, SyncCalls.cs, TcpCalls.cs:
  5. Shortened namespace name.
  6. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  7. * BaseCalls.cs: Little fix.
  8. * ContextsTest.cs: Unregister dynamic properties even if there is an exception.
  9. * CrossDomainCalls.cs: New test for the cross-app domain channel.
  10. 2003-09-01 Nick Drochak <[email protected]>
  11. * AsyncCalls.cs: Fix Build breaker on .NET 1.1.
  12. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  13. * BaseCalls.cs: Create 3 test remote objects, one for each kind of access,
  14. to avoid reuse of client proxies.
  15. * CallSeq.cs: Now, "domain ID" is set manually.
  16. * ContextsTest.cs: Added initialization of common domain id. Other small fixes.
  17. * ReflectionCalls.cs: Get the method for the invoke for the correct type.
  18. GetType() for a proxy to interface always return MarshalByRefObject.
  19. * TcpCalls.cs, HttpCalls.cs: Added delegate tests.
  20. * DelegateCalls.cs: New test suite for calls using delegates.
  21. 2003-08-20 Lluis Sanchez Gual <[email protected]>
  22. * AsyncCalls.cs, BaseCalls.cs, HttpCalls.cs, ReflectionCalls.cs, SyncCalls.cs,
  23. TcpCalls.cs: new test suite for remoting. It tests sync calls, async calls
  24. and reflection calls using tcp and http channels.
  25. * CallSeq.cs, ContextHookAttribute.cs: Add methods for getting a context and
  26. domain ids that are the same between tests runs.
  27. * ContextsTest.cs: unregister channel on test shutdown.
  28. 2003-07-23 Lluis Sanchez Gual <[email protected]>
  29. * ContextsTest.cs, CallSeq.cs, ContextHookAttribute.cs, ServerObject.cs: Added.