Result handler of a remote call not executed till the other remote calls get result

I have 3 remote calls in sequence.
Say RemoteCall1, RemoteCall2 and RemoteCall3. RemoteCall1 takes the least time say  5 seconds to get results. RemoteCall2 also 5 seconds and RemoteCall3 takes 30 seconds. But the resulthandler for RemoteCall1 does not execute till the RemoteCall3 gets results from server. Any fixes to call resulthander for RemoteCall1 as soon as it gets result without waiting for RemoteCall3 results.
by the way I am usindg Robotlegs framework and AsyncToken.

Don’t make remoteCall3 until you get the results from remoteCall2, etc.  That’s the only way I know to guarantee order.
Fllash queues up all remote calls until the end of the frame and sends them all at once, although a network monitor should show that the go out in the order you made the calls.
Similarly, Flash processes all available results at the end of a frame.  Results are asynchronous, but if all three results arrive in the same frame, they will all get deserialized.  And, the server may not be guaranteed to return results in the order requested, especially if different servers are handling the individual calls.
I’m not sure if your time to get results is gated by server response or Flash processing the results.  I suspect it is the latter.  You also have the option of changing the resultFormat to get something that doesn’t need processing like XML and process it later.

Similar Messages

  • 'Calculating result as...' was not executed ???

    Hi,
    can anyone explain me the warning message that i received.
    I have a query, and in its definition, three characteristcs are added to the "rows" (Region, District, StoreId) and the option "Display as hierarchy" is selected, expanding to "Region". Region has 4 values (north, south, east, west) So when query is run, it displays 4 nodes.
    When i execute the query, this warning message shows up "<b>'Calculating result as...' was not executed</b> ". It calculates the results correctly for the first three nodes and fails to calculate it for the last node. The result displayed for the last node is wrong.
    Could you please share your comments on this.
    Thanks
    Gova
    This is the detailed message.
    <b>Diagnosis</b>
    The function 'Calcualte Results As ...' could not be applied everywhere.
    The recalculation of a result cell always takes place based on the amount of detail cells that are subordinate to this cell, that is the detail of this drilldown. For this reason it is not possible to recalculate results in hierarchical lists, that is calculate of a results cell is not performed if a row or column with expansion symbol is subordinate to it. This is because otherwise this newly calculated results would have to change every time a node subordinate to it was expanded. This is not supported for technical reasons and would also confuse the user.
    Note however, that calculate as "Suppress Results" is always executed
    because the above exception does not apply in this case.
    Any answers please. I am known to be generous in assigning points

    Did you ever receive any further information on this topic?  I am receiving the exact error you received and I know this was possible in BW 3.2.  My customers have been using this report now for months.  I would like to know how to activate this same reporting in BW 3.5 
    Thanks so much! 
    Kristie

  • The VI is not executable. The full development version...

    "The VI is not executable. The full development version of LabVIEW is required to fix the errors." That is the error I've been dealing with all day. Actually it is repeated 3 to 4 times in the error message, seen when first launching the EXE. Also of note is that the run-arrow is broken. This is in an EXE that was developed well before version 2013, but I recently upgraded it to 2013 to hopefully fix some random LVRT crashes. There is obviously no issue running the code on my development machine, only once it's deployed.
    The good news is I've been able to solve the problem (mostly). My EXE now runs without the errors. I found that the problem wasn't actually in the EXE.
    We have a separate project with no files, but in the build specification we have the LabVIEW 2013 Run-Time Engine, as well as NI-VISA for serial support. We then bundle the deployment in a self-extracting RAR and it does its business. In the past this has worked just fine, but with LV2013, it seems that there is a component missing from the deployment.
    I found that if I download the Run-Time Engine directly from NI.com and run it, the only things I need to install are the Run-Time Engine, and the DEPLOYABLE LICENSE. If I do this, my EXE runs great, but with the custom installer, it is not included for some reason!
    Putting aside the fact that I don't know why the Deployable License package is needed (we aren't connecting to remote panels), I can't seem to modify my custom installer to install the Deployable License. There are versions for LabVIEW 2009 and 2011 SP1 in the Additional Installers list, but I don't see 2013.
    Can anyone explain why this is??? For now I will just distribute the 257MB Run-Time Engine and the NI-VISA installers separately I guess. But I'd really like to get back to a single, simple package to install all the prerequisites we need. HELP!

    iannicholson wrote:
    Yes, but then every installer I build will contain the runtime engine. That gets very large very quick. So I have an installer for JUST the runtime engine and VISA runtime.
    Just remove them from the "Additional Installers" tab of the Installer dialog.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Please help suggestions for solving built-only compiler error: 'The VI is not executable. The full development version of LabView is required tofix this error.'

    We have develoepd a software tool and build it on regular basis. It currently runs error free when compiled in the editor, but when we built it and run the executable stand alone we get the error.
    'The VI is not executable. The full development version of LabView is required tofix this error.' plus a broeken error.
    This menas an compiler error that is not present in the editor but in the stand alone version. We tried to identify errors as suggested in several posts in this forum, but so far unsuccesfull.
    As the editor and its compiler do not see the error  and are running fine and the stand alone version just syas 'find the error in the editor' in this case LabView is of no help.
    Can anyone suggest a sensible or 'good practice ' way of searching for the source of this error?
    Our project  comprises hundreds of Vis over several libraries.
    Thanks,
    Chris

    Thanks Craig for all your suggestions.
    We seem to have located the problem in a new vi just added to the package causing conflicts by using the same vi names as other vis already present in the package. Excluding this vi removed the error.
    It seems related to a conflict by having two vis with the same name, which was mentioned by LabView and interactively resolved when running the main vi from the editor. When successfully building the main vi the builder did not mention this conflict and reported a successful build, but when trying to run the executable it gave the cryptic error. The error caused us problems because there was no hint for the cause, just the suggestion to solve this in the editor, while at the same time in the editor the VI was running fine.
    We will post about this in detail after we have positively proven that this actually was the case.
    The .net version issue was already checked.
    Performance was the same on all machines we tested on including the dev machine.
    Debugging was tried nut did not help as the vi could not run (broken arrow). We assumed that debugging only helps in running faulty functioning vi''s. We did not check for broken arrows in sub-vis (after connecting), that could have helped, although our application has hundreds of our own vis.
    In relation to your remark: 
    'Are you using many classes? Have you verified that the proper access scopes are set for functions calling those vis?'
    Could you elaborate on setting access scopes. We were not aware of this option in LabView, although we realize this is a basic element of the underlying c code.
    Ragrds,
    Chris

  • My iPhone 4 microphone that handles standard voice/sound cannot pick-up sound unless the speakerphone, or a headset is used to make/receive calls the other end caller cannot hear me. Any Suggestions? This seems to be common on forums.

    My iPhone 4 microphone that handles standard voice/sound cannot pick-up sound unless the speakerphone, or a headset is used to make/receive calls the other end caller cannot hear me. Any Suggestions? This seems to be common on forums. Thank You

    Same issue on my wife's iPhone 4S. I suspect it is related to the recent 6.1.2 iOS update (Note: I have a 3S and the update did not cause any issues).
    I've tested both bottom and top mics on the 4S using video recorder and both mics work fine. Speakerphone and headset during calls also work fine. The issue is only related to the bottom mic while making calls. I can hear the caller but the caller cannot hear me. If I hold the mic very close to my mouth, the caller can hear a very low level signal.
    The problem appears to be software related, not hardware.

  • I recieve the following error when running an executable ("This VI is not Executable. The full development version of Labview is required to fix the errors"

    I recieve the following error when trying to build and run a labview executable. I am able to build the executable but when trying to run the executable, a pop up window comes up asking the user to select a dll. (please see screen shot attached). Once the DLL is selected, I get the error that This VI is not Executable. The full development version of Labview is required to fix the errors. (please see screen shot attached). I have also attached a snapshot of the project window.
    I have the professional development system
    I can run the main VI
    all the required DLL's are in the dependencies section of the project window.
    I am trying to find the root cause of this error but to no avail. can anyone give me a clue to what i am missing here. Any suggestions on where i should look to find the problem ?
    Thanks in advance to all labview users for your help
    Attachments:
    project window.PNG ‏36 KB

    other PNG
    Attachments:
    Broken Arrow on EXE.PNG ‏179 KB

  • HI JUST COPYED CALL OF DUTY FROM ONE OF MY MACS TO OTHER IT WILL NOT WORK ON THE OTHER ONE?

    HI JUST COPYED CALL OF DUTY FROM ONE OF MY MACS TO OTHER IT WILL NOT WORK ON THE OTHER ONE?

    Are you saying that you bought the game from the App store and made another copy onto a dvd so you can play it on another computer too?  If so, you can not do that, you have to buy it again for the other computer.

  • HT1619 my remote is not working with the new imac 27" :(

    my remote is not working with the new imac 27"    i do not know even if new imac has infrared at all , pcworld shop said yes it should work . but hey i tried everything including security setting checks

    <http://store.apple.com/us/product/MC377LL/A/apple-remote>
    "Not compatible with MacBook Pro with Retina display or iMac (Late 2012)."
    There are some USB IR receivers that allow the Apple Reomote to work with software such as Remote Buddy
    <http://www.iospirit.com/products/remotebuddy/>

  • HT4623 I phone 5s with 7.0.4 software I can not see the caller ID while on the phone for call waiting.

    I phone 5s with 7.0.4 software I can not see the caller ID while on the phone for call waiting. Any help???

    The following may help: http://support.apple.com/kb/TS4268

  • Hi ... Suddenly I have this problem with my iPhone4 . Whenever I am dialling or receiving calls, I am not audible at the other end , but if I am putting phone on speaker then I am audible to other person .Not sure if any setting is changed or device issue

    Hi ... Suddenly I have this problem with my iPhone4 . Whenever I am dialling or receiving calls, I am not audible at the other end , but if I am putting phone on speaker then I am audible to other person .Not sure if any setting is changed or device issue. Please suggest or help.

    There's an Apple help page on the DNS problem - at http://support.apple.com/kb/TS3408
    The first thing to try is changing your DNS settings - and for that you need to open System Preferences, then the
    Network section.
    In Network - click  on Advanced - then the DNS tab
    under DNS servers - use the + button to enter two extra lines
    either these, from google dns
    8.8.8.8
    8.8.4.4
    or from OpenDNS
    208.67.222.222
    208.67.220.220
    then click OK & then 'Apply'
    You would need to do that seperately for the Cable (Ethernet) settings and Wireless (Airport)

  • Why is the decline button for phone calls not available when the phone is locked? I need that button and it shows only when the phone is not locked on iOS 7

    Why is the decline button for phone calls not available when the phone is locked? I need that button and it shows only when the phone is not locked on iOS 7

    Yep. You need to touch the sleep/power button once to silence the ring, and twice in order for the call to go directly to Voicemail.
    Personally, I dont understand why Apple eliminated this. If you wish to give Apple feedback, do it here:
    www.apple.com/feedback

  • Skype dropping calls as soon as the other person a...

    I have montly subscription to calls to China. Skype dropping calls as soon as the other person answers the phone. This is very frustrating to me. Please help!

    I have exactly the same problem!!! I have an iPhone 4 with iOS 6.1, and I think that my problem started when I updated to last version (6.1) of iOS. I have done everything you tell and, like you, my iPhone has not been damaged by a drop or water. Please help because I'm desperate!!!

  • HT2515 What happens if our video chat is not connecting with the other person?

    What happens if our video chat is not connecting with the other person?

    Hi,
    Not really enough info to help constructively.
    Which Version of iChat ?
    Is it iChat to iChat or iChat to Messages  (i.e Mac to Mac) or AIM (iChat) to PC AIM  (needs to be a compatible version)
    Is this AIM to AIM (Includes AIM valid Screen Names from certain Apple IDs) ?
    Is it Jabber to Jabber (this can only be done Mac to Mac in Messages and/or iChat) ?
    Do you get any failure  message ?
    In the Video Menu > Connection Doctor > Errors tab do you get any info ?
    NOTES
    As mentioned it is iChat to iChat or iChat to AIM on a PC if the PC has a compatible version (which is not the latest)  (where it lists iChat it also means Messages in Mountain Lion)
    It has to be either AIM to AIM IDs or Jabber to Jabber IDs
    It cannot be Jabber to some GoogleTalk Web Browser Login (or Facebook)
    It cannot be Jabber/Google Talk to the PC app called GoogleTalk
    Google released an PC only App that will use Jabber protocols for Video (Called Jingle)
    Their web Browser Plug-in also uses Jingle for Video and Audio chat but iChat and Messages use SIP (Session Initiation Protocol) to connect.  The two are not compatible.
    Facebook also run a  Jabber server and have apparently released their Own Plug-in  which can cause problems of it's own on a Mac.
    However you also cannot video to a Web Browser Login on Mac or PC
    If this is iChat 6 it does not Video on the Yahoo Accounts  (that is Text Only)
    This means it cannot Video to any version of Yahoo on Mac or PC or any Web Browser method.
    10:27 PM      Tuesday; February 19, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Very Low Volume on Phone Calls - Can barely hear the other person

    Just picked up my iPhone 4 at the Apple Store. Tried to make a phone call the the call volume is so low I can barely hear the other person calling.
    The speaker volume is not much better. The other person can hear me fine and says the sound is great.
    The volume dots are all the way up.
    The settings sound voulme under ringer is all the way up.
    ipod volume lock is not activated.
    Any other settings to check out?

    OK now I don't feel like I'm the only one. I've also done a hard reset and still suffer from the same issue.
    Since it seems to be the popular question, no the plastic is no longer on my phone.
    To call the volume I'm hearing a whisper would be a overstatement. This is a much bigger issue than the antenna. The phone is basically unusable without headphones. Unfortunately I'm not very close to a Apple store to exchange.

  • HT1555 how do you connect an iphone to be a remote for Apple TV without the apple remote?

    how do you connect an iphone to be a remote for Apple TV without the apple remote?

    you can use the remote app.
    http://www.apple.com/apps/remote/

Maybe you are looking for

  • Help With Tags

    I have a TagLib which is working perfectly with JSPs,The Tag is <c:chart id="chart1" datasource="#{name.Graph}" type="xyline" is3d="false" background="green" height="50" width="150" legend="false" border="true"> </c:chart>. What i am trying to do is

  • ITunes 11.1 persistent permission repair

    hello I just upgraded iTunes. I already ran 3 times the Disk Utility right after the installation of iTunes 11.1 (downloaded file) I 've never seen this happen, 12 years of mac use, each time I repair permissions, I see like a thousand "lines" of rep

  • User preferences gone and access to system preferences locked

    I did a software upgrade to my iMac and it wiped out all my user preferences, and will not allow me access to my system preferences to change it back.  Any suggestions to fix this issue would be greatly appreciated. Abby

  • Local account credentials and licensing

    Hello, we have a Windows 2008 R2 server used for terminal services. The server is configured and is working fine. All domain users can login without issues. If we login with a domain administrator account, this server successfully contacts the licens

  • Windows Media Player 11 - Zen Vision:M Not Recognized Anym

    I've installed WMP, which is told to be especially very well with Vision:M, and nothing recognizes my Vision:M now. It's shown up as a Portable Device (with a new icon), with it's Name "Creative Zen Vision:M", I connect, it asks me what to do. Window