AcdpServerManager.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /******************************************************************************
  2. ** Copyright (c) 2006-2018 Unified Automation GmbH All rights reserved.
  3. **
  4. ** Software License Agreement ("SLA") Version 2.7
  5. **
  6. ** Unless explicitly acquired and licensed from Licensor under another
  7. ** license, the contents of this file are subject to the Software License
  8. ** Agreement ("SLA") Version 2.7, or subsequent versions
  9. ** as allowed by the SLA, and You may not copy or use this file in either
  10. ** source code or executable form, except in compliance with the terms and
  11. ** conditions of the SLA.
  12. **
  13. ** All software distributed under the SLA is provided strictly on an
  14. ** "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
  15. ** AND LICENSOR HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
  16. ** LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  17. ** PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the SLA for specific
  18. ** language governing rights and limitations under the SLA.
  19. **
  20. ** Project: .NET based OPC UA Client Server SDK
  21. **
  22. ** Description: OPC Unified Architecture Software Development Kit.
  23. **
  24. ** The complete license agreement can be found here:
  25. ** http://unifiedautomation.com/License/SLA/2.7/
  26. ******************************************************************************/
  27. using System;
  28. using System.Collections.Generic;
  29. using System.Linq;
  30. using System.Text;
  31. using UnifiedAutomation.UaBase;
  32. using UnifiedAutomation.UaServer;
  33. namespace acdp
  34. {
  35. internal class AcdpServerManager : ServerManager
  36. {
  37. protected override void OnRootNodeManagerStarted(RootNodeManager nodeManager)
  38. {
  39. Console.WriteLine("Creating Node Managers.");
  40. XMLNodeManager lession3a = new XMLNodeManager(this);
  41. lession3a.Startup();
  42. //Lesson3bNodeManager lession3b = new Lesson3bNodeManager(this);
  43. //lession3b.Startup();
  44. }
  45. }
  46. }