use of org.eclipse.milo.opcua.sdk.client.dtd.DataTypeDictionarySessionInitializer in project milo by eclipse.
the class AbstractClientServerTest method startClientAndServer.
@BeforeAll
public void startClientAndServer() throws Exception {
server = TestServer.create();
testNamespace = new TestNamespace(server);
testNamespace.startup();
server.startup().get();
client = TestClient.create(server);
client.addSessionInitializer(new DataTypeDictionarySessionInitializer(new GenericBsdParser()));
client.connect().get();
}
Aggregations