ChangeLog 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  2. * HttpCalls.cs: Use a different port.
  3. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  4. * BaseCalls.cs: Removed useless try/catch.
  5. 2004-09-27 Lluis Sanchez Gual <[email protected]>
  6. * ContextsTest.cs: Fixed test sequence.
  7. * RemotingServicesTest.cs: Minor fix.
  8. * ServerObject.cs: Added check for transparent proxy in all CBO methods.
  9. 2004-07-02 Lluis Sanchez Gual <[email protected]>
  10. * ActivationTests.cs: Fixed and enhanced tests.
  11. * RemotingServicesTest.cs: Added.
  12. 2004-06-23 Lluis Sanchez Gual <[email protected]>
  13. * ActivationTests.cs: New tests.
  14. * BaseCalls.cs, CallSeq.cs: Use Assert instead of the deprecated Assertion.
  15. 2004-05-03 Lluis Sanchez Gual <[email protected]>
  16. * AsyncCalls.cs, BaseCalls.cs, DelegateCalls.cs, ReflectionCalls.cs,
  17. ServerObject.cs, SyncCalls.cs: Improved PrimitiveParamsInOut test case.
  18. 2004-02-23 Lluis Sanchez Gual <[email protected]>
  19. * AsyncCalls.cs, BaseCalls.cs, CallSeq.cs, ContextHookAttribute.cs,
  20. ContextsTest.cs, CrossDomainCalls.cs, DelegateCalls.cs, HttpCalls.cs,
  21. ReflectionCalls.cs, ServerObject.cs, SyncCalls.cs, TcpCalls.cs:
  22. Shortened namespace name.
  23. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  24. * BaseCalls.cs: Little fix.
  25. * ContextsTest.cs: Unregister dynamic properties even if there is an exception.
  26. * CrossDomainCalls.cs: New test for the cross-app domain channel.
  27. 2003-09-01 Nick Drochak <[email protected]>
  28. * AsyncCalls.cs: Fix Build breaker on .NET 1.1.
  29. 2003-08-22 Lluis Sanchez Gual <[email protected]>
  30. * BaseCalls.cs: Create 3 test remote objects, one for each kind of access,
  31. to avoid reuse of client proxies.
  32. * CallSeq.cs: Now, "domain ID" is set manually.
  33. * ContextsTest.cs: Added initialization of common domain id. Other small fixes.
  34. * ReflectionCalls.cs: Get the method for the invoke for the correct type.
  35. GetType() for a proxy to interface always return MarshalByRefObject.
  36. * TcpCalls.cs, HttpCalls.cs: Added delegate tests.
  37. * DelegateCalls.cs: New test suite for calls using delegates.
  38. 2003-08-20 Lluis Sanchez Gual <[email protected]>
  39. * AsyncCalls.cs, BaseCalls.cs, HttpCalls.cs, ReflectionCalls.cs, SyncCalls.cs,
  40. TcpCalls.cs: new test suite for remoting. It tests sync calls, async calls
  41. and reflection calls using tcp and http channels.
  42. * CallSeq.cs, ContextHookAttribute.cs: Add methods for getting a context and
  43. domain ids that are the same between tests runs.
  44. * ContextsTest.cs: unregister channel on test shutdown.
  45. 2003-07-23 Lluis Sanchez Gual <[email protected]>
  46. * ContextsTest.cs, CallSeq.cs, ContextHookAttribute.cs, ServerObject.cs: Added.