During continuous scanning thermocouples with a SCXI 1120 module is the cjc reference read each scan?

Did the developers of the DAQmx drivers improve the temperature scan capability of the SXCI 1120 module over the methods used in the traditional drivers?
When using the SCXI 1120 module for temperature measurement and in the continuous scan mode with traditional drivers the cold junction reference was only checked on the initial start of the scan. In order to maintain accuracy it was necessary to restart the scan.
For the most part I have switched to the 1125 module for thermocouple measurement but I need to use some 1120 modules on a test stand now and I will be using the DAQmx drivers on these. I was in hopes that with the DAQmx drivers this behavior was corrected.
I can conduct testing to determine this but would like to know ahead of time if this is still an issue.
Thanks

Thank you Ben for the answer.
I checked the article you referenced appears to me that I will be adding the physical address in the channel strings then do the voltage to temperature conversion and then correct the appropriate channels associated with the cjc in question. I will also need to adjust some on board jumpers for the SCXI 1120.  If I am wrong please correct me.
If scanning the physical channel is possible as suggested in this article, would it not be possible to create the channel as a virtual global channel and reference it as the cold junction in Max? Then the temperature adjustment could be done at this level of acquisition rather than having to sort this out in the LabVIEW program. This takes me back to the days with LabVIEW 4.0 before we had the virtual channels and when we had to handle the temperature conversions and other scaling ourselves. Again if I am incorrect please let me know, for I would like to use the method recommended in the article if I don't have to perform all the calculations in the application.
Just wondering if anybody reading this has actually used this method. If so, how did it work for you?
I may end up building a start up routine testing for 1120 modules being used for thermocouple measurement then if found run a stop and restart scan every 5 minutes to prevent large errors from being introduced.

