OPC will not write to AB L32E - Will Read

OPC will not write to AB L32E - Will Read.
I have been able to set up a OPC Server using the NI OPC Server, using the ControlLogix Ethernet driver for the AB 1769-L32E PLC.
All of the tags can be seen. The Lookout 6.7.1 will see real time data, but anything I write too, never shows up in the PLC.
Using the OPCclient in Lookout. Their is No alarm's, other than a value has been adjusted by direct user input..
Their is no comm errors.
I just purchased this software last month.
The NI OPC Server, Events, no errors.
Thanks.
Dave
Solved!
Go to Solution.

Thanks for your posts because I knew this should be possible.  Here is what I found.  Check step 4 of your channel in case your value updating is wrong or Step 11 of  device is set to do not create on startup.
Thanks to the folks at Kepware. I was able to get this working for CompactLogix L32E.
Step 1: In NI OPC Server Create a new Channel. Channel Name can be whatever you want.
Step 2: Device driver will be ControlLogix Ethernet.  You can also enable diagnostics if you want.
Step 3: Network adapter. I used default setting.
Step 4: Write only latest values.  Duty at 10. ( These are default settings and are recommended.)
Step 5: Finish new Channel setup
Step 6: Click on Icon to create new device
Step 7: Device Name can be whatever you chose.
Step 8: Select Device Model in this case CompactLogix 5300
Step 9: Device ID For me was IP Address XXX.XXX.XXX.XXX,1,0    (Note the 1 directs path to backplane. The 0 to the slot where processor is)
Step 9: Device timing.  Leave at defaults.
Step 10: Auto demotion leave unchecked.
Step 11: Leave at defaults Do not generate on startup Delete on create and allow subgroups
Step 12: Port and watchdogs at default settings
Step 13: Project options leave at default. (In my case I changed to short as that is what most of my tags were)
Step 14: Create tagname from device.
Step 14: Finish Device setup.
You now have two options. 
Option 1: Start creating tags as you need them. (This is what I did)
Option 2: Right Click newly created device and select properities.  Then select database creation and click auto create.
Go To Lookout  and create new driver. 
Select OPC Client
Server name will be from dropdown menu. National Instruments:NIOPCServers
Click okay
You should be done and smiling. 

