1. 01 May, 2023 6 commits
  2. 13 Apr, 2023 2 commits
  3. 11 Apr, 2023 2 commits
  4. 05 Apr, 2023 1 commit
  5. 01 Apr, 2023 2 commits
  6. 31 Mar, 2023 2 commits
    • Alexander Schrode's avatar
      Harding xml import (#1259) · de8269e4
      Alexander Schrode authored
      * add enum/struct import for xml
      
      * remove warning for doc elements
      
      * respect datatype in insert order
      
      directly import structs/enums
      
      * fix unittest
      
      the new import need all variables a hand . So register the the additional types before
      
      * fix case in path
      
      * prevent regreistration of class
      
      * fix test because of changed import order
      
      * Add nodeset via git submodule
      
      * handle alias
      
      * use submodule
      
      * Add "Opc.Ua.PlasticsRubber.GeneralTypes.NodeSet2.xml
      
      * prevent endlessloop in sort nodes
      
      * Add dependabot
      
      * correct merge error
      de8269e4
    • Alexander Schrode's avatar
      Check application certificates (#1269) · eff2ef71
      Alexander Schrode authored
      * generate log messeges on invald certs
      
      * server use _application_uri
      
      * use correct socket method
      eff2ef71
  7. 29 Mar, 2023 4 commits
  8. 28 Mar, 2023 3 commits
  9. 20 Mar, 2023 5 commits
  10. 05 Mar, 2023 2 commits
  11. 24 Feb, 2023 2 commits
    • bitkeeper's avatar
      [ua.uatypes.String] used str as base class instead off nothing · bb026883
      bitkeeper authored
      See discussion at #1067.
      bb026883
    • bitkeeper's avatar
      allow custom (de)serializer in other namespace than ua · 575f894f
      bitkeeper authored
      Allow registration of own (de)serializer for extension objects that are not in the ua namespace.
      (see original TODO in code)
      
      example:
      ```python
      @dataclass
      class YourDataType:
      
          data_type = ua.NodeId.from_string('''ns=2;i=3007''')
      
          Encoding: ua.UInt32 = field(default=0, repr=False, init=False, compare=False)
          ID: ua.String = ua.String()
          Description: Optional[ua.String] = None
      
      ua.register_extension_object("YourDataType",
                                                     ua.NodeId.from_string( f"ns=2;i=5002"),
                                                     YourDataType,
                                                      YourDataType.data_type)
      ```
      575f894f
  12. 22 Feb, 2023 1 commit
  13. 20 Feb, 2023 2 commits
  14. 19 Feb, 2023 2 commits
  15. 17 Feb, 2023 4 commits