Hi Team,
I wanted to use OPCUA SDK to integrate in my java application in order to connect with Kepware server v5. Can you provide me steps to make connection to my kepware server.
I am using below code -
try {
OpcUaClient client = OpcUaClient.create("opc.tcp://:49320");
LOGGER.info("Session is created for - " + client.toString());
} catch (Exception e) {
LOGGER.log(Level.SEVERE, e.getMessage(), e);
e.printStackTrace();
}