NI-VISA2.5 BETA3

Hi all
I have just downloaded NI-VISA2.5 BETA3 from NI ftp site for
using new features such as GPIB low-level control. I am now
trying to write a test program with LV5.0, but now have a problem.
I put two VIs "VISA Open" & "VISA GPIB Send IFC" and then
tried to connect them via "VISA session"terminals. But they
can't be connected ! The LV environment just changes the wire
to a dotted line. (See the following connection.)
[VISA Open] VISA session (dup) -----> VISA session [VISA GPIB Send IFC]
I also wrote a C++ program with the new feature using "GPIB::INTFC"
descriptor, but there was no problem at all.
I think the problem is not due to VISA library itself but LV-update
portion by the VISA 2.5 BETA 3 package. Will it be fixed at t
he next
release?
Makoto

Makoto:
This should work but you need to solve the wiring conflict. (The dotted
line is a broken wire.)
The "VISA GPIB Send IFC" VI will only accept the class "GPIB
BoardInterface".
You need to right-click on the session input to "VISA Open" and change the
VISA Class type.
This is not a problem and should work with the files we shipped with beta 3.
Let me know if you experience further problems.
Dan Mondrik
Senior Software Engineer, VISA
National Instruments
"Makoto" wrote in message
news:[email protected]..
> Hi all
> I have just downloaded NI-VISA2.5 BETA3 from NI ftp site for
> using new features such as GPIB low-level control. I am now
> trying to write a test program with LV5.0, but now have a problem.
>
> I put tw
o VIs "VISA Open" & "VISA GPIB Send IFC" and then
> tried to connect them via "VISA session"terminals. But they
> can't be connected ! The LV environment just changes the wire
> to a dotted line. (See the following connection.)
>
> [VISA Open] VISA session (dup) -----> VISA session [VISA GPIB Send IFC]
>
> I also wrote a C++ program with the new feature using "GPIB::INTFC"
> descriptor, but there was no problem at all.
>
> I think the problem is not due to VISA library itself but LV-update
> portion by the VISA 2.5 BETA 3 package. Will it be fixed at the next
> release?
>
> Makoto