Similar Messages

  • Can I measure frequency with a SCXI-1120 module and SCXI-1320 terminal block?

    I am attempting to measure a square wave from a directional encoder to display RPM of a dynamometer. The waveform will have a frequency of 0-4KHz, with 3.6KHz being nominal, at about 5volts RMS. How can I measure the frequency of this waveform with the hardware I am currently using? In addition to what is listed above, I am using a PCI6034E GPIB card and LabView software.

    In order to measure frequency, I would not recommend to use the SCXI-1120, but the SCXI 1126, which is a programmable isolated F-to-V module.
    If by any reason you do not want to use SCXI-1126, then I would suggest to use the counter/timers of your board. The counter/timers are TTL compatible, and are the devices that we mostly recommend for doing precise frequency measurements.
    In order to have access to the counter/timers of your board through your SCXI chassis, you will need SCXI-1180, which is basically a feedtrhough panel for your DAQ board.
    Once we have access to the counter/timers through the SCXI chassis, we can proceed with the coding.
    I found a pretty good webpage that clearly explains how to perform frequency measurement with the DAQ-S
    TC counter/timers (DAQ-STC is the type of counter/timer chip that you DAQ device has). Here is the link to it:
    Pulse Width & Frequency Measurements
    As you will see, this link contains tutorials, application notes and example programs. I would recommend to pay special attention to the example program called: DAQ-STC: Measuring frequency.
    Good luck with your application!

  • SCXI-1120 module

    I am working a project where we want to measure temperature and pressure with LabVIEW. The pressure transducers put out a 4-20mA signal. My customer already has the following equipment. SCXI 1001 chassis, (2) 1120 modules, a 1320 terminal block and a 1328 terminal block. I am fairly new to the hardware side of this but it appears to me that I can use the 1328 with an 1120 module for the temps and the 1320 with the other 1120 module for the transducers with the 4-20mA signal. Are my assumptions correct? Also is the SCXI-1001 chassis powered by battery?
    Thanks for any help.

    Any DAQ card you choose will (as a rule) only use 1 input channel (channel 0) for data transfer between the SCXI chassis and the DAQ card. All of the data is multiplexed through channel 0 of the onboard DAQ card. So, you only NEED 1 analog input channel on your DAQ card. The 6011E is not the best choice for SCXI since you can not use the inherent (pseudo) SSH capability. In addition, the SCXI bus is band limited to a maximum aggregate sampling rate of 333 ksamples per second. So, the DAQ board would be limited to the 333 ks limit with SCXI. My personal favorite is the PCI (or PXI) 6052E board. It is rated at 333 ksamples per second at 16-bit accuracy - it is a superb match with the SCXI line.
    As for the question about single-ended or differential
    , well.., that is an entire DAQ lesson in itself. Simply put ... Single-ended means you connect the positive inputs to the designated channel and all of the ground are tied together. Differential means you attach the positive and ground inputs from each sensor to individual channels (see the appropriate users manual). Differential gives superior signal-to-noise ratio and commom mode noise rejection - at the expense of twice the channel count. The "gross rule-of-thumb" is: If your signal source is grounded (by means of a three-prong plug - say a stand-alone Vischay Amplifier) and the signal is greater than 1 V, and, the input wire is shielded and properly grounded, and, the wire length is less than 10 feet -- you can use single-ended: Otherwise, use differential.

  • Need Help with Oracleasm - a kernel module for the ASM library

    I am a beginner, trying to install Oracle RAC. I have a system with SuSE Linx 11 (64 bit) loaded. I need to get the correct ASMLib packages needed for installing ASM. I think I got the following packages that are needed for installing ASM
    1) oracleasmlib- the ASM libraries (oracleasmlib-2.0.4-1.SLE11.x86_64.rpm)
    2) oracleasm-support- utilities needed to administer ASMLib (oracleasm-support-2.1.3-1.SLE11.x86_64.rpm)
    I am unable to find the third package.
    3) Oracleasm - a kernel module for the ASM library
    I looked at my kernel version it says "2.6.27.19-5-default". I am not sure where I can get the above third package. If you have an answer/know ase share your thoughts.
    Thank You

    Hi!
    Don't use ASMLib, it will be no longer available, it will only came in Oracle Unbreakable Kernel for Linux 6.
    The easly way to set the permissions on your devices is with a /etc/init.d script that do the job.
    Here is an example:
    #! /bin/bash
    # chkconfig: 2345 25 19
    # description: Set ASM Permissions on to devices at boot.
    case "$1" in
    start)
    /bin/chown oracle:oinstall /dev/sdb1
    /bin/chmod 0660 /dev/sdb1
    stop)
    #do nothing
    status)
    ls -l /dev/sdb1
    echo "Usage: $0 {start|stop|status}"
    exit 1
    esac
    exit o
    You need to replace the /dev/sdb1 for your acctual partitions.
    Please check the Docs to be sure that you meet all pre-reqs.
    http://docs.oracle.com/cd/E11882_01/relnotes.112/e23558/toc.htm
    http://docs.oracle.com/cd/E11882_01/install.112/e22489/toc.htm
    http://docs.oracle.com/cd/E11882_01/install.112/e24321/toc.htm
    Hope it's helps.
    Best Regards,
    Julio

  • New ATA channel with an exclamation point appear in the device manager at each start (when no new device has been installed)

    Good morning,
    My desktop, (Win7 64, AMD cpu/ Gigabyte mother board) , started to generate strange problems such as my laser usb printer not reachable even after disinstal/reinstall.
    I took a look in the device manager, and found 2 ATA channel with an exclamation point, "drivers not found'. I also found a USB universal controller with the same exclamation point and the same error.
    I changed nothing in terms of Bios since the machine was built (AHCI, Raid not active). The main drive is a SSD on primary SATA port, classic drive on the second port.
    I deleted the 3 items, the printer started to work again.  They reappeared after the next reboot.
    Weird thing: it looks like the problems appeared after connecting/disconnecting a Nikon camera to one of the usb port (identified as a mass storage device).
    I ran multiple scans (root) in case a virus would have generated the problem, negative.
    Last point (can't tell if it's related or not), my browsers started crashing randomly.
    Thank you

    Hi,
    I'd ask your question in the Windows forums here:
    http://answers.microsoft.com/en-us/windows
    Or perhaps over in the Win7 IT Pro forum here, since you seem fairly comfortable:
    http://social.technet.microsoft.com/Forums/en-us/home?category=w7itpro&filter=alltypes&sort=lastpostdesc
    This forum is meant for reporting issues with the forums themselves, not product support.
    Good luck.
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • SCXI 1300 module

    Hai,
    I am using SCXI 1300 module to read temperature values using J type thermocouple. When I am measuring the room temperature, it is showing wrong value. (If the daisy chain index is changed from 0 to 7 , the room temperature differs) I need to measure the temperature of a hot plate. I am using 10 thermocouples. Please anyone help me.
    Thank You.

    Hi,
    My first suggestion is to make sure you are connecting the thermocouple like we specified in page 7 of the SCXI-1300/1301 Guide and Specifications.  My second suggestion is to make sure the scxi-1300 is selected as the accessory of your module, since this card has a built in CJC; you need to configure your system to know that. The name of the channel for the CJC is called cjtemp in the case you want to make mueasurment directly to it.
    This is a discussion forum of another customer that had a similar issue, take a look at it and follow the conversation; this is a good reference on how a misplace jumper may make the card read the incorrect voltages. Voltage Measuring error in LabVIEW with scxi-1100/1300. Another very good reference is the article in DevZone How to Use Thermocouples with an SCXI-1102 Module
    Where are you reading the voltages, test panel or LabVIEW?
    I hope it helps
    Jaime Hoffiz
    National Instruments
    Product Expert
    Digital Multimeters and LCR Meters

  • Specifications for themistor on scxi-1303 module

    I'm looking for the specifications for the thermistor in an SCXI-1303 so I can purchase some new ones.
    I have a SCXI-1303 module where the CJC reading went bad and after some troubleshooting, I determined it was the CJC circuit.  The thermistor is reading about 2ohms at room temperature and the manual says it should be approx. 5Kohms.
    thank you!

    Hi mngrigg,
    The specifications for the SCXI-1303 are shown on page 11 of the SCXI-1303 32-Channel Isothermal Terminal Block Installation Guide and Specifications. However, I believe in order to verify that the temperature sensor is still within specifications, we should perform a proper calibration. I recommend following the steps outlined in the SCXI-1303 Terminal Block Calibration Procedure. It is possible that the sensor may have fallen out of calibration and if this is the case, I recommend you send in the unit for repair.
    I hope this helps,
    S_Hong
    National Instruments
    Applications Engineer

  • HP scan incompatible with Mac OS 10.9 (Mavericks)?

    A number of people seem to be having scan problems after upgrading to OS X Mavericks.  Me too.
    Working with LaserJet Pro 300 color MFP M375 nw.
    I want to use HP Scan from my iMac, connected to the LaserJet, to scan from that printer/scanner to my iMac (to thedesktop), as I've done a thousand times.
    When I try, the appearance in the HP Scan window is all as usual.  But when I "send to folder," the .jpeg (or .pdf or .tif) that arrives on the desktop is (1) distorted and (2) partial.
    NOTE: If I use the 'General Purpose' setting, no distortion - but with that setting I can't get 300 ppi, which is what I want.
    I can also get a *sort of* result with the 3D setting.
    However, the 'Documents with text' setting - the one I have always used - gives the same distored/chopped result no matter what variations I introduce.
    There do not seem to be any software upgrades from Apple.
    I can't find anything on the HP site for downloads to deal with the Mavericks OS.
    Is something in the works from HP?  How will we know about it?
    Thanks.
    This question was solved.
    View Solution.

    Hi Everyone,
    There have been numerous reports of an HP Scan incompatibility on Mavericks.  Please be assured that we are looking into this issue and hope to have a resolution soon.  
    At this time here is what we've observed:
    * On many Macs (not all), images scanned in Black & White or Grayscale will not save properly.  The preview looks fine, but the output will be cropped and distorted.
    * This issue is new for Mavericks.  Previous OS versions are not impacted.
    Here are some known workarounds that may help you until this is properly resolved:
    * Use Image Capture to scan.  Image Capture can be found in the Applications folder.  This scanning application does not appear to be affected by the file saving issues.
    * Use the HP Scan Print dialog to save the output to PDF using one of the PDF workflow options.
    * Use the "General Purpose" scanning preset.  This preset scans in color and so output is not affected.
    * Change the settings for the "Documents with Text" preset to scan in full color.   You can also create a new preset based on the "Documents with Text" set for color if you plan to use these settings regularly.  Note that if you are not planning to process the documents for text extraction (OCR) then you can lower the scan resolution to 200 ppi to keep the file sizes more manageable since color scans can be much larger than grayscale or black & white.
    I will try to provide more details as they emerge.  Thanks for everyone who has shared observations about their experience and configuration as this continues to be very helpful in tracking down root cause for this issue.
    FretnBoutNutn
    I work 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"

  • HP scan incompatible with Mac OS 10.9 (Mavericks)-Alternative

    I found this software that works with my Scanjet 4890.
    I know that we shouldn't have to purchase other software to make it work, but you gotta do what you gotta do!
    www.hamrick.com
    It's called VueScan
    Good luck!

    Hi Everyone,
    There have been numerous reports of an HP Scan incompatibility on Mavericks.  Please be assured that we are looking into this issue and hope to have a resolution soon.  
    At this time here is what we've observed:
    * On many Macs (not all), images scanned in Black & White or Grayscale will not save properly.  The preview looks fine, but the output will be cropped and distorted.
    * This issue is new for Mavericks.  Previous OS versions are not impacted.
    Here are some known workarounds that may help you until this is properly resolved:
    * Use Image Capture to scan.  Image Capture can be found in the Applications folder.  This scanning application does not appear to be affected by the file saving issues.
    * Use the HP Scan Print dialog to save the output to PDF using one of the PDF workflow options.
    * Use the "General Purpose" scanning preset.  This preset scans in color and so output is not affected.
    * Change the settings for the "Documents with Text" preset to scan in full color.   You can also create a new preset based on the "Documents with Text" set for color if you plan to use these settings regularly.  Note that if you are not planning to process the documents for text extraction (OCR) then you can lower the scan resolution to 200 ppi to keep the file sizes more manageable since color scans can be much larger than grayscale or black & white.
    I will try to provide more details as they emerge.  Thanks for everyone who has shared observations about their experience and configuration as this continues to be very helpful in tracking down root cause for this issue.
    FretnBoutNutn
    I work 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"

  • Scanning Nightmare with Mountain Lion... can it really be this way?

    I am running mountain lion and scanning from my HP 8600 Pro E using the built in Mountain Lion scanning software.
    Here is my issue, if I scan multiples pages and do not have the "Combine PDF" checkbox marked each page is created as a PDF.  If i do check it, it combines the current scan AND the previous scan.
    My only work around is to delete a scan before scanning a new set of pages.
    Seems like an obvious bug, what am I doing wrong?  How can it be that I cannot scan multiple pages without a headache?
    If you can shed some light on this i'd be soooo appreciative, have a good gift for the best answer! 

    Hi,
    Why dont you use the HP Scan application? It will allow scanning multiple pages from the document feeder in a single click, OCR capabilities, scanning from the printer front panel, etc.
    You may find the software below, be sure to select HP Recommended Software during the installation screens:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-107214- 1&cc=us&dlc=en&lc=en&os=219&product=4323659&sw_lang=
    Hope that helps,
    Shlomi

  • My hp photosmart C310 continues to spit our blank prints until it empties the paper tray

    My Hp photosmart C310 for no reason will start spitting out blank prints until the paper tray is empty.  I can load paper all day and it continues printing blanks with just a D up in the corner.  No prints are in Q

    Hi letterleaver,
    Thank you for visiting the HP Support Forums! I see your HP Photosmart C310 continuously prints out pages with a D on the top of the page, there is nothing in the print queue and if you reload the paper it will continue until the paper runs out. I can understand your frustration and would like you to complete the steps below:
    1. Do a hard reset on the C310a and make sure to plug directly into a wall outlet, no surge protectors or power bars they can cause the printer to remain in error state or cause it to lose basic functionality over time.  Start here: Resetting the Printer
    2. I know you said there is nothing in the print queue, but there may be something stuck in the print spooler, I would like you to complete the steps listed here: Print Jobs Stuck
    3. Now run the HP Print and Scan Doctor- It was designed by HP to provide users with the troubleshooting and problem solving features needed to resolve many common problems experienced with HP print and scan products connected to Windows-based computers.
    Please let me know the outcome, I will watch for your reply.
    Thanks,
    I got this helpful information from www.mydigitallife.info
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • The located assembly's manifest definition with name 'openfoundation' does not match the assembly re

    Ok. been working on this for the better part of a day. I am having trouble with the .net web controls. trying to create a simple portlet that populates a text box with values from a 2nd text box when a button is selected. both text boxes are in the same portlet.
    without using the <httpModules> entry in the web.config file the portlet works fine, but it does pop you out of the portal.
    setup: working in a Dev. environment with portal and portlets on the same box.Portal version is 5.0.2.EDK version is 5.0.2.
    error:
    The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.FileLoadException: The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.Source Error:An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.Assembly Load Trace:The following information can be helpful to determine why the assembly 'openfoundation' could not be loaded.=== Pre-bind state information ===
    LOG: DisplayName = openfoundation, Version=2.0.9.3152, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5
    (Fully-specified)
    LOG: Appbase = file:///c:/inetpub/wwwroot/netTest
    LOG: Initial PrivatePath = bin
    Calling assembly : dotnetportlet, Version=3.5.0.1, Culture=neutral, PublicKeyToken=null.
    ===
    LOG: Publisher policy file is not found.
    LOG: No redirect found in host configuration file (C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
    LOG: Using machine configuration file from C:\WINNT\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
    LOG: Post-policy reference: openfoundation, Version=2.0.9.3152, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5
    LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/nettest/9e6689f5/a0d2f067/openfoundation.DLL.
    LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/nettest/9e6689f5/a0d2f067/openfoundation/openfoundation.DLL.
    LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/netTest/bin/openfoundation.DLL.
    WRN: Comparing the assembly name resulted in the mismatch: Minor Version
    Stack Trace:[FileLoadException: The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.]
       Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(HttpRequest req, HttpResponse resp) +0
       Com.Plumtree.Remote.Transformer.Condition.GatewayedStandardCondition.UseFilter(HttpContext ctx)
       Com.Plumtree.Remote.Transformer.FilterManager.UpdateFilter(HttpContext ctx)
       Com.Plumtree.Remote.Transformer.PTTransformer.BeginRequestHandler(Object sender, EventArgs e)
       System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +60
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87
    Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.947
    ************************************************************Is there any step by step instructions for setting up and using the .net web controls in Plumtree????
    There doesn't seem to be any information in one spot as to setting up the environment to use the .Net Web Controls. I have had to piece together information from multipule threads to get this far. I.E. there was nothing in any documentation that I have read that required the installation of the VJ# lib's. (that error took me the first half of the day to resolve :-) )
    Thanks for any help,
    Greg************************************************************

    Also, when reviewing the Plumtree_.NET_Web_Controls_InstallLog.log there were 5 nonfatal erros. These error's were:
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\edk.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\edk.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\jsregistry.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\jsregistry.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\log4net.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\log4net.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\openfoundation.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\openfoundation.dll (The process cannot access the file because it is being used by another process)
    Install File: E:\plumtree\ptwc\2.0\bin\assemblies\Plumtree.WCFilter.dll Status: ERROR Additional Notes: ERROR - java.io.FileNotFoundException: E:\plumtree\ptwc\2.0\bin\assemblies\Plumtree.WCFilter.dll (The process cannot access the file because it is being used by another process)
    When installing the Web Control's do you need to stop any services? I didn't see anything in the install notes about doing this?

  • Pretzel: The located assembly's manifest definition with name 'openfoundation' does not match the

    We have got 5.0.2 Plumtree portal, EDK 5.0.2 and .Net Web Controls 2.1.
    I am trying to call:
    IPortletContext oPortletContext = PortletContextFactory.CreatePortletContext(System.Web.HttpContext.Current.Request, System.Web.HttpContext.Current.Response);
    I have attached the error I am getting. Is this related to Open Foundation version? This is quite urgent because we are in the process of trying to get a demo together for grabbing Activity Rights.
    Server Error in '/portlets/DOJ/JNET/pretzel.clients.doj.reentry' Application.
    The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.FileLoadException: The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.Source Error:An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.Assembly Load Trace:The following information can be helpful to determine why the assembly 'openfoundation' could not be loaded.=== Pre-bind state information ===
    LOG: DisplayName = openfoundation, Version=2.0.9.8318, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5
    (Fully-specified)
    LOG: Appbase = file:///E:/Data/HSTPRDAPP01/Inetpub/plumtree/portlets/DOJ/JNET/pretzel.clients.doj.reentry
    LOG: Initial PrivatePath = bin
    Calling assembly : dotnetportlet, Version=3.5.0.1, Culture=neutral, PublicKeyToken=null.
    ===
    LOG: Publisher policy file is not found.
    LOG: No redirect found in host configuration file (C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
    LOG: Using machine configuration file from C:\WINNT\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
    LOG: Post-policy reference: openfoundation, Version=2.0.9.8318, Culture=neutral, PublicKeyToken=d0e882dd51ca12c5
    LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/portlets_doj_jnet_pretzel.clients.doj.reentry/26128f6f/cfc1837a/openfoundation.DLL.
    LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/portlets_doj_jnet_pretzel.clients.doj.reentry/26128f6f/cfc1837a/openfoundation/openfoundation.DLL.
    LOG: Attempting download of new URL file:///E:/Data/HSTPRDAPP01/Inetpub/plumtree/portlets/DOJ/JNET/pretzel.clients.doj.reentry/bin/openfoundation.DLL.
    WRN: Comparing the assembly name resulted in the mismatch: Minor Version
    Stack Trace:[FileLoadException: The located assembly's manifest definition with name 'openfoundation' does not match the assembly reference.]
       Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(HttpRequest req, HttpResponse resp) +0
       pretzel.clients.doj.reentry.navigation.Page_Load(Object sender, EventArgs e) in \\devnet2\inetpub\doj\reentry\development\pretzel.clients.doj.reentry\navigation.aspx.cs:22
       System.Web.UI.Control.OnLoad(EventArgs e) +67
       System.Web.UI.Control.LoadRecursive() +35
       System.Web.UI.Page.ProcessRequestMain() +750
    Version Information: Microsoft .NET Framework Version:1.1.4322.1031; ASP.NET Version:1.1.4322.947

    I have seen this before after a upgrade of the EDK, found I had to remove the reference in the C# project to the old EDK dll and re add it to the new EDK dll.
    Also noticed that you are using the System.Web.HttpContext.Current fully qualified namespace in the CreatePortletContext() call instead of the usual way of PortletContextFactory.CreatePortletContext(Request, Response) this uses the System.Web.HttpRequest.Page namespace by default.

  • I am required to enter a 6 digit PIN. Will the 5S fingerprint read authenticate the 6 digit pin...as if I entered it instead of my print scan?

    I am required to enter a 6 digit PIN with my iphone 5. Will the 5S fingerprint read authenticate the 6 digit pin...as if I entered it instead of my print scan?

    Your question is very confusing.
    duoono wrote:
    I am required to enter a 6 digit PIN with my iphone 5.
    The iPhone uses a four digit, not a six digit PIN.  So I guess you mean you had to enter a PIN for some other application.
    duoono wrote:
    Will the 5S fingerprint read authenticate the 6 digit pin
    Since your first sentence discussed an iPhone 5 and this one an iPhone 5S, I guess you are thinking about buying a 5S and wondering if it reads the PIN.  But since the PIN is for some other application, no it does not.
    duoono wrote:
    ...as if I entered it instead of my print scan?
    The iPhone 5S will use your fingerprint to allow you access to the iPhone instead of a passcode, and, if you wish, access to the Apple Store.

  • SCXI different Modules Compatability

    I am using a SXCI 1000 (4-slot) chassis with one SCXI-1100 module and 3 SCXI-1102 modules. I want to know if I can multiplex a SCXI-1100 moudule with a SCXI-1102 module to one pulg in DAQ board and the other two SCXI-1102 modules into another plug in DAQ board, eventhough all moudles are housed in the same chassis.

    Dunty,
    Please refer to the following Knowledge Base article for more information.
    Can I Use SCXI Modules in Parallel Mode and Multiplexed Mode in the Same Chassis?
    http://digital.ni.com/public.nsf/websearch/C94797073B74E51E86256A93005CABFF?OpenDocument
    In your situation you are asking to run all four modules in multiplexed mode with two of them being the controlers. Therefore you will have two groups and this is not possible. If you decide to multiplex the SCXI-1100 module with a SCXI-1102 module to one DAQ board then you will have two modules left over. You could set both remaining SCXI-1102 modules to parallel mode or you could set one to parallel mode and multiplex the last module with the first SCXI-1100 and 1102.
    Regards,
    Justin Britten
    Ap
    plications Engineer
    National Instruments

Maybe you are looking for