<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem Building an AF Executable on a RT Target in Actor Framework Discussions</title>
    <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453433#M4232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oof.&amp;nbsp; I feel your pain.&amp;nbsp; Can you strip down your RT application, i.e. remove subsystems until you get a build that loads and runs, and then replace them until you find the failure point?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Sep 2016 19:07:22 GMT</pubDate>
    <dc:creator>justACS</dc:creator>
    <dc:date>2016-09-06T19:07:22Z</dc:date>
    <item>
      <title>Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453428#M4227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thought this might be the best place to go for some advice.&amp;nbsp; I have a large application for a PXI-RT target that utilizes AF heavily.&amp;nbsp; I have unfortunately been a bad developer and have not been building my application as I go along and have now hit a wall with the exe.&amp;nbsp; I am able to build the application with no errors but the exe is broken on the target (checked this by debugging the application).&amp;nbsp; It appears that every VI that has some aspect of the Actor.lvclass (such as Launch Actor Core) is broken.&amp;nbsp; Does anyone have any thoughts on this?&amp;nbsp; Anything that I should be looking at?&amp;nbsp; One other thing to note is that this application uses a web service to ship data between the client and the server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers, cirrus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 17:33:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453428#M4227</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-06T17:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453429#M4228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is something you might consider.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executables don't have access to items vi.lib, unless those items are statically linked to the VIs included in your build.&amp;nbsp; Many components of Actor.lvclass only get loaded at run time.&amp;nbsp; Try including actoframework.lvlib in the build spec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the same token, the actor core VIs of any actor you build are also loaded dynamically, so be sure to include any of that code as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 17:52:04 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453429#M4228</guid>
      <dc:creator>justACS</dc:creator>
      <dc:date>2016-09-06T17:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453430#M4229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmmm... will add the reference to the AF lib, but nothing is necessarily dynamic about the loading of the actors in the application.&amp;nbsp; For instance, if I have a top level actor called "Controller", this actor will explicitly launch nested actors directly (i.e. the icon for the actor is laid down on the diagram and pumped into the VI Launch Nested Actor). It would seem to me that the only time you would have issues is if you load the actor via a call using something like &lt;STRONG&gt;Get LV Class Default Value&lt;/STRONG&gt; where the reference to the object is simply a path, no?&amp;nbsp; Or maybe I am missing something here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 18:34:32 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453430#M4229</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-06T18:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453431#M4230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's a good point.&amp;nbsp; Cube dropping an actor on the block diagram should pull in everything in that class, and everything to which it statically links.&amp;nbsp; But it's easy to miss something.&amp;nbsp; As I said, it's something to look at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, since there is an inheritance relationship, if *any* actor is broken, all actors will be broken, including Actor.lvclass.&amp;nbsp; So perhaps the issue is with one of the other actors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 18:42:21 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453431#M4230</guid>
      <dc:creator>justACS</dc:creator>
      <dc:date>2016-09-06T18:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453432#M4231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sigh...that is a possibility.&amp;nbsp; The problem is that none is broken in development, just in the run time environment.&amp;nbsp; And to pile on, the error list indicates that nothing is broken despite the broken arrow.&amp;nbsp; Ugh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 19:01:27 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453432#M4231</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-06T19:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453433#M4232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oof.&amp;nbsp; I feel your pain.&amp;nbsp; Can you strip down your RT application, i.e. remove subsystems until you get a build that loads and runs, and then replace them until you find the failure point?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 19:07:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453433#M4232</guid>
      <dc:creator>justACS</dc:creator>
      <dc:date>2016-09-06T19:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453434#M4233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's a good idea; have done that before and will do that in this case...this does seem to be the best way to approach this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 20:04:51 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453434#M4233</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-06T20:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453435#M4234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK...so the real problem with this approach is that it drags in the other actors because they are explicitly called even if they are never launched.&amp;nbsp; Trying to build a launcher for the individual actors doesn't seem to do any good as they stop at pre-launch when certain parameters are not met.&amp;nbsp; Building a test harness for this case will require some significant work.&amp;nbsp; Is there something else I may be missing?&amp;nbsp; Logs, maybe, that might explain why the build succeeded but the actual run failed?&amp;nbsp; This is incredibly frustrating.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2016 03:43:59 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453435#M4234</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-08T03:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453436#M4235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, if you build a launcher for the individual actors, but you error our in Pre Launch Init, that strongly implies that the actor in question has loaded unbroken into memory.&amp;nbsp; You have launched Actor.vi for that actor, and Actor Core.vi is statically linked to Actor.vi (it is dynamic dispatch, but it should have loaded with the rest of the class).&amp;nbsp; If Actor Core.vi was broken, Launch Actor would return an Error 1003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your test harnesses don't have to be complex in this case - just launch the actor and immediately send it a Stop message.&amp;nbsp; If you error out, great, that actor - and its nested actors - are not loading broken.&amp;nbsp; If the test harness won't run because its broken, then the problem is with that nested actor or one of its nesteds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to clarify:&amp;nbsp; your EXE loads broken, correct?&amp;nbsp; It doesn't load, run, and immediately exit? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, how many actors do you have in this system?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2016 22:10:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453436#M4235</guid>
      <dc:creator>justACS</dc:creator>
      <dc:date>2016-09-08T22:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453437#M4236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the console output? You said you found it by debugging?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I once run into a similar problem with extremly_long_file_names. Using af tends to long filenames also. Doesn't necessarily have to do anything with af itself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 04:27:38 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453437#M4236</guid>
      <dc:creator>JohannesM</dc:creator>
      <dc:date>2016-09-09T04:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453438#M4237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So the problem is that the debugger doesn't even launch so I am not exactly sure what is happening.&amp;nbsp; Can't see errors, etc. etc.&amp;nbsp; I thought there was a wait on debugger option, but I can't seem to find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Just to clarify:&amp;nbsp; your EXE loads broken, correct?&amp;nbsp; It doesn't load, run, and immediately exit?&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;And yes, the EXE loads broken, i.e. when attaching a debug session the top level VI the run arrow is broken.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Also, how many actors do you have in this system?&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Lots.&amp;nbsp; Depends on the configuration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 04:41:09 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453438#M4237</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-09T04:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453439#M4238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give an example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 04:41:32 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453439#M4238</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-09T04:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453440#M4239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, digging through the log file, it is not clear to me that it has pulled everything in.&amp;nbsp; For instance, I have the NI VI 'Get Terminal Name with Device Prefix.vi' and I can not find this anywhere in the log despite it explicitly being in the dependencies.&amp;nbsp; Any thoughts on this?&amp;nbsp; Is there a possibility that the exe could build but not have everything it needs to run?&amp;nbsp; Seems odd to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 05:01:57 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453440#M4239</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-09T05:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453441#M4240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ugh...attempting to debug this is almost untennable.&amp;nbsp; I have tried to bring to the front the issue of web services and deployment to AEs, but they have stated that the front panels opening on deployment (and apparently when debugging an rtexe) is normal.&amp;nbsp; And it just gets worse on the rtexe as these things take even longer to pop up (in this build, I have not included the web service so I am not even sure why they are there)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways, AF messages are not broken but it appears that anything inherited or containing Actor type stuff is broken.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 05:27:14 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453441#M4240</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-09T05:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453442#M4241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you're missing a dependency.&amp;nbsp; It's worth looking for what calls Get Terminal Name with Device Prefix.vi and making sure it gets loaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At any rate, I think this issue has outgrown the forums.&amp;nbsp; I am looping in some additional resources to help, and I will PM you with my e-mail address so we can work more easily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'll post back here when we have a resolution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 17:50:45 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453442#M4241</guid>
      <dc:creator>justACS</dc:creator>
      <dc:date>2016-09-09T17:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453443#M4242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cirrusio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel your pain, I have been though your exact issue(s) before, and i cannot offer any direct fixes, but i an offer a few things to look for: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Try clearing compile cache and rebuilding the executable. Sometime things get a bit mixed up and need to get refreshed.&lt;/P&gt;&lt;P&gt;2) Don't use the arrows on text labels. There was a bug with them that caused me much heart ache. It may have been fixed but I would just steer clear for a few more versions of LabVIEW&lt;/P&gt;&lt;P&gt;3) Follow niACS instructions. He is very knowagable of the subject and had assisted me.&lt;/P&gt;&lt;P&gt;4) If you not using AF from 2015 or newer you may be running into an existing bug that's been fixed in the Launch Actor process. I only mention this because I didn't see a specific LabVIEW version stated.&lt;/P&gt;&lt;P&gt;5) If you are using LVLIBP's make sure you have them deployed in the same folder structure as they are used on the development system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6) Does the application run interactivly? If so, it probably a dependancy issue. Sometimes things need to be expliciatly included.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would strip down until you have a running App, then add back in other actors. By running, I mean it executes without being broken.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can post the debug window contents after the app launches, that would be most usefull. Theres a debug terminal (i belive the one niACS is refering to). I had just put that in my startup folder to launch when ever i logged in. Very useful to know what's going on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck and keep us posted!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2016 13:24:56 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453443#M4242</guid>
      <dc:creator>BrianGShea@NGC</dc:creator>
      <dc:date>2016-09-12T13:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453444#M4243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, I am currently about on the back channel with Allen et al. and will report back if we make any forward progress.&amp;nbsp; But, thanks for your response Brian and to answer some of your questions/points above:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1) Try clearing compile cache and rebuilding the executable. Sometime things get a bit mixed up and need to get refreshed.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This has become an unfortunate step in the development process for me.&amp;nbsp; It took me forever to figure out that when running in the development environment, if I got errors on deployment I need to clear this cache and restart.&amp;nbsp; &lt;STRONG&gt;This ought to be fixed by NI or at the very least documented because it is a hard earned bit of knowledge for everyone dealing with large projects on RT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That being said, this is not in the development environment but rather in the RTE.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2) Don't use the arrows on text labels. There was a bug with them that caused me much heart ache. It may have been fixed but I would just steer clear for a few more versions of LabVIEW&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Not sure what this means.&amp;nbsp; As this is RT, there are no front panels so no text labels.&amp;nbsp; But maybe I am missing something?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3) Follow niACS instructions. He is very knowagable of the subject and had assisted me.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;4) If you not using AF from 2015 or newer you may be running into an existing bug that's been fixed in the Launch Actor process. I only mention this because I didn't see a specific LabVIEW version stated.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is 2014.&amp;nbsp; Can you elucidate on the bug?&amp;nbsp; I haven't run into anything on other projects concerning a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;5) If you are using LVLIBP's make sure you have them deployed in the same folder structure as they are used on the development system.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Don't use packed projects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;6) Does the application run interactivly? If so, it probably a dependancy issue. Sometimes things need to be expliciatly included.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Agreed and that is what we are trying to identify now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;I would strip down until you have a running App, then add back in other actors. By running, I mean it executes without being broken.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can post the debug window contents after the app launches, that would be most usefull. Theres a debug terminal (i belive the one niACS is refering to). I had just put that in my startup folder to launch when ever i logged in. Very useful to know what's going on.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Will look into this, but with the build broken it would seem there would be nothing to debug.&amp;nbsp; And the build log does not indicate any problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for taking the time to respond.&amp;nbsp; I really appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers, c&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2016 15:30:10 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453444#M4243</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-12T15:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453445#M4244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using 2014 there was an issue with the way the static reference to “Actor CORE.vi” was being handled. It was fixed in 2015. There are several documented fixes for this on the forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may want to verify that you have applied these fixes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The label arrows are on the block diagram. In 2014 or may it was 2015 you can drag an arrow off of a text label on the block diagram and attach it to some other item as a reference arrow. Breaks RT deployments. You may not have used them, but other code may have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, I have switched jobs, and do not have references to the CAR or Bug fixes for the above two items, but I’m sure if you ask niACS he can point you in the right direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian Shea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2016 17:52:17 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453445#M4244</guid>
      <dc:creator>BrianGShea@NGC</dc:creator>
      <dc:date>2016-09-12T17:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453446#M4245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt; The label arrows are on the block diagram. In 2014 or may it was 2015 you can drag an arrow off of a text label on the block diagram and attach it to some other item as a reference arrow. Breaks RT deployments. You may not have used them, but other code may have.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Ok...so this is interesting.&amp;nbsp; When you say "breaks RT deployments", do you mean builds or just deployments from the development environment?&amp;nbsp; I have these things everywhere...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2016 20:49:25 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453446#M4245</guid>
      <dc:creator>cirrusio</dc:creator>
      <dc:date>2016-09-12T20:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Building an AF Executable on a RT Target</title>
      <link>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453447#M4246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it was both. It may have been patched as a bug fix since then (about 1yr ago). Please check with niACS. I just know that we wrote a VI using VI Scripting to remove all the arrow’s on all Vis in the project and all Vis referenced by Vis in the project.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2016 22:33:44 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/Actor-Framework-Discussions/Problem-Building-an-AF-Executable-on-a-RT-Target/m-p/3453447#M4246</guid>
      <dc:creator>BrianGShea@NGC</dc:creator>
      <dc:date>2016-09-12T22:33:44Z</dc:date>
    </item>
  </channel>
</rss>

