RealSim Source Code Available to End Users

Since NI is not going to support the RealSim Product Line or support AC-104's, Will NI make available the source code to End Users that wish to continue using AC-104's and RealSim?
If not, when will there be an announcment of the third party that will be offering support on these features?

NI does not intend to make available RealSim source code to end users and is directing customers who wish to continue to use RealSim software/hardware to 3rd parties.
NI plans to make it easy for customers to target NI hardware, including real-time PXI, with MATRIXx in the future. For information on PXI, please refer to the PXI section www.ni.com/pxi.
The list of NI Alliance Members (3rd parties) that can provide RealSim support and the parts list for RealSim hardware are now available our online KnowledgeBase. You can access the KnowledgeBase at www.ni.com/support.
Ash Razdan
National Instruments
[email protected]

Similar Messages

  • JMS Adapter modules source code available?

    Hi Experts,
    we have to build some modules for the JMS adapter. Is the source code for the existing modules/JavaBeans available somewhere?
    e.g. for the
    AF_Modules/RequestOnewayBean
    AF_Modules/NotifyResponseBean
    Thanks in advance
    Peter

    Hi,
    >>>Is the source code for the existing modules/JavaBeans available somewhere?
    1. no - not in standard 
    2. yes - if you decompile the archive
    Regards,
    Michal Krawczyk

  • Display Conditions available for end users

    I have just created a report with 9 conditions and n number of possible combination of the conditions. I was wondering if it's possible to create some sort of prompt when the user logins to that report so the end user is able to choose the conditions for the report (instead of going to Tools, Conditions ...).

    Not as such.
    However, it is possible to have a parameter that the user enters (ie: name, role, whatever) and each of the conditions can have a CASE statement for each possible entry.
    ie: something like:
    CASE WHEN :parm = 'TONY' THEN SYSDATE-60 WHEN :parm = 'ANNE' THEN ADD_MONTHS(SYSDATE,2) END
    Russ

  • Source code available?

    hi, i am just wondering if and when you might release the
    source code so we can have a look? thanks, kevin

    << deleted by myself... I spoke before checking.... those are .class files in coherence-mock.jar >>

  • Signle columnar transposition chiper source codes available?

    I've tried searching google all i can find is codes in C++ i was wondering if there was a java version of any columnar transposition algorithm available.

  • Best solution for data availability for end users --- reverse redirected folder and roaming profile

    Roaming profiles and redirected folders do not seem to work for our environment. They often become troublesome and cause much help desk time and resources.
    Is there a way to have a roaming profile and redirected folder configuration however have the local workstation have the primary copy and have the "server side" version be a backup?
    This would seem to allow the user to have a constantly updated local copy and also have a backed up version on the enterprise server side available.

    Hi,
    I'm afraid there is no such function for saving the main copy on local side.
    However if the sync of your roaming profile or folder redirection is not working well, it will still affect the result even if the function is available.
    Also roaming profile is for "using same profile on different client computers", if the primary copy is on client it will not affect the purpose.
    And for folder redirection it supports Offline Files so client should have a local copy when sync is not work.
    If you have any feedback on our support, please send to [email protected]

  • Timer in Applet - Source code available

    Hello,
    I have this timer class which works. How do I include it in an Applet so that my applet
    displays time?
    Thanks
    Mathew
    import java.util.*;
    public class TimeTest implements Runnable
         Calendar time;
         int hour, minute, second;
         Thread thread = null;
         public TimeTest()
              time = Calendar.getInstance();
              hour = time.get(Calendar.HOUR_OF_DAY);
              minute = time.get(Calendar.MINUTE);
              second = time.get(Calendar.SECOND);
              if(thread == null)
                   thread = new Thread(this);
                   thread.start();
         public void run()
              try
                   Thread t = Thread.currentThread();
                   while(thread == t)
                        thread.sleep(1000);
                             second++;
                        if(second > 59)
                             minute++;
                        if(minute>59)
                             hour++;
                        formatTime();
                   while(thread != t)
                        thread.suspend();
              catch(Exception e)
                   e.printStackTrace();
         public void formatTime()
              second = (second > 59? 0 : second);
              minute = (minute > 59? 0 : minute);
              hour = (hour > 23? 0 : hour);
              System.out.println(hour+":"+minute+":"+second);
         public static void main(String[] args)
              new TimeTest();
         public void stop()
              thread.stop();
    }

    How about this:
    import java.util.*;
    import java.text.*;
    import java.awt.event.*;
    public class Timer 
         javax.swing.Timer timer;
         SimpleDateFormat  timef = new SimpleDateFormat("HH:mm:ss");
    public Timer()
         timer = new javax.swing.Timer(1000, new ActionListener()
              public void actionPerformed(ActionEvent e)
                   String s = timef.format(new Date(System.currentTimeMillis()));
                   System.out.println(s);
         timer.start();
    public static void main (String[] args) 
         new Timer();
         while (true){}
    }

  • Can I deploy Mathscript subfunctions without revealing .m source code?

    Good morning.
    I am developing MATLAB algorithms containing functions and subfunctions. To integrate them in LabVIEW, I plan to use Mathscript nodes. And if I do so, I have to leave the subfunctions .m files in a repository on the PC (right?).
    My problem is that I do not want to reveal these easily readable files when deploying my LabVIEW code. So I am looking for a way to deploy this code without making my source code available and open to all.
    Thanks for any help!

    Thanks smercurio.
    smercurio_fc wrote:
    I think Ravens Fan was referring to actually putting the MathScript code inside a MathScript node, not leaving it as its own file. That way the code is saved with the VI.
    Please allow me to illustrate my question through an example.
    Let's say my code is script S1. S1 contains functions f1, f2 and f3, f1 contains subfunctions sf1 and sf2, and so on. I end with a code structure looking like this one (all .m files):
    S1
    - f1
    ---sf1
    ---sf2
    -f2
    ---sf3
    -f3
    ---sf4
    ---sf5
    If S1 is copied in a Mathscript node, how can it work without leaving f1.m, sf1.m and others available on the user's pc after deployment?
    Now, as I understand from my readings and my experimentations, when I put the function and subfunction files in the "LabVIEW Data" file, the functions name in the script S1 copied in a Mathscript node will appear in purple (by default). The node executes fine then. But if I copy the functions in Mathscript nodes in other VIs, the functions name appear in grey, and the node won't work. I don't know how to point to these other Mathscripts... Is there something I miss here?
    smercurio_fc wrote:
    You started out by saying you're developing Matlab algorithms. You should keep in mind that MathScript and Matlab are two different languages. While there are many similarities, there are also a lot of differences, and Matlab code is definitely not 100% compatible in MathScript. Thus, if you write the code in Matlab there is no guarantee it will even work in MathScript.
    Thanks for the warning. I tried my algorithms using the method described above, and they work well.

  • How to protect the source code in lookout

    we are using the lookout 6.5 version for the automation. we want to protect the code from the end user, please confirm the possibility of the same.

    The .lks file is the source file. If you give the .l4p file to end user, and the end user uses the runtime only server, they cannot modify anything. But actually they can modify the process if they have development server.
    Ryan Shi
    National Instruments

  • Weblogic ldap security realm source code..

    Hi,
    The LDAPv2 security realm that is provided with weblogic 6.1 is great but I
    need to make several extensions to allow for the way our ldap tree is
    structured. Is there any chance that I can get the source code from weblogic
    so that I can extend it ?
    thx,
    B

    What's the use of following if BEA start sending the code to the end users
    * @author Copyright (c) 1998 by WebLogic, Inc. All Rights Reserved.
    * @author Copyright (c) 1998-2001 by BEA Systems, Inc. All Rights Reserved.
    -utpal
    "Bidisha Das" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    The LDAPv2 security realm that is provided with weblogic 6.1 is great butI
    need to make several extensions to allow for the way our ldap tree is
    structured. Is there any chance that I can get the source code fromweblogic
    so that I can extend it ?
    thx,
    B

  • Hiding the source code

    Hi,
    I want to hide my source code and allow the users to execute the code, make changes in the selection screen. Please suggest me technique to do the same.

    Hi Amritha,
    As pr@t  said create a Transaction code using SE93 for your program.
    And ask you basis consultant not to give autharization to end user Tcodes SE38 or SA38 .
    If your user wish to run the program he can run it directly giving the Tcode in command window
    Warm Regards

  • Pro Oracle Application Express source code?

    Greetings,
    I bought this book almost a year ago and have yet to see the source code posted on the Apress website. Does anyone know if the source code actually exists or is it vaporware?
    Regards,
    Bill Chadbourne

    Bill,
    somebody's lying and it's not Apress.That's a pretty aggressive accusation, you seem to be taking this almost personally for some reason?
    As the author of the book, I can assure you that I have nothing to gain by not making the source code available (can you think of a single reason?).
    As I mentioned previously, we (myself and APress) are sorting this out as we speak. Please bear with us while we address the issue.
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Accessing Work Items assigned to other users from end user page

    Hello Experts,
    We are using Sun IDM 6.0 SP1 at our client place. Most of the applications integrated with IDM are manually provisioned, in the sense, once after all the necessary approvals are received the request will be assigned to a group of provisioners, they will manually connect to the requested application and create the account in native system. There are more than 100 such provisioners in the organization.
    Current design is to assign a work item to all the provisioners (like Multi approval) and once a provisioner assigns the request to himself then the corresponding work item will be taken out from other provisioners approval queue. These provisioners login to end user page of Sun IDM to access their approval queue as only the end user page is SSO enabled.
    Because of the large number of requests in the system (more than 50k) and each request having 100 work items, the number of work items in the system is huge and thus the performance of the system is very poor so we are working to change the design to bring down the number of work items in the system.
    Customer is not convinced to have a dedicated person who can get all these work items in his queue and assign it to the appropriate provisioner, they are looking to have a solution something similar to the current one in which all the provisioner can see all the requests in the system and they can pick from it and assign to them.
    So we are thinking to create a generic id in the system and assign all the work items to that id, and make changes to the “end user work items list” file so that all the provisioner can see the work items that are assigned to them as well as that generic id.
    But for some reason I’m not getting the work items assigned to other users in the end users page. I have tried assigning all the capabilities to logged in user and tried some code changes in “end user work item list” page.
    Please share if you have any sample code which can list the work items assigned to other users in end user page. Also please let me know if there is any better alternate to this problem.

    Hi,
    There is a option to find and get other user's workitems. Please check the attestation and remediation tab. Use the form portion from attestation page and add it in the Work item list form. This will enable to the user to search for another user's workiteams and assign it to him/her manually. (The user needs to be assigned proper admin rights)
    To get all the workitems, in the system, you will need to query the repository for all the workitems.... but not sure it will be a good idea in your case as the volume is very high.
    Hope it helps
    Regards
    Arjun

  • Documentation for source code

    Hi,
    I have just downloaded the source code for the Java 2 SDK v 1.3
    Is the documentation for the source code available ?
    Thanks

    Check this url:
    http://java.sun.com/docs/

  • Oracle XML source code

    Does Oracle plan to make the XML parser source code available to
    developers any time in the (near!!) future?
    Donald Wheeler
    null

    That was our intention, but as yet we have not cleared all of
    the legal hurdles and have no anticipated date to announce.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    Donald Wheeler (guest) wrote:
    : Does Oracle plan to make the XML parser source code available
    to
    : developers any time in the (near!!) future?
    : Donald Wheeler
    null

Maybe you are looking for

  • My photo in outgoing email

    My picture used to appear near the "from" in outgoing emails. It has disappeared since I put a new photo for my contact. How do I get my pic back?

  • Before shutdown

    Hi, IS there any proactive before shutdown in oracle 9i/10g? like JOB_QUEUE_PROCESSES. AQ_TM_PROCESSES(is it deprecated).

  • Ouch.

    So I turn on my Ipod nano today, only to find a nasty white line in the screen. It's about a 3pixel thick white line going across horizontal in the center of my screen, It ***** My question is, I have no receipt, its less then a year old, is there a

  • What is the use of at new statement?

    What is the use of at new statement?

  • DataGrid scroll positions resetting with dynamic dataprovider

    Hi - I have a DataGrid that is backed by an ArrayCollection that is fairly dynamic. Before doing my updates, i disable autoupdating, and though my size is typically fixed at 100 items, sometimes those items will be replaced. My problem is that a user