(self, params)
| 411 | # nothing to return for this service |
| 412 | |
| 413 | def register_server2(self, params): |
| 414 | self.logger.info("register_server2") |
| 415 | request = ua.RegisterServer2Request() |
| 416 | request.Parameters = params |
| 417 | data = self._uasocket.send_request(request) |
| 418 | response = struct_from_binary(ua.RegisterServer2Response, data) |
| 419 | self.logger.debug(response) |
| 420 | response.ResponseHeader.ServiceResult.check() |
| 421 | return response.ConfigurationResults |
| 422 | |
| 423 | def translate_browsepaths_to_nodeids(self, browsepaths): |
| 424 | self.logger.info("translate_browsepath_to_nodeid") |
nothing calls this directly
no test coverage detected