List of Contributions

JBensen

Contact Details

JBensen


My Content

1 to 9 of 9 total
Posted By JBensen Mar 30, 2026 08:38:00 AM
Found In Egroup: Advanced Software
\ view thread
@CodeAssist so it sounds like you are saying it is no problem to write to Variable1 above. Does it become a problem if the variable has a dynamic link in it (could I write to Variable2 here from async)? Or if it goes the other way around, where the dynamic link is set on the model variable instead of ...
Posted By JBensen Mar 27, 2026 11:54:00 AM
Found In Egroup: Advanced Software
\ view thread
I'm trying to find a good way of accepting REST requests (from a windows service that handles RFID scans) and writing the data to my information model. Many of the httplistener commands use async methods which I would need to use because this needs to run in the background, but that creates the problem ...
Posted By JBensen Jan 30, 2026 05:22:43 PM
Found In Egroup: Advanced Software
\ view thread
@asemlucben Is there a way to use a foreach() on the list of non-materialized child nodes, or to materialize all nodes within the folder in Netlogic? I can't do a Get command for each node in the folder, as the names are inconsistent. -------------------------------------------
Posted By JBensen Jan 30, 2026 08:58:50 AM
Found In Egroup: Advanced Software
\ view thread
@asemlucben I appreciate the insight and am not opposed to using the Get command instead. I guess I am more concerned about the folder being shown as empty in the netlogic even when I can clearly see tags in it... We rely on scanning through that folder to help build parts of our application, none ...
Posted By JBensen Jan 29, 2026 05:40:48 PM
Found In Egroup: Advanced Software
\ view thread
Hey MikRED97, Think I can help here. If the file already exists, try adding a variable of type ResourceURI to the Netlogic object (see Variable2 below) and browse for your csv file at design time. Then in NetLogic, you can use "var myPath = LogicObject.GetVariable("Variable2");" to get the ...
Posted By JBensen Jan 29, 2026 03:08:57 PM
Found In Egroup: Advanced Software
\ view thread
I also tried copying some of the structured tags and RA EtherNet/IP Tags from the controller tags folder into the model folder-- and in the debugger if I use the same command but with the Model "var plcTags = Project.Current.Get ("Model");" they are recognized as children of that folder. So it seems ...
Posted By JBensen Jan 29, 2026 02:44:58 PM
Found In Egroup: Advanced Software
\ view thread
I played around a bunch with that yesterday, and it seems the Controller tags folder is the only one with this issue. I can use that same command to pull other folders/paths (such as model folders) and the contents show up with their children as expected, but the controller tags folder is the only one ...
Posted By JBensen Jan 29, 2026 02:34:00 PM
Found In Egroup: Advanced Software
\ view thread
@AutomateSHANE tried that one previously too, got the same result as the GetObject version. -------------------------------------------
Posted By JBensen Jan 29, 2026 02:03:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi All, I'm having an issue new to v1.7 where in Runtime NetLogic the following command no longer works (it used to return the folder type, now returns null). "var plcTags = Project.Current.Find("Controller Tags");" So I updated it to: "var plcTags = Project.Current.GetObject("CommDriver ...