st-one-io / node-red-contrib-opc-da

A Node-RED node to interact with OPC-DA servers.
Apache License 2.0
13 stars 7 forks source link

Error: Exception occured while forming Session Security Type3Response #28

Open DaliHami opened 4 months ago

DaliHami commented 4 months ago

// creates a COM Session from a domain, an username, and a password let comSession = new Session(); comSession = comSession.createSession(domain, username, password);

// sets a global timeout for connections related to this session comSession.setGlobalSocketTimeout(timeout); // if i remove this line the error dispear but i get timeout and i can't connect to the server

// create a COM Server from a classid, an IP address and the previously created session let comServer = new ComServer(clsid, address, comSession);

// star the COM Server await comServer.init();

/ from the COM Server, we create a instance we'll use to create every other COM related object / let comObject = await comServer.createInstance();

// with the comObjet created, we create an OPC Server object and call init() let opcServer = new OPCServer(); await opcServer.init(comObject);