.mbd file calling on different pc connected in network

Dear frd,
              I have connected three PC in LAN which are the part of a distributed system. 3 PCs connected with a server PC, Now each PC gives a output file in .mbd (Programmed in LabVIEW DB toolkit and System DSN)form, on server PC  I  have to call .mbd file of Each PC and make decision on that basis.
                I am using System DSN to save file on different PC and while applying on server PC it gives a error : 0.80004005
      please give a solution .

controling of induction motor wrote:
Dear frd,
              I have connected three PC in LAN which are the part of a distributed system. 3 PCs connected with a server PC, Now each PC gives a output file in .mbd (Programmed in LabVIEW DB toolkit and System DSN)form, on server PC  I  have to call .mbd file of Each PC and make decision on that basis.
                I am using System DSN to save file on different PC and while applying on server PC it gives a error : 0.80004005
      please give a solution .
Next time when you are posting please increase your text font.
OP: I  have to call .mbd file of Each PC and make decision on that basis."
Mathan: What decision you want to make?
OP:  I am using System DSN to save file on different PC and while applying on server PC it gives a error : 0.80004005
Mathan: What do you mean by applying on server PC?

Similar Messages

  • Inkjet 2800 on different windows connected via network

    Hello,
    Im using windows 7 Pro, and I can't access a printer which is connected via network on another computer with windows XP.
    The problem is that, when I install the printer on windows 7, it works as long it's connected to my computer,
    but, when i unplug the printer and reconnect it back to computer with XP, i'm unable to use the priter, although i installed the drivers already.
    the printer is shared,i can see it on network, but can't connect to it.
    the problem is only with inkjet 2800 printer,
    as i use hp Laserjet cp1215 which is on the XP computer, but works fine.
    Thank you in advance.

    Hello cesco,
    Welcome to the HP Forums.
    I see that you are having a communication issue when attempting to print on two separate printers at the same time.
    This will be a communication issue for sure.  The computer can only send to one printer at a time. You will have to print to one printer, wait for it to finnish the print job and then send it to the other printer. 
    There is no way that you can print from one computer to two separate printers at the same time.
    Thanks for your time.
    Cheers, 
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • How to write 3 AVI files from 3 different cameras connected to 3 PCI 1411's?

    I have a multiple camera acquisition vi and a AVI read/write vi, but I want to acquire from 3 cameras and write 3 AVI files simultaneously. The multiple camera vi uses buffers but the AVI read/write vi does not(I think). How can I accomplish my goal?

    Your best bet is to use the new IMAQ Vision 7, which was released last Tuesday, I believe. It now has native support for writing compressed AVI movie files. These VIs are used the same way the Write BMP.vi and other file I/O VIs are used in IMAQ Vision 6.1.
    Writing 3 files simulateously should be fairly straightforward. If you can get it to work with one camera (img0), then just copy and past the code two more times for img1 and img2. Also write to three different AVI files. That's all you should have to change! Bandwidth to the harddisk may be another matter all together...
    Kyle V

  • How to host one application using different database connection on OAS?

    Hi,
    Jdeveloper - 10.1.3.4
    Application - ADF/BC
    Oracle Application Server - 10.1.3
    Above our the specifications for our application,
    We have two database schemas different for development and production therfore we have different databse connections for the two,
    we have one application which is in production and enhacements on the same application are done by the development team.
    Since we have two different schemas for developement and prduction we use different database connections for the application on development and production.
    The problem is our Model and View Controller project are same, only the database connection file changes that's why we are able to host only on application at a time on our OAS. This is probably because the URL generated by OAS for developemnt and prodyction application is same.
    Is there a way we can host two instances of the same application with two different database connections on the a single OAS.
    Thanks & Regards,
    Raksha

    Use different deployment profiles each with a different context root for your application?
    See: http://one-size-doesnt-fit-all.blogspot.com/2009/02/configuring-separate-dev-test-prod-urls.html

  • Two separate versions of the same file corrupted in different ways...

    I was working on a Photoshop CS4 file last night that was created in CS4 and has only been opened on this machine in CS4. I saved the file and closed Photoshop. When I open the file today, all my layers are gone, flattened into one Background layer, and the image looks like colored TV static. On top of that, the separate, older version of this file with a different name (created earlier in the week on the same machine in the same CS4) will not open at all - I get the error message, "Could not complete your request because the file is empty" and the file size has mysteriously shrunk to 76 KB from 20+ MB. What happened?! I'm guessing these files are corrupted beyond recovery, but why and how did this happen? Has anyone had this or a similar problem? I want to know how to prevent this from happening in the future. Please help! Thank you. =)

    Thanks for the suggestion, Chris.
    Same issue, new question - don't ask me why I did this, but while both Photoshop and the now corrupted file were open, I changed the name of the folder containing the file, then continued to save the open version of the file without first closing it and reopening it from the newly renamed folder. Could this have caused both files in that folder to become corrupted in different ways? The other file that gives me the "file is empty" error was not open at the time, but it was in that folder. I'm thinking maybe by changing the path to the files while Photoshop was running, that could have triggered this. ?? I have 3 1TB internal drives raided to read as 1 drive, so I'm really hoping that one of these disks is not dying on me as you suggested. I was also backing up an external drive using BackBlaze when this all occurred - any possible connection? How can I find out if one of my three raided drives (and which one) might be going bad?
    Thanks!!

  • Calling 3 different servlets from a single servlet

    hi all,
    i am in lot of soup...i am new to servlets,etc....so help me pls.
    i need to call 3 different servlets from one servlet. all 3 servlets that i want to call perform different functions and execute queries on the database.
    what i am trying to do is:
    there is an html page that call a servlet called authenticate.java.(whose code is at the bottom of this page).
    the servlet authenticate.java should authenticate a user according to the password and username supplied in the html page.
    MAINLY:-
    i need to display 3 buttons to the authenticted user. those 3 buttons each should call 3 different servlets, which do different things.
    now in authenticte.java i set certain information in the session using session.putValue();
    further, whatever servlet is called, i need to use that information i set into the session...using session.getValue().
    PLS TELL ME HOW TO DO THAT...ALSO C IF THE BELOW CODE IS OK.
    ALSO TELL ME HOW TO END A SESSION. ALSO DO SERVLETS SUPPORT SESSIONS?
    I AM USING jdk1.3 and jsdk2.0.
    * Authenticate.java
    // this places all user variables in session
    //to access use session.getAttribute
    //dispatcher stuff
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.http.HttpSession;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    * @author Gudiya
    * @version
    public class Authenticate extends HttpServlet {
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, java.io.IOException {
    HttpSession session = request.getSession(true);
    Connection con=null;
    String sessionid;
    String deptcode;
    String desig;
    String add1;
    String add2;
    String contname;
    PrintWriter out = response.getWriter();
    try
    {System.out.println(1);
    response.setContentType("text/html");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:SACFA","","");
    System.out.println("connection established");
    catch(ClassNotFoundException e){
    System.out.println("database driver not found");
    System.out.println(e.toString());
    catch(Exception e){System.out.println(e.toString());
    String username=request.getParameter("username");
    String password=request.getParameter("password");
    try{
    System.out.println(2);
    PreparedStatement stmt=con.prepareStatement("SELECT * FROM AUTHENTICATION,mb_add where AUTHENTICATION.NAME=? AND AUTHENTICATION.PASSWORD=? AND mb_add.DEPT_NAME=?");
    stmt.setString(1,username);
    stmt.setString(2,password);
    stmt.setString(3,username);
    ResultSet rs=stmt.executeQuery();
    System.out.println(3);
    boolean rowfound=false;
    rowfound=rs.next();
    if (rowfound==true)
    sessionid=session.getId();
    System.out.println(sessionid);
    System.out.println(4);
    session.putValue("user",username);
    rs.beforeFirst();
    while (rs.next())
    System.out.println(5);
    deptcode=rs.getString("DEPT_CODE");
    desig=rs.getString("DESIGNATION");
    add1=rs.getString("ADDRESS1");
    add2=rs.getString("ADDRESS2");
    contname=rs.getString("NAME");
    session.putValue("dept_code",deptcode);
    session.putValue("designation",desig);
    session.putValue("address1",add1);
    session.putValue("address2",add2);
    session.putValue("cont_name",contname);
    System.out.println(6);
    }          out.println("<html>");
              out.println("<head>");
              out.println("<title>Successful Login Screen</title>");
              out.println("</head>");
              out.println("<body bgcolor='ORANGE'>");
    out.println("WELCOME SACFA MEMBERS FROM "+ username);
    //print decorative html statements here
              out.println(" SELECT ANY ONE ACTION:-");
    //out.println("<form Action="+"\"servlet/noc\""+" method =post>");//call for your noc servlet
    //print decorative html statements here
    out.println("<INPUT TYPE=submit VALUE='GENERATE NOC' NAME='NOC'>");
    out.println("</form>");
    //print decorative html statements here
    //out.println("<form Action="+"\"servlet/comments\""+" method =post>");//call for your comment servlet
    out.println("<INPUT TYPE=submit VALUE='ENTER/ MODIFY COMMENTS' NAME='COMMENTS' >");
    out.println("</form>");
    //print decorative html statements here
    // out.println("<form Action="+"\"servlet/bye\""+" method = post>");
    out.println("<INPUT TYPE=submit VALUE=EXIT NAME=EXIT >"); //place javascript fucction for exiting window
    out.println("</form>");
              out.println("</body>");
              out.println("</html>");
    con.close();
    } catch( SQLException e){ }
    out.close();}
    THANK YOU,
    REGARDS,
    ASHNA

    Hi Ashna,
    You have use three different forms for three buttons. But I think all are commented one.It will also work if you uncomment it.
    Else you can use only one Form without giving action in form tag. Use normal buttons instead of submit type buttons & call different JavaScript functions on onClick event for each button.
    Try this out.
    Ajay

  • File name with different type

    Hi,
    I need to send specific date format with file name to two different receivers. So the file name is same for both the two receivers but file extension is different. So I configured with dynamic configuration in UDF and in the receiver channel i have given .txt and .dat but it is not working. Can we do it in any other way.
    Thanks,
    kum

    Hi Kum,
    If I am not wrong, you must be using conditional receiver determination for determining 2 receivers.
    In this case, you can define 2 separate mappings which you can call in Interface determinations (2 interface determinations).
    In one mapping, you can have UDF for .txt file and in other .dat file.
    -Tanaya.

  • Compiling classes in files of a different name

    Right I feel liek a right dumbass here but I'm having some trouble.
    I want to compile a class in a file of a different name i.e. it's filename for example is Test.java, the class is called class TestWorks and main class is
    public class BirthdayProb
         public static void main(String[] args){
         but in the compiler when I type javac TestWorks.java I get a file not found error.
    Please help :)

    all publicly declared classes must be placed inside a file with the exact same name (case sensitive) as the public class. I.e.
    public class Test { } must be placed inside Test.java
    public class NumbNuts{ } must be placed inside NumbNuts.java
    public class IHateVisualBasic{ } must be placed inside IHateVisualBasic.java
    If you want to have more than one class inside of a single file, then only one class may be declared public and the file must be named after said public class:
    public class Ned { }
    class Dave { }
    class Herman {}
    class ThisSucks { }must all be placed inside a file called Ned.java
    Help?

  • Device type file compatability with different SAP versions

    Hi All,
             I need to know whether there is any difference in Device type file (.PRI) for different SAP versions [ SAP 4.6b , 4.6c, 4.7, mySAP ERP 2005.,]
             Is there any change in .pri file required when upgrading/degrading SAP versions?
            Pls let me know abt this. very urgent..

    i tried the following code on a WAS 7.00 SP14 and it works as expected.
    create object cached_response type cl_http_response exporting
      add_c_msg = 1.
        cached_response->set_data( file_content ).
        cached_response->set_header_field( name  =
      if_http_header_fields=>content_type
                                           value = file_mime_type ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        call function 'GUID_CREATE'
          importing
            ev_guid_32 = guid.
        concatenate runtime->application_url '/' guid into display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
    call method runtime->server->response->redirect( url = display_url ).
    navigation->response_complete( ).

  • Hi. I have temporarily moved away from home. I am using a different internet connection, and I have lost my bookmarks. How do I get them back?

    Hi. I have temporarily moved away from home. I am using a different internet connection, and I have lost my bookmarks. How do I get them back?

    Generally speaking, your bookmarks are private to your computer, and if you set up multiple Firefox profiles on your computer, to the one profile.
    Your bookmarks might be available to you at another location if you used the Sync service. In order to connect a new computer to the Sync service when you aren't near your old computer, you need a recovery key. https://support.mozilla.org/en-US/kb/share-bookmarks-tabs-and-more-your-other-computers#w_what-if-im-not-near-my-first-computer
    If you didn't use Sync or can't access your account, someone with access to your old computer could email you your bookmarks. Since there is a range of different ways to do that and the best choice might depend on what you can expect the person you ask to be able to do... could they start up Firefox in your profile and follow menu steps to export a file? Could they drill down into a hidden folder on the system, zip a file, and mail that to you? Etc.

  • Importing Movies in iMovie why are they located in a file called Private

    Hi
    I have just plugged my video camera into my macbook. I selected Import from camera and then directed the archive to a connected mypassport drive. The problem is they are now all located in a file called Private.???? How do I extract the files from there to a specific folder please. I plan to have a mypassport drive for all my preedited videos and then store the edited final cut version on my mac. I cant seem to drag the files from this folder to one of my choice.  HELP Please
    Thanks

    AppleMan1958 wrote:
    Now, it still works that way, with a wrinkle. It moves all the files from your camera to the place you specify, but now it places them in a package. The package looks like the archive is a single file, but in reality, it contains all the files and folders as before. To see what is in the package, right click on the package name and select Show Package Contents. You should now see all the folders and files.
    Good point AppleMan. I had forgotten about that wrinkle, even though I've previously mentioned it in other posts. Probably because I generally don't import from Archives, but straight from the camera.
    I use a ShedWorx app called RevolverHD rather than iMovie's built-in Archive feature as it provides for selective archiving of clips. With iMovie the only option is to archive the full contents of the camera (Archive All). As my camera is a 60GB hard drive model (allowing about 8 hours at the highest setting), I tend to keep clips on the drive until I need space for new recordings. Using iMovie for the archive results in duplication, as all the older clips are archived again. It then gets a bit messy keeping track of things if, in the meantime, I've deleted any clips from the camera.
    The only downside to using RevolverHD is that, whilst the archive shows the correct recording date and time, when imported to iMovie the clips show the date and time imported, not the recorded date and time. For this reason, I prefer to import directly from the camera. I understand (from my reading of your posts), that you import from the iMovie archive. Once you are happy with the import you then erase your camera card. So, when next using iMovie's Archive All feature, the new archive will comprise just your new clips. That's probably the ideal process, as it keeps things tidy, imports the correct date and time, and guarantees that the archive is reliable.
    Sorry to move a bit beyond the OP's question, but thought this might be of interest to others here.
    John

  • Photoshop creates wonky file permissions after  different user modifies file and saves over

    We have a fileserver sharing out files to Windows clients using samba service on Mac OSX Server 10.6.5.
    We have weird permissions issue with psd files in Photoshop CS5 64 bit.
    A user (userx) belonging to the group wheel creates a file called version1.psd
    POSIX
    ACL
    user    Read & Write
    wheel  Read & Write
    others Read & Write
    A different user (usery) opens version1.psd, makes some modifications and save it out as version2.psd
    POSIX
    ACL
    usery  Read & Write
    wheel  Read & Write
    others Read & Write
    Now userx opens version2.psd and makes modification and saves the current file. Userx can nol onger access the file he just saved.
    POSIX
    usery Custom
    ACL
    userx  No Access
    wheel  Read & Write
    others Read & Write
    This led me to test modifying original file (version1.psd) and save. It does the same thing.
    Don't understand why it has this behaviour. Is this some kind of bug with photoshop as when we do modifications outside of Photoshop, permissions are always fine? Thanks ahead for any help.

    We have solved our issue.
    After running Adobe updates on machine that uses CS6 and then re-starting that machine, our issue seems to have disappeared.
    Hope this helps others.
    Best of luck.

  • I can't send/receive any message/call but I can connect to the internet. What's wrong?

    I can't send/receive any message/call but I can connect to the internet. What's wrong?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Mail Taskflow customization to select different mail connections.

    Hello,
    Am working on customization of Mail taskflow in WebCenter Spaces 11g (11.1.1.4) PS3.
    And trying to select different mail connection depending on the user role.
    Did some one tried with the same scenario? or atleast customization of Mail taskflow?
    Please help me with any suggestion.
    Regards.

    Not sure why the Mail.app doesn't remember the BellSouth SMTP server selection but you can download a collection of AppleScripts called Mail Scripts at the following link:
    http://homepage.mac.com/aamann/Mail_Scripts.html
    The script to use from the collection of scripts is Change SMTP Server (Mail) to switch between different already defined SMTP servers or define a new one. This is especially useful if you are using your computer in more than one location and have to switch servers for several accounts at once.
    This will make the process of switching to a SMTP server for all accounts (such as the BellSouth SMTP server now for all accounts) and using it to switch to back to the selected SMTP servers for all accounts when returning home or as required when connecting to the internet with a different ISP other than your own at another location.

  • TS3367 facetime doesn't work well after upgrading to ios8. I need to make a call several times to connect.

    Facetime doesn't work well after upgrading to ios8.
    When I make a facetime call, it doesn't sound some times on the other side.
    When it rings on the other side and is answered, it says (connecting), but it is still ringing on my side and never connected.
    After that, I disconnect and make a second call, it sometimes connects, but not everytime.
    I need to call several times to connect. It is really hard to connect through facetime after upgrading to ios8.
    I purchased three iPad so far because of this good feature (facetime).
    Please fix this issue as soon as possible.
    Thanks.

    Hi,
    There are two easy fixes to this.
    One, you can set up Family Sharing, in which you can have two different iCloud Accounts, yet still share the same apps, music, media etc.
    Two, go to Settings and turn-off "Handoff". This can be found under the General page.
    Hope this helps!

Maybe you are looking for

  • Comparing  prices for a BOM with selling and distribution price

    Good day I have been working on a query to bring information for  a crystal report required by a client they want to compare the finished BOM with the selling price or distribution price of that BOM. I am not understanding a scenario where this BOM i

  • Problems uploading images with uppercase (.JPG) file extension.

    I am using coldfusion 8 and have no problems uploading an image using CFFile when the image has a lowercase file extensions such as .jpg however if the same file has a Uppercase file extension .JPG coldfusion hangs and then just times out. The files

  • Numbers interferes with Quicken download

    I just bought iWork for my Intel iMac. When running Quicken, whenever I try to download checking account or credit card data, Numbers seems to commandeer the data, downloading into a spreadsheet, although I want it to download to Quicken. I have to t

  • "always on top" in fullscreen mode; disable switching away

    Hi, I am trying to write a mode for emacs that will keep out as many distractions as possible.  When activated, I can't switch away from the file I'm working on. Unfortunately, I can *easily* switch away from my fullscreen Emacs to my webbrowser or e

  • Disable file service in single user mode?

    After a failed (with an error) attempt to install the latest security update, the iMac won't get past 'waiting for apple file service' during boot. I presume the botched install left something bad, so I'd just like to get it booted so I can retry the