Issue in connecting OPC UA client with Kepware v5 using OPC UA sdk #1123
prasadmarathe
started this conversation in
General
Replies: 1 comment 8 replies
-
Maybe start here, and make sure your endpoint URL includes the hostname or IP of the KSE instance. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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();
}
Beta Was this translation helpful? Give feedback.
All reactions