Similar Messages

  • Cannot install BPEL PM mid-tier flavor (2nd option) from beta3 drop

    On the instance repository information screen You have to provide orabpel and mid-tier ias_admin connect information. It pre-requisites an already populated bpel schema. Although I have run the scripts domain_oracle.ddl and server_oracle.ddl the following message appears when you press next in the OUI:
    Altert: The OracleAS infrastructure database has not been upgraded with the OracleAS BPEL PM 10.1.2 schema....
    Subsequently I cannot continue - any idea how to circumvent this message?
    Again I think I have a complete orabpel schema

    Hello Frank,
    we were running into the same problem, you can install the middle tier version only if you have setup up all the BPEL needed tables, views, procs in your database. With the beta3 ships a compressed file called irca.zip. It contains the IRCA ( Integration Repository Creation Assistant ). You need to run this assistant before the middle ware installation against your db. Following the db is prepared to be a repository for you BPEL middle ware.
    Hope this helps.
    Bye,
    Chris

  • Ohw-demo-ear-2.0.0-beta3.ear

    Hi, when I try to deploy ohw-demo-ear-2.0.0-beta3.ear on my application server (9.0.2) I have this error:
    Deployment failed: Nested exception Root Cause: Error loading web-app 'ohw-demo' at D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\applications\ohwdemo\ohw-demo: Unknown deployment tag in D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\application-deployments\ohwdemo\ohw-demo/orion-web.xml: <web-app-class-loader>; nested exception is: java.lang.InstantiationException: Error loading web-app 'ohw-demo' at D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\applications\ohwdemo\ohw-demo: Unknown deployment tag in D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\application-deployments\ohwdemo\ohw-demo/orion-web.xml: <web-app-class-loader>. Error loading web-app 'ohw-demo' at D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\applications\ohwdemo\ohw-demo: Unknown deployment tag in D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\application-deployments\ohwdemo\ohw-demo/orion-web.xml: <web-app-class-loader>; nested exception is: java.lang.InstantiationException: Error loading web-app 'ohw-demo' at D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\applications\ohwdemo\ohw-demo: Unknown deployment tag in D:\Oracle\Midtier\j2ee\OC4J_HELP_OHW\application-deployments\ohwdemo\ohw-demo/orion-web.xml: <web-app-class-loader>
    [Edited by: rpollock on May 10, 2004 9:43 AM]

    Can you please try again with the OHW 2.0 production
    demo bundle? Please let us know if the problem
    reoccurs.OHW 2.0 production also cannot be deployed to AS 9.0.2 because of the same error. But it works well with 10g.

  • Is That a bug of JDK1.4 beta3: too many paint times!!!!!

    Try to run the following program, ( u can use your img instead of mine)
    //package com.zhaoyoubing.java2d;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.net.*;
    public class JavaImgTest extends JFrame {
    Image img;
    int it = 0;
    static String title = "Sooooooooo many paints ";
    public JavaImgTest() {
    super(title);
    setSize(300, 200);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    img = loadImage("http", "www.cad.zju.edu.cn", "/home/zhaoyb/yi-s.jpg");
    public void paint(Graphics g) {
    it++;
    setTitle(title + it);
    System.out.println(it);
    ((Graphics2D) g).drawImage(img, 10, 25, this);
    // this function from billday.com
    Image loadImage(String protocol, String machine, String file) {
    //Create the URL object representing our image bits.
    URL imageURL = null;
    try {
    imageURL = new URL(protocol,machine,file);
    } catch (MalformedURLException e) {
    System.out.println("Please verify your imageURL.");
    System.exit(1);
    //Now that we have a reference to the bits, let's create and
    //return the actual Image object to store them.
    Image myImage = getToolkit().getImage(imageURL);
    return myImage;
    public static void main(String[] args) {
    JavaImgTest img1 = new JavaImgTest();
    img1.show();
    following r my test paint times:
    1.4 beta3
    linux 66 84 48 90 75
    win2000 170 170 170 170 170
    1.3.1
    linux 3 3 3 3 3
    win2000 2 2 2 2 2
    1.2.2
    linux 5 6 6 4 3
    win2000 3 3 4 3 2
    I guess it should be a bug!!!

    I am not sure but shouldn't this line be:
    img = loadImage("http", "www.cad.zju.edu.cn", "/home/zhaoyb/yi-s.jpg");this:
    img = loadImage("http://", "www.cad.zju.edu.cn", "/home/zhaoyb/yi-s.jpg");

  • I can't download Project Siena Beta3 from Store

    Dear officers,
    First of all thank you for developing "Project Siena" I was waiting for Beta3 for a long time. I am a little disappointed when I first saw whats new in the third Beta. I was waiting for Barcode / Text recognition (via camera) implementation. But
    I am hopefully waiting to see it in the next versions. My problem is;
    - I can not access to Windows Store through my Work-laptop.But I can install appx files by running with Powershell. Is there a place where I can download Beta3 in "*.appx" format?
    -Or any other methots without the official Store is welcome.
    Thanks in advance.
    Oguz

    I'm wondering if maybe there was an oversight and it just didn't get listed for your region?
    Maybe the following would be a temporary work-around to get it installed - switch your region with the below help and maybe then you'll be able to see it / install?
    http://windows.microsoft.com/en-us/windows-8/use-windows-store-country-region-help
    (below text were steps I found in a different post - I don't recall where I found this as this was several days ago and came from a MS employee responding to a similar type of inquiry not related to Siena)
    Some apps are unavailable in some countries or regions. In this case, if someone shared a link to an app with you, you’ll be able to see the app description page on the web but when you try to view the app in the Store, you’ll see a message that the app
    isn’t available. To check your country or region setting perform the steps mentioned below:
    a: Swipe in from the right edge of the screen, and tap  Settings.
     (If you're using a mouse, point to the upper-right corner of the screen, move the mouse pointer down, and then click Settings.)
    b: Tap or click Change PC settings.
    c: Tap or click Time and language, then tap  Region and language
    d: Under Country or region, look to see that your location is set correctly, and change it if it's not
    Thor

  • I cannot find javax.servlet package in j2sdk-1.4.0-beta3

    I just download and install j2sdk-1.4.0-beta3 and progam a very simple program use import javax.servlet.* and compile it, there is a mistake:
    package javax.servlet.* does not exist
    And I check the doc of j2sdk-1.4.0-beta3,I also can not find package javax.servlet.So where could I find this package? Need I configure somewhere or download another products?

    Hi,
    You can go to http://java.sun.com/products/servlet/download.html,
    download the servlet 2.3 class files, add the zip file to the classpath.

  • Zcm 10.3 beta3 new action tab

    Hi,
    I'm normally working on 10.2.2 and now i have installed 10.3 beta3 in a test environment. To check the new options.
    I see that there is a NEW TAB added to the bundles.
    Normally you have. install/launch/uninstall/verify etc.
    Now i see a tab called "Distribute"
    Can someone explain me what this tab is? and what it does.
    Kind regards,
    Tristan Floor

    Originally Posted by floort
    Anath,
    Thanks for the clear explanation.
    I now understand the new tab. I don't think iam gonna use them. because i don't use the upload content repo. always use the "install network msi. But that doesn't bother. I now understand it. and that's what i want.
    Thanks.
    We also only use install network msi, but this feature will be great for us that we can tell users on slow wan's that it will take a long time to install big applications and also allow them to postpone/cancel the installation.
    Thomas

  • I18n.jar missing in J2SDK 1.4.0 beta3 for Windows

    I have installed J2SDK 1.4.0 beta3 on a WinNT system. The jre\lib folder does not contain the file i18n.jar
    Also, I have tried to install J2RE 1.4.0 beta3 on a WinNT system. The i18n.jar is missing there too.
    The Java 2 SDK File Structure shows the file included in the jre/lib folder.
    I have Java 1.2 and 1.3 also installed on the same system.
    Can someone please tell me why this file is missing in my installation?
    Roopal

    It's not missing, they removed it. Most of the classes that were in i18n.jar are now in other jars such as charsets.jar.

  • What happened to Java2 SDK 1.4.0-beta3?

    I have Java2 SDK 1.4.0-beta3 on my computer. I was going to re-download this program because I suspect some files have become corrupted. But I don't see it anymore on the download page. Instead I see things called J2 JRE 1.4.0 or J2 SDK 1.3.0 or J2 1.4.0 RC1. Which is right one to download? I already checked the installation information pages, and it doesn't help.

    I'd be satisfied with just re-downloading the Java API files (for Java2 SDK 1.4.0-beta3) instead of the whole package, if I knew where they're located.

  • Error opening document beta2 in Beta3

    Hello friends, has been updated to Beta3 beta the Siena Project, which sounds good in principle, but ... I HAVE A MAJOR PROBLEM! 
    It turns out that when trying to open an application made with Beta2 gives an error when trying to open it: IS NOT OPEN. 
    Anyone know the solution?

    Hi Joan,
    If possible, could you please send us an email, with your document as an attachment, to SienaCom @ Outlook.com (without spaces). Using emails will allow us to have a quicker turnaround. Once we pinpoint the issue, we can circle back to this thread with more
    answers.
    Thanks,
    Robin

  • VISA ERROR -1073807239 in NI VISA2.5 for TCP/IP resource

    Hi AEs and Experts
    I m using NI VISA2.5 for communicating with an instrument using TCP/IP resource and its working perfect. Once I read a data block of size more than around 1500 bytes using ViRead(),i m getting ERROR -1073807239. Is there any limitation of VISA while using TCPIP resource?? ViRead() is working perfect for more than even 10MB data read in case of GPIB resource.
    Please through some pointer and soolution for this.
    Regards
    santanu

    Santanu:
    Are you using INSTR or SOCKET? If INSTR, then there were several bugs fixed in the 2.6 release, specifically regarding large viRead operations. You should consider upgrading.
    Also try copying the patches (available from ftp://ftp.ni.com/support/visa/drivers/win32/2.5/patch or ftp://ftp.ni.com/support/visa/drivers/win32/2.6/patch) over the existing NiViEnet.dll on your machine.
    If your problems are when using SOCKET, this is not a problem I have heard of before. You may want to use NI Spy and send a capture file to technical support to see if they can help you further.
    Dan Mondrik
    Senior Software Engineer, NI-VISA
    National Instruments

  • Command "java" in Windows XP Home Edition with J2SDK 1.4.0-beta3

    Hi
    After succesfully compiling a Java-source, I can't run it. Whenever I type: "java HelloWorldApp.class" it returns "Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorldApp" as described on http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html#2c
    I tried to resolve the problem by doing what's said on the url above, but it doesn't work. I run Windows XP Home Edition with J2SDK 1.4.0-beta3 installed not on C. but on F:\j2sdk1.4.0-beta3
    Does anyone have a solution? It would be greatly appreciated.

    Hi
    I don't understand what is said on the help page. My mother tongue is Dutch, although I understand most English texts. Also, I run Windows XP, which doesn't seem to have a classpath variable. When I type what is said "set classpath=", nothing happens. After that, I try again, and is still doesn't work.
    But running Java without extension works. Thanks man.

  • Installing FlexBuilder 2 Beta3 fails!

    Hi,
    After uninstalling FB2 beta2 and FDS beta 2, I did manage to
    install FDS beta3, but installing FB2 beta3 fails, I've tried few
    times and it does the same thing, merging module and it hangs, when
    I try to click anywhere nothing work anymore not even Ctl_Alt_del,
    I have to rest the computer.
    My PC is AMD FX 57 64bit running windows server 2003 32bit,
    with 2Gig Ram. I dont think its something to do with my PC, because
    everything else from Macromedia worked in the past.

    quote:
    Originally posted by:
    ChrisAg
    quote:
    Originally posted by:
    Omar_Gonzalez
    I am also having problems installing FlexBuilder 2 Beta3.
    It seems as if my javaw.exe file keeps crashing and the
    installer won't move on. I tried uninstalling JRE and downloaded
    the latest release of JRE, but the Flex Builder Installer still
    stops responding.
    Im redownloading the installer just in case there might have
    been some data corruption during transfer, which I doubt, but I'll
    try anything at this point. I just took a 3 day course and it's
    disappointing not being able to get the Builder running on my
    machine. :-(
    Hi Omar,
    I hope that re-downloading resolved the problem, but let me
    know if not. We've had some trouble in the past with downloads from
    the labs site being corrupted, but haven't seen much of that since
    Beta 1.
    If you still have the problem after re-downloading, here are
    some steps to try:
    1) see if there's an installer log file in your temp folder,
    and if so, please send it to me, and post any specific errors
    contained to this forum.
    2) if you're running any anti-virus or security programs,
    especially those that scan inside of jar files, disable them
    temporarily during installation. We've found that some scanners can
    increase the time to install by as much as a factor of 10x, making
    it appear to have crashed.
    -ChrisAg
    C. Agruss - Adobe
    I did try disabling anti-virus software and other real time
    protection applications that were running but I did not succeed
    going that route.
    In finally did find that someone in another thread suggested
    starting the system in Safe Mode to install the Flex Builder.
    I tried and I successfully installed the flex builder, and
    rather quick and smoothly might I add. I never could figure out
    what was causing it to hang up, as I tried to cut down the system
    processes in the task manager to a minimum, but my Builder is up
    and running atleast.
    Thanks for the response ChrisAg

  • Environment variables not passed through to player in flexunit 4.1.0-beta3

    fyi, to get flexunit-4.1.0-beta3 FlexUnit4AntTasks invocation of flashplayer to not be rejected by the vncserver, i needed to modify the FlexUnitLauncher to pass through the environment variables to the command environment.
    the reason this is required, i think, is the use of Runtime.exec() directly in CustomPlayerCommand -- in flexunit-4.0.0, the same function was accomplished using the ant executor, which does passthrough by default.
    anyway, curious if anyone else has seen this issue, or if i'm doing something dumb.
    --- flexunit/flexunit-4.1.0-beta3/flexunit-flexunit-da29198/FlexUnit4AntTasks/src/org/flexuni t/ant/launcher/FlexUnitLauncher.java    (revision 7250)
    +++ flexunit/flexunit-4.1.0-beta3/flexunit-flexunit-da29198/FlexUnit4AntTasks/src/org/flexuni t/ant/launcher/FlexUnitLauncher.java    (revision 7251)
    @@ -79,7 +82,13 @@
           command.setSwf(swf);
           if (runHeadless())
    -         command.setEnvironment(new String[]{ "DISPLAY=:" + xvncStart.getCurrentDisplay() });
    +         Map<String, String> env = System.getenv();
    +         List<String> envArgs = new ArrayList<String>();
    +         for (Map.Entry<String, String> entry : env.entrySet()) {
    +            envArgs.add(entry.getKey() + "=" + entry.getValue());
    +         }
    +         envArgs.add("DISPLAY=:"+xvncStart.getCurrentDisplay());
    +         command.setEnvironment(envArgs.toArray(new String[0]));
              LoggingUtil.log("Setting DISPLAY=:" + xvncStart.getCurrentDisplay());

    ok. i went looking for a JIRA link somewhere around here and couldn't find it.  do you have a URL handy?
    there are a couple of other things too:
    you probably want trustDirectory.mkdirs() rather than mkdir() in TrustFile.java
    you probably want CustomPlayerCommand.setLocalTrusted() -- my player command isn't in the machine's path, but i still want to be able to touch the trust file.  So I copied the trustFile.add() stuff from FlashPlayerCommand.launch() into CustomPlayerCommand.launch().  probably a better solution would be refactoring CustomPlayerCommand to be more like FlashPlayerCommand.
    anyway, if you want patches, tell me where to put them and i'll post some.

  • Need reference for Visa2 Key Diversification Function

    I've been trying to find a definitive specification for the Visa2 master key to card key diversification function, but with no luck. I did find a Gemalto document that instead of using the diversification data supplied in the 0xCF 'GET DATA' response and the response to an "INIT UPDATE", specifies derivation based on the CPLC data (and calls that Visa2).
    Has any one got a better pointer?

    My question was "what is the reference document for the VISA2 key diversification function?".
    I didn't ask about EMV key derivation because I already had that reference.
    The CPLC data is NOT the same as the tag CF or INIT UPDATE diversification array. And in no GP document that I've found is it required to be. In fact the guidance is that CF is derived from tag 42 and tag 45 - card issuer and card id.
    And FYI - I think the reference document for Visa2 key diversification is "VISA Card Production Guide" - probably 1.0, but I can't get a copy of that. Given other text I've found, I think the Gemalto "use the CPLC for diversification for VISA" is probably correct. But without a copy of the reference I can't confirm that.

Maybe you are looking for

  • Invalid Color Space error after update Reader to 9.3.3

    After updating Adobe Reader to 9.3.3 I run into the Invalid Color Space error when trying to open a PDF file created with CorelDraw 12 in the format PDF/X-1A.  This format needed by a printing office to print the file. The strange thing is that Reade

  • Won't see new memory

    I've got a new 8-core. Just installed a 2 gig memory kit from Crucial and the machine is not seeing it. The slots(DIMM3) that I put them in is showing as "empty". Crucial sent cards with this info on the static packet: 1GB 240 PIN 128Mx72 DDrs PC2-53

  • In dealer Invoice , Excise duty values not captured from MIGO

    In dealer invoice , I have changed excise duty values in MIGO . This is not captured in MIRO. But the system took excise value from default values ( from FV11 condition record ) . This is happening for New plants.  Old plants works good. Regards., La

  • How to download Steve Jobs Biography for iPad in Singapore?

    Can somebody help me how to download the Steve Jobs Biography for an iPad in Singapore? Is there a way to download it? I was shown in iTunes as this is not available for Singapore apple customers. Thanks

  • Adobe flash player crashes no matter what I do

    I have asked zynga games for help with adobe flash player crashes, reported all of them, downloaded all updates and I still have constant crashes. Can you help me?