client_proper.c 981 B

12345678910111213141516171819202122232425262728
  1. #ifdef NOT_AMALGATED
  2. #include "ua_types.h"
  3. #include "ua_client.h"
  4. #else
  5. #include "open62541.h"
  6. #endif
  7. #include "networklayer_tcp.h"
  8. int main(int argc, char *argv[]) {
  9. UA_Client *client = UA_Client_new();
  10. UA_ClientNetworkLayer nl = ClientNetworkLayerTCP_new(UA_ConnectionConfig_standard);
  11. UA_Client_connect(client, UA_ConnectionConfig_standard, nl, "opc.tcp://localhost:16664");
  12. UA_ReadRequest read_req;
  13. UA_ReadRequest_init(&read_req);
  14. read_req.nodesToRead = UA_ReadValueId_new();
  15. read_req.nodesToReadSize = 1;
  16. read_req.nodesToRead[0].nodeId = UA_NODEID_STATIC(1, 73);
  17. read_req.nodesToRead[0].attributeId = UA_ATTRIBUTEID_VALUE;
  18. UA_ReadResponse read_resp = UA_Client_read(client, &read_req);
  19. printf("answer statuscode: %i\n", read_resp.responseHeader.serviceResult);
  20. printf("answer value: %i\n", *(UA_Int32*)read_resp.results[0].value.dataPtr);
  21. UA_ReadResponse_deleteMembers(&read_resp);
  22. UA_Client_delete(client);
  23. }