Similar Messages

  • IPhoto 9.2 photo descriptions will not write - after a few letters words self erase!

    iPhoto 9.2 photo descriptions will not write - after a few letters words self erase! Program update downloaded earlier today, 24.10.11. Fine on my laptop, but my desktop is having problems.

    Rebuild the main library.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Code will not write to text

    Hello to all:
    Can someone give advice to why the code below will not write to the text that I save. In other words, when I write a text file then save it then open the text file again, all of the words that I have written are not seen.
         private File workingFile = null;
      private JTextArea jta;
    private void saveFile()
                   if (workingFile != null)
                        try
             FileOutputStream fos = new FileOutputStream(workingFile);
                             fos.write(jta.getText().getBytes());
                             fos.close();
                                            //write the file out through FileWriter
                   PrintWriter outFile = new PrintWriter(new FileWriter(workingFile));
                   outFile.print(area.getText());
                   outFile.close();//close the text file
                        catch (IOException e) { e.printStackTrace();
                   else
           JFileChooser jfc = new JFileChooser();
                   jfc.setDialogTitle("Save Document");
                   int option = jfc.showSaveDialog(null);
                   if (option == JFileChooser.APPROVE_OPTION)
                   try
              FileOutputStream fos = new FileOutputStream(jfc.getSelectedFile());
                             workingFile = jfc.getSelectedFile();
                             fos.write(jta.getText().getBytes());
                             fos.close();
                        catch (IOException e) { e.printStackTrace();
              }

    ok, I found the line that is causing the exception. Line333 which is in
    the second if statement , the following:fos.write(jta.getText().getBytes());
    Now how would I fix that besides deleting itCan you post the first few lines of that stacktrace? Either jta or fos
    (or both) are null; the stacktrace shows you which one caused the
    NullPointerException.
    Of course you can add a few debug prints just before that line:System.out.println("jta: "+jta);
    System.out.println("fos: "+fos);kind regards,
    Jos

  • My Mac OS X 10.4.11 will not write DVDs and gets error code 0x80020022, what is wrong?

    My Mac OS X 10.4.11 will not write DVDs and gets error code 0x80020022, what is wrong?

    That code is not really useful since it just means it can't write DVD's (or probably CD's).  The only thing you can do is first to try a different brand of DVD's, higher quality.  You could also try burning at a slower speed.
    Based on the fact that you are using an OSX that's no long supported, there's probably not much you can do to correct this issue if it is software related.  You may also have a failing Super Drive, another consequence of an older Mac.

  • Maxl Script will not write to error file for data laod.

    Sorry Glenn here is the new thread. I re ran without the semi colon after data 3 and the same error came up without anything being written to the error file.
    I purposely removed a member from the orginal outline that is included in the data loaded but yet the error file is not written to. I tried doing the load manually but executing it in the background, error file is to be created on my local HD but it does not write it there. Checked the output and it is written to a directory located on the server. Although i think this is normal.
    Could it be that it will not write to a local drive? I am going to try specifying a spot on the server to see if it runs there.
    thanks
    Original post below.
    Hello,
    I am also having this issue.
    I will include my script below but will state some details before
    We are on Essbase 11.1.1.3
    I am running Admin Console from my client PC that connects to the server in the script and I read that in this set up the error file will not get written to. This documentation was for v 9.1.3
    Here is my script (i changed some of the names)
    login 'user' 'password' on server';
    create application 'Money1' as 'Money2';
    spool stderr on to 'errorfile';
    import database 'Money1'.'Main' data
    from local text data_file 'Money1_Data.txt'
    using server rules_file 'Data3'
    on error append to 'dataload.err';
    execute calculation 'CALC ALL;' on 'Money1'.'Main';
    logout;
    spool off;
    exit;
    here is the error output i get:
    code line: on error append to 'dataload.err';
    Statement executed with warnings.
    (3) Syntax error near ['$']
    I don't see a dollar sign anywhere in my code and the error file does not get produced.
    Also do error files get written too if the actins are executed in the background?
    Thanks!
    Alex

    This works for me in a MaxL script run through essmsh.exe:
    import database appname.dbname data from local text data_file "d:\\datafilename.txt" using server rules_file "rulename"
         on error write to "d:\\errorfilename.err" ;Sometimes EAS (I think you are running it through that) does weird things to MaxL. I eschew MaxL in EAS as much as possible (like 100% of the time).
    NB -- the datafilename and errorfilename and their drive letters are local to wherever you're running this process through the MaxL shell. I don't know how that works when you're running EAS -- are drives local to your session, local to the EAS server? Dunno. Leave EAS behind, buy TextPad (no I am not the author of that fine product) and download the MaxL syntax library, and be happy. :)
    Regards,
    Cameron Lackpour
    Edited by: CL on Oct 7, 2010 7:12 AM
    Put the MaxL into a code block to get it to display correctly.

  • Help to restore my iphone and it will not write error 1002

    help to restore my iphone 3gs and it will not write error 1002

    Click 1002 >  iOS: Resolving update and restore alert messages

  • Cookie will not write using weblogic 5.1 and Apache

              Hi,
              I'm having problems having my application write cookies under the UNIX environment. It works fine under
              the NT environment. Could this be a problem with the Apache plugin and weblogic 5.1???
              Under the UNIX environment, it will not write to the cookies at all. Is it because I have weblogic and apache
              on two sperate machines?? Any advice would be much appreciated.
              Thanks,
              Wayne
              

    There is no apache 2.x plugin for WLS 5.1.
    Sorry,
    Eric
    "sridhar" <[email protected]> wrote in message
    news:[email protected]..
    Hi
    I am trying to use the webservices of apache 2.x server. I am usingweblogic 5.1 application server. Can you give the details of installation
    and configuration of plugins which is compatable for the version as i said
    above? As far as i search on BEA site i didnt get the solution for the
    version i mentioned. An early reply is expected.
    >
    Thanks a lot
    sridhar

  • Tethered 30D will not write to CF card

    When tethered to Lightroom 3.3 my Canon 30D will not write to the CF card although the tether functions ok.
    I understand I can go through Eos Utility but I would rather not use it due to problems caused by cable unplugs etc.
    Anyone solved this problem yet ?

    Hi Pete,
    Thanks for your quick response. But the 30d has only a setting to shoot with or without card, either setting are with the same result only writing the files to the computer.
    B.M.

  • Meta Data Will Not Write! I've tried everything...

    So, I love LR very much, except for the fact it WILL NOT write metadata. I've done numerous tests with Picasa, IrfanView, and other applications and while other applications successfully write to the IPTC header of the jpg or sidecar, I cannot get LR to write any of the metadata for the life of me. I've turned on and off the "Write XMP" checkbox in the options.
    I've waited a substantial amount of time, then checked the file in a reader app and never see any kind of change to the file.
    Why won't Lightroom write the metadata through to the file? It reads it in fine, but I cannot get it to update the file.
    Thanks for your thoughts.

    There's another issue here. Depending on what you're looking at it with, the programs cache. I was going crazy thinking they were not being written by looking with exifer and several other programs. Someone said try Bridge, which I'd never used, and voila, they were there. Bridge ALSO caches, but there is an option to empty the cache for this folder and you have to do that every time you want to check if Lightroom has written something. If you're on Windows, Microsoft Photo Info does display some metadata fields and does not have the caching problem.
    In my case, I'm checking dates I'm writing in exifer for Lightroom, since Lightroom can't write capture and digitize dates.

  • I was recently sent a very large emoji message amd now when i try to acces messages it will not display mesagges and then will bring me back to the home page

    was recently sent a very large emoji message amd now when i try to acces messages it will not display mesagges and then will bring me back to the home page

    Quit the messages app and reset your phone.
    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it jiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal. Then restart the app and see if it works normally. Then reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart.
    After the phone restarts go into Messages and delete the thread containing the problem message.

  • My iPod will not charge at all it will when it's off it will power on and charge to a certain pint then will stop and no longer charge what is its problem I've tried 3 cords and three different outlets and also in my computer! What is wrong with it?

    My iPod will not charge at all it will when it's off it will power on and charge to a certain pint then will stop and no longer charge what is its problem I've tried 3 cords and three different outlets and also in my computer! What is wrong with it?it won't charge when it's powered on only when it s off then it turns on and stops charging?? What's wrong with it ad how much is a Genius Bar appt at apple stores??

    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar 

  • I have the ipod touch 4th generation and the screen is white, i was going to charge it and it turned white. I have tried to reset it but the apple logo will not show up and it will not turn on! i just got it for christmas... can you please help?

    i have the ipod touch 4th generation and the screen is white, i was going to charge it and it turned white. I have tried to reset it but the apple logo will not show up and it will not turn on! i just got it for christmas... can you please help?

    The way I did it was I got the free app sync:stream from the App Store and then added my ipod to my ps3's Bluetooth devices. Then went to audio settings and set output and input to 'Skaggs iPod' you then open the app and it will be listed under music as a media service. You then go to all tracks and click copy (press triangle) it will then begin to copy all of your songs onto your ps3 via Bluetooth. I haven't tried but I assume the same can be done with photos. I hope this was helpful reply if you have any questions :) good luck

  • My numbers application will not continue an update and will not open due to said incomplete update

    My numbers application will not continue an update and will not open due to said incomplete update

    open the application "LaunchPad" then locate Numbers.  Click and hold on Numbers until is starts to shake.  click the "X" in the top left corner.  click on the desktop to exit this mode.  Now open the App store and install again.

  • My iphone 5 died so I plugged it back in to charge and it will not turn on. It will turn to the screen with the apple logo and black screen then turn off again. Any suggestions?

    My iphone 5 died so I plugged it back in to charge and it will not turn on. It will turn to the screen with the apple logo and black screen then turn off again. Any suggestions?

    I leave it charging until it gets back to full, usually it turns on after a little bit of time after plugging it in, but all its doing is going to the apple logo screen and going blank again.

  • I Just bought iMovie for yosmite and the program will not open.. I will like a fix or a refund..

    I Just bought iMovie for yosmite and the program will not open.. I will like a fix or a refund.. i am getting tired of these problems...

    Welcome to the world of downloaded software. There are no refunds.
    Back in the good old days when software was purchased on disk one could sell it (legally).
    Please describe your problem.  Give us some details to go from.   Are you using iMovie 06, or something newer?

Maybe you are looking for

  • My iPad no longer shows previous purchases in the App Store

    I recently moved from Australia to the US, have synced changed my store location too and since then I can no longer access previously purchased apps. The ones I have installed are fine and working, however all the purchase history has disappeared, is

  • My Hard Drive crashed and I am trying to retrieve a audio book that was not on my ipod

    How do I get a audio book I purchased from itunes to my ipod or my itunes?  I can see where I purchased it but can not figure out where it is.  My Hard drive crashed and I lost everything.

  • How to pass rowset properties out of mapping

    I want to pass out the count of records inserted, and the value of a field out of a mapping to send an email with this information. I cannot see how to accomplish this. I tried setting up an aggregate, and passing result to an Output parameter, but I

  • Oracle Fusion 11g Vs Oracle Fusion 10g

    Hi, What are the major changes and how complex or simple they made it in Fusion 11g over Fusion 10g? Please share this knowledge. Thanks.

  • Ejb-jar files directory in WLS console

    Hi , Everyone I 'll like to know that's the meaning of "\.\" in the following directory which found in Weblogic 7 console. I just clicked: mydomain | delplyment | EJB | a4b2.jar D:\bea\user_projects\mydomain\.\myserver\upload\a4\a4b2.jar