├── .gitignore ├── DEV ENVIRONMENT LabVIEW 2014 ├── LICENSE ├── README.md ├── src ├── .gitignore ├── Documentation │ ├── OPCUA XML Automaticallly publishing.pptx │ ├── RT_OPCUA_8.28.zip │ ├── after.png │ ├── before.png │ └── foxechs.exe ├── OPCUA XML.lvproj ├── OPCUA XML │ ├── Connect OPCUA Server Auto.vi │ ├── Create OPCUA Server Auto.vi │ ├── OPCUA XML(dev).lvlib │ └── subVIs │ │ ├── BackLabel.vi │ │ ├── DEF-Server Config Data.ctl │ │ ├── FoundValueByKey.vi │ │ ├── FrontLabel.vi │ │ ├── GetItemInfo.vi │ │ ├── SetInitialValue.vi │ │ ├── UACheckExist.vi │ │ ├── UACreateServer.vi │ │ ├── UAGetClientCerts.vi │ │ ├── UAGetXMLData.vi │ │ ├── UAMatchLabel.vi │ │ ├── UAMatchPatten.vi │ │ ├── UAPublishNode.vi │ │ ├── UAPublishStructure.vi │ │ ├── UATrustClientCerts.vi │ │ ├── UAXMLLoad.vi │ │ ├── UAXMLParse.vi │ │ ├── _obsolete │ │ ├── XMLCloseConfiguration.vi │ │ ├── XMLCreate.vi │ │ ├── XMLGetItemInfo.vi │ │ ├── XMLOpenConfiguration.vi │ │ ├── XMLPublishNode.vi │ │ ├── XMLPublishStructure.vi │ │ └── XMLTrustClientCertification.vi │ │ └── convert VIs │ │ ├── file or path.vi │ │ ├── split array.vi │ │ ├── str to accesstype.vi │ │ ├── str to boolean.vi │ │ ├── str to booleanarray.vi │ │ ├── str to bytestring.vi │ │ ├── str to bytestringarray.vi │ │ ├── str to certification path.vi │ │ ├── str to datetime.vi │ │ ├── str to datetimearray.vi │ │ ├── str to datetype.vi │ │ ├── str to double.vi │ │ ├── str to doublearray.vi │ │ ├── str to float.vi │ │ ├── str to floatarray.vi │ │ ├── str to int16.vi │ │ ├── str to int16array.vi │ │ ├── str to int32.vi │ │ ├── str to int32array.vi │ │ ├── str to int64.vi │ │ ├── str to int64array.vi │ │ ├── str to int8.vi │ │ ├── str to int8array.vi │ │ ├── str to policy.vi │ │ ├── str to security policy.vi │ │ ├── str to strarray.vi │ │ ├── str to timestamp.vi │ │ ├── str to uint16.vi │ │ ├── str to uint16array.vi │ │ ├── str to uint32.vi │ │ ├── str to uint32array.vi │ │ ├── str to uint64.vi │ │ ├── str to uint64array.vi │ │ ├── str to uint8.vi │ │ └── str to uint8array.vi ├── OPCUA(Utility) │ ├── Client │ │ ├── ClientRefnum.vi │ │ ├── Connect.vi │ │ ├── Disconnect.vi │ │ ├── OCPUA Client(UtilityMode)(dev).lvlib │ │ ├── _Core(client).vi │ │ └── _op(client).ctl │ └── Server │ │ ├── Close.vi │ │ ├── Create&Start.vi │ │ ├── Create.vi │ │ ├── OPCUA Server(UtilityMode)(dev).lvlib │ │ ├── ServerRefnum.vi │ │ ├── Start.vi │ │ ├── Stop&Close.vi │ │ ├── Stop.vi │ │ ├── _Core(server).vi │ │ └── _op(server).ctl ├── Server.vi ├── VIAnalyzerConfig.cfg └── server config.xml ├── storage └── nevstop_lib_opcua_xml-1.2.2.5.vip └── vipb ├── .vipb ├── Example ├── OPCUA XML.lvproj ├── Server.vi └── server config.xml ├── InternalResource └── icon.png ├── OPCUA(ClientUtility).llb ├── OPCUA(ServerUtility).llb └── OPCUAXML.llb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /DEV ENVIRONMENT LabVIEW 2014: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /Faraday Cup Control System.xml 2 | -------------------------------------------------------------------------------- /src/Documentation/OPCUA XML Automaticallly publishing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/Documentation/OPCUA XML Automaticallly publishing.pptx -------------------------------------------------------------------------------- /src/Documentation/RT_OPCUA_8.28.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/Documentation/RT_OPCUA_8.28.zip -------------------------------------------------------------------------------- /src/Documentation/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/Documentation/after.png -------------------------------------------------------------------------------- /src/Documentation/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/Documentation/before.png -------------------------------------------------------------------------------- /src/Documentation/foxechs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/Documentation/foxechs.exe -------------------------------------------------------------------------------- /src/OPCUA XML.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML.lvproj -------------------------------------------------------------------------------- /src/OPCUA XML/Connect OPCUA Server Auto.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/Connect OPCUA Server Auto.vi -------------------------------------------------------------------------------- /src/OPCUA XML/Create OPCUA Server Auto.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/Create OPCUA Server Auto.vi -------------------------------------------------------------------------------- /src/OPCUA XML/OPCUA XML(dev).lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/OPCUA XML(dev).lvlib -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/BackLabel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/BackLabel.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/DEF-Server Config Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/DEF-Server Config Data.ctl -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/FoundValueByKey.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/FoundValueByKey.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/FrontLabel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/FrontLabel.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/GetItemInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/GetItemInfo.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/SetInitialValue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/SetInitialValue.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UACheckExist.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UACheckExist.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UACreateServer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UACreateServer.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAGetClientCerts.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAGetClientCerts.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAGetXMLData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAGetXMLData.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAMatchLabel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAMatchLabel.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAMatchPatten.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAMatchPatten.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAPublishNode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAPublishNode.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAPublishStructure.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAPublishStructure.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UATrustClientCerts.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UATrustClientCerts.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAXMLLoad.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAXMLLoad.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/UAXMLParse.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/UAXMLParse.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/_obsolete/XMLCloseConfiguration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/_obsolete/XMLCloseConfiguration.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/_obsolete/XMLCreate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/_obsolete/XMLCreate.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/_obsolete/XMLGetItemInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/_obsolete/XMLGetItemInfo.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/_obsolete/XMLOpenConfiguration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/_obsolete/XMLOpenConfiguration.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/_obsolete/XMLPublishNode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/_obsolete/XMLPublishNode.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/_obsolete/XMLPublishStructure.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/_obsolete/XMLPublishStructure.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/_obsolete/XMLTrustClientCertification.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/_obsolete/XMLTrustClientCertification.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/file or path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/file or path.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/split array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/split array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to accesstype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to accesstype.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to boolean.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to boolean.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to booleanarray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to booleanarray.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to bytestring.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to bytestring.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to bytestringarray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to bytestringarray.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to certification path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to certification path.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to datetime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to datetime.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to datetimearray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to datetimearray.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to datetype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to datetype.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to double.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to double.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to doublearray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to doublearray.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to float.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to float.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to floatarray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to floatarray.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int16.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int16array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int16array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int32.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int32array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int32array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int64.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int64array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int64array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int8.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to int8array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to int8array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to policy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to policy.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to security policy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to security policy.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to strarray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to strarray.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to timestamp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to timestamp.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint16.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint16array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint16array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint32.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint32array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint32array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint64.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint64array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint64array.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint8.vi -------------------------------------------------------------------------------- /src/OPCUA XML/subVIs/convert VIs/str to uint8array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA XML/subVIs/convert VIs/str to uint8array.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Client/ClientRefnum.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Client/ClientRefnum.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Client/Connect.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Client/Connect.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Client/Disconnect.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Client/Disconnect.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Client/OCPUA Client(UtilityMode)(dev).lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Client/OCPUA Client(UtilityMode)(dev).lvlib -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Client/_Core(client).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Client/_Core(client).vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Client/_op(client).ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Client/_op(client).ctl -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/Close.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/Close.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/Create&Start.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/Create&Start.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/Create.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/Create.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/OPCUA Server(UtilityMode)(dev).lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/OPCUA Server(UtilityMode)(dev).lvlib -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/ServerRefnum.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/ServerRefnum.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/Start.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/Start.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/Stop&Close.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/Stop&Close.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/Stop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/Stop.vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/_Core(server).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/_Core(server).vi -------------------------------------------------------------------------------- /src/OPCUA(Utility)/Server/_op(server).ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/OPCUA(Utility)/Server/_op(server).ctl -------------------------------------------------------------------------------- /src/Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/Server.vi -------------------------------------------------------------------------------- /src/VIAnalyzerConfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/VIAnalyzerConfig.cfg -------------------------------------------------------------------------------- /src/server config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/src/server config.xml -------------------------------------------------------------------------------- /storage/nevstop_lib_opcua_xml-1.2.2.5.vip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/storage/nevstop_lib_opcua_xml-1.2.2.5.vip -------------------------------------------------------------------------------- /vipb/.vipb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/.vipb -------------------------------------------------------------------------------- /vipb/Example/OPCUA XML.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/Example/OPCUA XML.lvproj -------------------------------------------------------------------------------- /vipb/Example/Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/Example/Server.vi -------------------------------------------------------------------------------- /vipb/Example/server config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/Example/server config.xml -------------------------------------------------------------------------------- /vipb/InternalResource/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/InternalResource/icon.png -------------------------------------------------------------------------------- /vipb/OPCUA(ClientUtility).llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/OPCUA(ClientUtility).llb -------------------------------------------------------------------------------- /vipb/OPCUA(ServerUtility).llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/OPCUA(ServerUtility).llb -------------------------------------------------------------------------------- /vipb/OPCUAXML.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-OPCUA-XML-Library/HEAD/vipb/OPCUAXML.llb --------------------------------------------------------------------------------