How to solve the error "The specified resource is reserved" when running with DAQmx And LabVIEW?

How to solve the error "The specified resource is reserved" when running with DAQmx And LabVIEW?

I hate "J term"
OK I love the learning the students get.   And, I like helping them out!  But, as a former man who's got the varicose viens to prove he's spent time "behind the podium" (yeah, "behind the podium" puts 'em to sleep- songs and dances for the young'uns) come on! USE the tools you teach!
Instructors invited to engage in the forums
Jeff

Similar Messages

  • How to solve "acrobat could not communicate to this device" when scanning with HP LaserJet 100 color MFP M175 PCL6 connected via usb

    I have de- and installed everything again. All other programs like Photoshop, native HP scanning software do work normally. Only Acrobat can't connect to the device.
    What should I do?
    Evgeny

    I have restarted everything number of times already. Note my question category: "Categories: Windows". Acrobat version:
    My actions and errors I see:
    System report and installed plugins just in case:
    Account Detail:
       User Rights: Admin
       User Account Control: Limited
       Process Integrity: Undefined
       Profile Type: None
    Acrobat Detail:
       Sandboxing: Off
       Captive Reader: No
       Multi-Reader on Desktop Support: Off
    Applications Installed:
       Office Version: Office 2013 32-bit
    Available Physical Memory: 4194303 KB
    Available Virtual Memory: 3975744 KB
    BIOS Version: ALASKA - 1072009
    Default Browser: C:\Program Files\Internet Explorer\iexplore.exe
        Version: 11.00.9600.16428 (winblue_gdr.131013-1700)
        Creation Date: 2015/03/11
        Creation Time: 08:51:26
    Default Mail: Microsoft Outlook
        mapi32.dll
        Version: 1.0.2536.0 (win7_rtm.090713-1255)
        Creation Date: 2012/07/02
        Creation Time: 15:42:07
    Display Detail:
       Screen Width: 1920
       Screen Height: 1200
       Number of Monitors: 2
       Number of Mouse Buttons: 16
       Has Mouse Wheel: Yes
       Has Pen Windows: No
       Double Byte Character Set: No
       Has Input Method Editor: Yes
       Inside Screen Reader: No
    Graphics Card: Intel(R) HD Graphics 3000
        Version: 9.17.10.3347
        Check: Not Supported
    Installed Acrobat: C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\Acrobat.exe
        Version: 15.7.20033.133275
        Creation Date: 2015/03/17
        Creation Time: 01:34:14
    Installed Acrobat: C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe
        Version: 11.0.10.32
        Creation Date: 2014/12/03
        Creation Time: 08:31:20
    Locale: English (United Kingdom)
    Monitor:
        Name: Intel(R) HD Graphics 3000
        Resolution: 1920 x 1200 x 59
        Bits per pixel: 32
    OS Manufacturer: Microsoft Corporation
    OS Name: Microsoft Windows 7
    OS Version: 6.1.7601  Service Pack 1
    Page File Space: 4194303 KB
    Processor: Intel64 Family 6 Model 42 Stepping 7  GenuineIntel  ~3605  Mhz
    Session Detail:
       Boot Type: Normal
       Is Shutting Down: No
       Network: Available
       Inside Citrix: No
       Inside VMWare: No
       Remote Session: No
       Remote Control: No
       Using JAWS: No
       Using Windows-Eyes: No
       Using NVDA: No
    System Name: MONSTER
    Temporary Directory: C:\Users\edrokov\AppData\Local\Temp\
    Time Zone: W. Europe Standard Time
    Total Physical Memory: 4194303 KB
    Total Virtual Memory: 4194176 KB
    User Name: edrokov
    Windows Detail:
       Tablet PC: Yes
       Starter Edition: No
       Media Center Edition: Yes
       Slow Machine: No
    Windows Directory: C:\Windows
    Installed plugins:
    C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\plug_ins\Accessibility.api
        Version: 15.7.20033.133275
        Creation Date: 2015/03/17
        Creation Time: 01:34:20
    C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\plug_ins\Annots.api
        Version: 15.7.20033.133275
        Creation Date: 2015/03/17
        Creation Time: 01:34:20
    C:\Program Files (x86)\Adobe\Acrobat DC\Acrobat\plug_ins\IA32.api
        Version: 15.7.20033.133275
        Creation Date: 2015/03/17
        Creation Time: 01:34:20

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • Error 50103 the specified resource is reserved - task name - on 4 modules

    Hi all.
    I'm sorry i put this post by mistake in Measurement Studio for.NET: smileyindifferent:
    Let me tell you my configuration:
    software:   Windows XP sp3, Labview 8.5 en.
    hardware:   NI-cDAQ chassis 9172 with 4 modules installed (in this order):
                            1. NI-9217 (4 RTDs)
                            2. NI-9217 (4 RTDs)
                            3. NI-9219 (4 RTDs)
                            4. NI-9219 (4 RTDs)
    So, i want to aquire 16 temperatures.
    In MAX v4.3, all is working fine.
    As you aspected, I have the famous error 50103:  "The specified resource is reserved. The operation could not be completed
    as specified". "Task name: unnamedTask<9>".   - highlighting module #2.
    My goal is to read these temperatures consecutively, i mean: mod1 ch0..ch3, mod2 ch0..ch3 and so on.
    My programm (vi) is like that:
    In a while loop I have a Stacked Sequence Structure which has 4 frames, each for every DAQ Assistant asigned and configurated
    for those modules.
    So i have: Assitant1 for mod1, Assistant2 for mod2, and so on.
    The Assistants work well in configuration preview mod. (I see 4 temperatures on each module).
    But in my programm, i got the error above, on module2.
    I read something about this error and I understand that I can't use 2 or more resource in the same time.
    I understand that a resource represents a channel on a module.
    At each DAQ Assistant output I have a Split Signal (split in 4)
    But with this configuration and this algorithm I suppose I read all 16 channels in total consecutively, not in the same time.
    Am I wrong ?
    How can I fix the problem ? : smileysad:
    Thanks.
    Solved!
    Go to Solution.

    Hi dsasorin,
    The error that you have mentioned can be caused due to a number of reasons. There is a knowledgebase article listing several reasons for it that can be helpful. Have you created a task beforehand in MAX? Are you generating the code directly from it or are you writing the code in LabVIEW and asking it to use the channels from the task you specify? Have you tried using the lower level DAQmx VIs such as DAQmx Task name and then tried generating code from that by right-clicking and selecting Generate Code >> Configuration and Example. Hope this helps!
    Ipshita C.
    National Instruments
    Applications Engineer

  • "The specified resource is reserved" in DAQ error

    Dear all,
    Earlier before I posted a thread on "stop error caused by device driver?". The problem was partially solved, however, new problems start to come up.
    Basically the problem is that I have an PXI-6115 DAQ card, I used its two output channels to control my scan mirrors (by send two sawtooth waveform out). Everytime I finished one scan cycle, I need to put the mirror back to its originial position by using the same two output channels (sending two single voltage out). Since these two tasks are of different type, I created two different tasks: scanTask and parkTask. Then I do the following as suggeted by TheWoost:
    1. create and configure task handles for scanTask
    2. create and configure task handles for parkTask
    3. start scanTask and stop after finished one scan cycle
    4. start parkTask and stop after returning to orginial position
    Then repeat 3 and 4. The problem comes in when I get to step 4: "Function DAQmxStartTask: (return value == -50103 [0xffff3c49]). The specified resource is reserved. The operation could not be completed as specified. Task Name: _unnamedTask<1>  Status Code: -50103"
    I browsed through the knowledge base and realized that I cannot have two tasks using the same output channel, even though only one of them is active. If I clear scanTask after stopping it, then recreate it when I need it, that would be fine. However, that would be too much trouble. I was wondering if my understanding is right. If yes, is there anyway to get around it? I need to run scanTask and parkTask in a loop and it would be hard to recreate the task everytime.
    Any input is highly appreciated. Thank you for your time.
    Best Regards,
    Dan

    Dear Rob,
    Thank you for offering your expertise on this problem. I would be happy to include my code here. Right now I take the alternative approach by  clearing each task after it's finished and then recreate them. It works fine but brings in complexity and inconvenience. If you can get away with this, that would be great.
    The code is an except from the whole program. Since I changed it back and forth so many times, there might be some errors. The main part is focusButton and stopButton. When I hit focusButton, the two mirror outputTask are running. When I hit stopButton, I stop these tasks and call parkLaser function, which assign the outputTask to do single point output. Then I can do focus again. This is the part that gives problem.
    If there is anything that is unclear, please let me know.
    Best,
    Dan
    Attachments:
    scanimage2.c ‏47 KB
    Scanimage.uir ‏48 KB

  • Daqmx error num: -50103 with message: The specified resource is reserved. The operation could not be completed as specified.

    Hi, I am running a program where I have 4 nidaq cards on a single machine, all connected. I am trying to start a counter and keep getting that error (daqmx error num: -50103 with message: The specified resource is reserved. The operation could not be completed as specified.) in two places in my code. I understand what the error means (you can only have one task of a type per card), but I don't see where that is occuring in my code.
    See below for code. I noted the two places where the error is occuring. I am debugging someone else's code, which is part of the problem.
    Thanks!
    counterTask = 0;
    daq_err_check( DAQmxCreateTask( "counter_generation_task",
    &(counter_generation_task) ));
    daq_err_check( DAQmxCreateTask("counter_count_task",
    &(counter_count_task) ));
    char co_chan_name[40];
    char ci_chan_name[40];
    char ci_trig_chan_name[40];
    sprintf( co_chan_name, "%s/ctr0", niDev);
    sprintf( ci_chan_name, "%s/ctr1", niDev);
    sprintf( ci_trig_chan_name, "/%s/PFI9", niDev);
    printf("OK1");fflush(stdout);
    daq_err_check( DAQmxCreateCOPulseChanTicks( counter_generation_task,
    co_chan_name, "", "ai/SampleClock",
    DAQmx_Val_Low, 32,16,16) );
    daq_err_check( DAQmxCfgImplicitTiming( counter_generation_task,
    DAQmx_Val_ContSamps, 1000) );
    daq_err_check( DAQmxCreateCICountEdgesChan( counter_count_task,
    ci_chan_name, "",
    DAQmx_Val_Rising, 0, DAQmx_Val_CountUp) );
    daq_err_check( DAQmxCfgSampClkTiming( counter_count_task,
    "Ctr0InternalOutput", 1000.0, DAQmx_Val_Rising,
    DAQmx_Val_ContSamps, 1000) );
    daq_err_check( DAQmxSetRefClkSrc( counter_generation_task, "OnboardClock") );
    daq_err_check( DAQmxSetRefClkSrc( counter_count_task, "OnboardClock") );
    printf("abt to start counter_count\n"); fflush(stdout);
    daq_err_check ( DAQmxStartTask( counter_count_task ) ); // ERROR OCCURS HERE
    printf("abt to start counter_gen\n"); fflush(stdout);
    daq_err_check ( DAQmxStartTask( counter_generation_task ) ); // ERROR OCCURS HERE
    fflush(stdout);
    Thanks again for your patience!

    I get it when capturing from my mini DV cam (which is not controllable by FCP). To resolve, I have to click Capture Now a split second after I start the DV tape rolling.

  • Error -50103 the specified resource is reserved

    I installed DAQ 8.0, and loaded the example AcqIntClk and ir ran with a simulated device PCIMIO16XE10. Then I ran a measurement studio example in which I had to create a task using MAX. That ran okay. Then I deleted the task I had created, and returned to AcqIntClk and ran it again. This time I get the error when I press Start
    error -50103 the specified resource is reserved
    Please advise what to do?
    Thnaks,
    Saroj

    Hi saroj-
    Let's consolidate this discussion here.
    Thanks-
    Tom W
    National Instruments

  • Trying to update my ipod but i get the error message network timed out.  I've already uninstalled and reinstalled the latest version of itunes. I also do not have software update in settings on the ipod. How do i get the ipod to update?

    trying to update my ipod but i get the error message network timed out.  I've already uninstalled and reinstalled the latest version of itunes. I also do not have software update in settings on the ipod. How do i get the ipod to update?

    Try the manual method specified here:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch

  • I can't install on uninstall iTunes on my laptop; running Windows XP.  I've tried all the steps in Apple Support as well as Windows support.  Can anyone help?  I fet the error "The feature you are trying to use is on a network resource that is unavailable

    I can't install or uninstall iTunes on my laptop.  I've followed all the steps on Apple Support as well as Microsoft support.  I get the error "The feature you are trying to use is on a network resource that is unavailable.  Pick an alternate path to a folder containing the installation package 'iTunes.msi".  This has been going on for a couple of weeks now and I'm very frustrated.  From what I can see, I'm not the only one with this problem, but I have yet to see anyone post a solution that works.  Microsoft wants to charge me $99 to troubleshoot it for me and Apple will charge $20.  I think both are ridiculous as this is obviously not "operator error".

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Start-Process : This command cannot be run due to the error: The system cannot find the file specified.

    Hi, 
    I need some help with my script. It copies the file to the remote laptops but when it needs to install the .exe it fails.
    If I run 1 line at the time in Powershell ISE, then it works. Somebody has an idea why it doesn't work or can help me on the right way?
    Script: 
    $laptops = Get-Content -Path "C:\Users\bruyld01\Documents\STEPSTONE\Powershell\SAP\LaptopList.txt"
    foreach ($laptop in $laptops)
        Copy-Item "C:\Users\bruyld01\Desktop\SAP_Business_ByDesign_Add-In_for_Microsoft_Outlook_V5.exe" -Destination \\$laptop\C$\
        Enter-PSSession $laptop
        $version = Get-WmiObject -Class Win32_Product | where {$_.Name -like "*SAP Business*"} | Select-Object Version
        if ($version -ne "135.0.2071.1047")
            Start-Process -Filepath "C:\SAP_Business_ByDesign_Add-In_for_Microsoft_Outlook_V5.exe" -ArgumentList "/quiet"
        else
            Write-Host "SAP outlook add-in is up to date!" -ForegroundColor Green
        Exit-PSSession
    Error message:
    Start-Process : This command cannot be run due to the error: The system cannot find the file specified.
    At line:2 char:1
    + Start-Process -Filepath "C:\SAP_Business_ByDesign_Add-In_for_Microsoft_Outlook_V ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [Start-Process], InvalidOperationException
        + FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
    Thanks, 
    Dimitri

    Hi,
    Enter-PSSession is used for interactive remote sessions. Look into Invoke-Command instead.
    http://ss64.com/ps/invoke-command.html
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • I'm trying to update my itunes and i keep getting the error:  the feature you are trying to use is on a network resource that is unavailable.  Can someone please help me!!??

    I'm trying to update my itunes and I keep getting the error:the feature you are trying to use is on a network resource that is unavailable.

    Which particular .msi file (or files) does the message (or messages) go on to say cannot be found? (Several different .msi files might be mentioned in this context: itunes.msi, bonjour.msi, AppleSoftwareUpdate.msi, etc.)

  • How can i fix the Error "The application failed to initialize properly (0xc00001d)...."

    How can i fix the error "The application failed to initialize properly(0xc00001d). Click Ok to terminate the application"?
    I've tried to re-install twice the program and also restarted my PC several times and it still shows this error whenever i try to run it.

    Read the other threads on the same topic, or just install the 12.0.1 update.

  • I am getting the error ""The iTunes Library file cannot be saved. A flder was specified instead of a file" What does this mean?"

    I have been getting this error for the past couple of weeks. What does it mean? itunes 10..3
    tia
    ed

    After trying a few other remedies, the tech at Apple Care suggested I reinstall Lion.
    Here's the article:
    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mchlp1599.html
    I have not had the error message since, even after importing about a dozen CDs and burning a couple playlists.
    This seems to be the fix.

  • Ajax submit failed: error = 403, forbidden----how can solve this error

    Ajax submit failed: error = 403, Forbidden--how can solve this error to create a new eprintcenter account

    I am having the SAME problem.  This is so frustrating.   If i try to log on with teh user account I already have, I get the above message.  If i try to create a new accoutn it says the account is already existing.  If i click on forgot password, nnothing happens.  HELP!  I am stuck in a loop!!

  • I receive the error "The Selected Color Format is not supported" when I try to scan from my HP Office Jet Pro 8610.

    I receive the error "The Selected Color Format is not supported" when I try to scan from my HP Office Jet Pro 8610 using Adobe Acrobat Pro 11. I recently purchased the printer. I believe I ame using all of the defaults. How can I correct the problem?

    Hi,
    Both printer and computer seem to be on same network.
    Please download and run the following utility to troubleshoot on the issue.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03275041&cc=us&dlc=en&jumpid=reg_r1002_usen_c-0...
    Also download and install the firmware update from the link below.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-89897-4&cc=us&dlc=en&lc=en&...
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

Maybe you are looking for

  • Issues with images in Portfolio (Acrobat X Pro)

    Hi all, I am having an issue with my portfolio file in Acrobat X Pro. I insert images from my hard drive, then proceed to give them display names and tags. This works fine, but then the next time I open the file, some of the pictures have become brok

  • Figures in Grid Control and Enterprise Manager Console don't match!

    Hi, I have just installed Oracle 10g Grid Control and it is managing an existing database on another server. It appears to gather information as expected in most areas (I can look at the alert log through grid control and it is up to date to the near

  • Airport Network - Card vs Base Station?

    G'day, I have been considering setting up an airport network in my home for some time. The devices I'd want to network are: eMac G3 Powerbook (with airport card already) USB Canon Pixma printer Motorola Cable Modem (ethernet connection) From what I g

  • Multiple size and format exports

    Is there a way to hit the export button on a selection of images one time and produce multiple sizes and formats of each image? Maybe an automator script. It would speed things up if you didn't have to go back and choose a different format from the d

  • BPC 10 - EPM data retrieval very slow!

    Hi BPCers, We are using an Excel EPM Input Schedules as a Resource Management tool - using VBA to provide the functionality we need. Performance is generally good, but quickly deteriorates when handling larger data sets - even 500-600 rows of transac