Reading RFID tags with LabVIEW

Is there an RFID reader which is compatible with LabVIEW (preferably from NI)?
I'm looking into tagging test samples and then reading sample data with LabVIEW.  Has anyone done this?
I'm just starting my research so if you can give me some pointers or information about RFID in general it would be useful (costs, suppliers, caveats, and so on).
Thanks,
Dave

Hi Dave,
We have a DevZone tutorial on The State of Radio Frequency Identification (RFID). Take a look through this, it has a lot of information. Also, scroll down to the bottom of this page, it discusses what NI products can be used for RFID reading. We also have a Case Study called "Using National Instruments Software and Hardware to Develop and Test RFID Tags".
Hope this helps a bit!
Regards,
Claire Reid
National Instruments

Similar Messages

  • Read array tags with OPC (not DS) -- LV6.1

    Hello DSC experts:
    The Siemens OPC server to which I am connected publishes array tags and I cannot change that fact. I can read those array tags using the "Datasocket Read Double Vector.vi" but as the number of tags grows this slow method becomes unreliable. Instead I would like to use DSC but I do not see any Vi that allows me to read vector tags? Like I said I have to live with the OPC configuration as it is today hence I do not think that going through the flatten/unflatten to string method is an alternative.
    Any clue?
    Thanks a lot,
    Chris

    Can you do any kind of array indexing when addressing the tag inside the opc server?? Something like tagname.xx or tagname[xx] where you would select a portion of the tagname array data. Could you talk directly with the VISA drivers and use a read multiple registers command instead of a DSC driver?? To my knowledge, the tag engine does not support array addressing for a tag datatype. I do use the method of flattening an array of data into a binary string and writing it to a memory tag, but the array data is created inside labview. I submitted DSC tag array datatype to a request list quite some time ago but never heard anything about it again. I wonder if a DDE connection could be established to read string data. Then do a string to number conversion. What version
    of Siemens hardware/software are you using?? I think the tag engine really is lacking with respect to the capabilites of the latest OPC software. I would love to see NI directly integrate an OPC program like KEPWARE so you did not have to use the tag engine. Are you using serial or ethernet communication??

  • Reading teststand variables with labview??

    I'm trying to create a vi that will read the uut serial number from teststand and compare it to a second scan from the operator. Is there a function I can put on the block diagram to read the teststand variable? I've read the using teststand with labview but it's still unclear how to do this. Could I just pull the serial number from the UUT dialog that the user starts the test with instead? The other problem is this is a 4 uut test panel so I need to make sure I compare the correct uut serial number info. Any ideas?

    The name of the variable is RunState.Root.Locals.UUT.SerialNumber. When you create your VI, have a string control that you pass this in. This is done when do the Specify Module as shown below. Here's an example sequence and VI as well. You can also make it a bit more complicated by using the sequence context and the TestStand Get Property Value function.
    Message Edited by Dennis Knutson on 05-01-2007 04:16 PM
    Attachments:
    Specify Module.PNG ‏29 KB
    TestStand Example.zip ‏9 KB

  • Looking for reader GeoTIFF Tag with JAI

    Hello , I'm looking for a java code about Geotiff.
    I want to read geotiff tag. How can I do?

    Hi...
    I have same question. I replied you for getting the information wether you got anything for that or not. If you got any idea then let me know how it work.

  • Parse XML file, read a tag with whitespaces value.

    Hi all,
    I've got a problem with reading a spaced value record from xml file using sys.xmltype.
    My xml file contains the following:
    <?xml version = '1.0'?>;
    <ROWSET>
    <ROW num="1">
    <FIRSTNAME>Nik</FIRSTNAME>
    <LASTNAME> </LASTNAME>
    <AGE>30</AGE>
    </ROW>
    </ROWSET>
    As you see last name contains four spaces!
    Now when I'm trying to read value from LASTNAME record I'm getting a NULL value, but I want it to return me those 4 spaces as they are.
    Here is a short code description of what I'm doing:
    declare
         xml sys.xmltype;
    str1 varchar2(100);
    str2 varchar2(100);
    begin
         xml := sys.xmltype.createxml(fileContentClob); -- I copy the file content into the fileContentClob variable.
         If xml.existsnode('//ROW['1']/LASTNAME') > 0 Then -- This condition evaluates as true
    str1 := xml.extract('//ROW['1']/LASTNAME/text()'); -- str1 gets NULL value :(, I want spaces as they are in the file.
    str2 := xml.extract('//ROW[' || 1 || ']/LASTNAME').getstringval; -- str2 gets <LASTNAME/> null tag :(.
         End If;     
    end;
    Seems like when it createxml from the fileContentClob it ignores the spaces and find LASTNAME as a null field.
    Do you have any suggestions on how can I fix that, so I can read whitespaces as they are in the file?
    I generate the file also using a xml toolpackage from oracle:
    declare
    strSqlStmt Varchar2(300);
    varCtxHdl dbms_xmlquery.ctxhandle;
    varClob Clob;
    begin
    strSqlStmt := 'SELECT FIRSTNAME,LASTNAME,AGE FROM USERS WHERE ROWNUM =1';
    varCtxHdl := dbms_xmlquery.newcontext(strSqlStmt);
    varClob := dbms_xmlquery.getxml(varCtxHdl);
    dbms_xmlquery.closecontext(varCtxHdl);
    End;

    Even if the STORE AS CLOB clause is used to store the data and preserve whitespace for the XML, the actual extraction of data seems to be removing whitespace...
    SQL> ed
    Wrote file afiedt.buf
      1* create table t (xml xmltype) xmltype xml store as clob
    SQL> /
    Table created.
    SQL> ed
    Wrote file afiedt.buf
      1  insert into t (xml)
      2  values (q'[<?xml version = '1.0'?>
      3  <ROWSET>
      4  <ROW num="1">
      5  <FIRSTNAME>Nik</FIRSTNAME>
      6  <LASTNAME>    </LASTNAME>
      7  <AGE>30</AGE>
      8  </ROW>
      9* </ROWSET>]')
    SQL> /
    1 row created.
    SQL> select * from t;
    XML
    <?xml version = '1.0'?>
    <ROWSET>
    <ROW num="1">
    <FIRSTNAME>Nik</FIRSTNAME>
    <LASTNAME>    </LASTNAME>
    <AGE>30</AGE>
    </ROW>
    </ROWSET>
    SQL> set null NULL
    SQL> select x.rnum, x.firstname, x.lastname, x.age
      2  from t
      3      ,xmltable('/ROWSET/ROW'
      4                PASSING t.xml
      5                COLUMNS rnum      NUMBER       PATH '/ROW/@num'
      6                       ,firstname VARCHAR2(10) PATH '/ROW/FIRSTNAME'
      7                       ,lastname  VARCHAR2(10) PATH '/ROW/LASTNAME'
      8                       ,age       NUMBER       PATH '/ROW/AGE'
      9               ) x
    10  /
          RNUM FIRSTNAME  LASTNAME          AGE
             1 Nik        NULL               30
    SQL>

  • RFID tag reading failed - MI 7.0, MAM 3.0

    Hello at all,
    I try to make RFID available for Mi7.0 SR14, MAM3.0 SR5, DB2e, Windows Mobile 5, RFID Reader - Microsensys CFCard, Passive Tags (non metal and on metal9).
    Currently I don't be able to read any RFID tag. The standard software of RFID scanner manufacturer can read them without any problems. I got the technical details of tags from manufacturer of tags too (see pirfmsycfcrd.tagcfg).
    So my questions are:
    Why the standard MAM application cannot identify the tags at least?
    What can be wrong in my configuration or what I did wrong?
    How we can write Tags inital for MAM? Software?
    Please take a look to the details of my scenario below:
    Thanks a lot in advance if you can help.
    Kind regards
    Andreas Dommes
    I was preparing drivers as described in note 761833 - PIRFMSYCFCRD_ReleaseNote_v1_2_6.htm. Following compoenent have been installed in sequence on device:
    MOBILEENGINE_JSP (701400)
    DB2E (9.1.2)
    CONNECTOR_WM50_XSL_CRM (126)
    MICROSENSYS_DRIVER_ADDON_WM50 (adapted PIRFMSYCFCRD_WM50_XSL_CRM by means of 761833)
    XMAM30_HANDHELD_SR05
    <h3>eSerial driver also installed (litte Hack mentioned in release-notes of driver - Timbatec-Recon Device</h3>
    following flag I set manually (as described in 761833 - PIRFMSYCFCRD_ReleaseNote_v1_2_6.htm)
    HKEY_LOCAL_MACHINE/Drivers/PCMCIA/elSerail/EnableXScaleHacks = 1
    <h3>Following settings we use</h3>
    File: pirfmsycfcrd.cfg (we increased timeout (*2)
    Configs=DriverParameters
    DriverParameters=
    DriverParameters.CFPort=COM2:
    DriverParameters.IdentifyTimeout=6000
    DriverParameters.PortType=0
    DriverParameters.ReadTimeout=4000
    DriverParameters.WriteTimeout=4000
    DriverParameters._Type=DriverParameters
    File: pirfmsycfcrd.md
    Types=DriverParameters,Integrated
    Parameters.DriverParameters=ReadTimeout,WriteTimeout,IdentifyTimeout,PortType,CFPort
    DriverParameters.ReadTimeout=4000
    DriverParameters.WriteTimeout=4000
    DriverParameters.IdentifyTimeout=6000
    DriverParameters.PortType=0
    DriverParameters.CFPort=COM2:
    Parameters.Integrated
    File: pirfmsycfcrd.tagcfg - relevant for us is type "TIHFIPLUS"
    Configs=EM4135,MYD_ISO,ICODESLI,TIHFIPLUS
    EM4135=
    EM4135.Name=EM4135
    EM4135.NoOfBytes=288
    EM4135.NoOfBytesPerBlock=8
    EM4135.TagIDLen=8
    EM4135.TagIDPasswordLen=0
    EM4135.Type=0x01,\ 0x16
    EM4135.UserReadableAreas=0-287
    EM4135.UserWritableAreas=0-287
    EM4135._Type=Tag
    ICODESLI=
    ICODESLI.Name=ICODESLI
    ICODESLI.NoOfBytes=112
    ICODESLI.NoOfBytesPerBlock=4
    ICODESLI.TagIDLen=8
    ICODESLI.TagIDPasswordLen=0
    ICODESLI.Type=0x01,\ 0x04
    ICODESLI.UserReadableAreas=0-111
    ICODESLI.UserWritableAreas=0-111
    ICODESLI._Type=Tag
    MYD_ISO=
    MYD_ISO.Name=MYD_ISO
    MYD_ISO.NoOfBytes=992
    MYD_ISO.NoOfBytesPerBlock=4
    MYD_ISO.TagIDLen=8
    MYD_ISO.TagIDPasswordLen=0
    MYD_ISO.Type=0x01,\ 0xF5
    MYD_ISO.UserReadableAreas=0-991
    MYD_ISO.UserWritableAreas=0-991
    MYD_ISO._Type=Tag
    TIHFIPLUS=
    TIHFIPLUS.Name=TIHFIPLUS
    TIHFIPLUS.NoOfBytes=240
    TIHFIPLUS.NoOfBytesPerBlock=4
    TIHFIPLUS.TagIDLen=8
    TIHFIPLUS.TagIDPasswordLen=0
    TIHFIPLUS.Type=0x00,\ 0x07
    TIHFIPLUS.UserReadableAreas=0-239
    TIHFIPLUS.UserWritableAreas=0-239
    TIHFIPLUS._Type=Tag
    <h3>Following error occurred, if I try to read RFID tag:</h3>
    RFID-Tag couldn't read
    [20081208 15:32:57:706] D [MI/API/Runtime/JSP       ] AbstractMEHttpServlet:getEvent() done with event name = 'onRFIDRead'
    [20081208 15:32:57:716] P [MI/PIOS                  ] Called method: ConnectorImpl.open()
    [20081208 15:32:57:720] D [MI/PIOS                  ] param: parameters=com.sap.ip.me.api.pios.rfid.RfidParameters@19e6af
    [20081208 15:32:57:729] P [MI/PIOS                  ] Called method: RfidConnectionImpl(-1).RfidConnectionImpl()
    [20081208 15:32:57:735] P [MI/PIOS                  ] Called method: ConnectorImpl.getConfigFile()
    [20081208 15:32:57:740] D [MI/PIOS                  ] param: driverInfo=com.sap.ip.me.api.pios.connection.DriverInfo@19e6bc
    [20081208 15:32:57:745] P [MI/PIOS                  ] Called method: ConnectionHelper.open()
    [20081208 15:32:57:753] D [MI/PIOS                  ] param: conn=com.sap.ip.me.api.pios.impl.rfid.RfidConnectionImpl@19e682
    [20081208 15:32:57:758] D [MI/PIOS                  ] param: params=com.sap.ip.me.api.pios.rfid.RfidParameters@19e6af
    [20081208 15:32:57:761] D [MI/PIOS                  ] param: configFile=/MI/pios/config/pirfmsycfcrd.cfg
    [20081208 15:32:57:766] P [MI/PIOS                  ] Called method: RfidConnectionImpl(-1).open
    [20081208 15:32:57:772] D [MI/PIOS                  ] param: DrvName:=pirfmsycfcrd
    [20081208 15:32:57:776] D [MI/PIOS                  ] param: DrvDescription:=Microsensys CF RFID
    [20081208 15:32:57:780] D [MI/PIOS                  ] param: DrvVersion:=1.2.6.11
    [20081208 15:32:57:783] D [MI/PIOS                  ] param: MIDir:=/MI/
    [20081208 15:32:57:787] D [MI/PIOS                  ] param: PIOSDir:=/MI/pios/
    [20081208 15:32:57:790] D [MI/PIOS                  ] param: LogDir:=/MI/pios/log/
    [20081208 15:32:57:794] D [MI/PIOS                  ] param: ConfigDir:=/MI/pios/config/
    [20081208 15:32:57:797] D [MI/PIOS                  ] param: InstallDir:=/MI/pios/install/
    [20081208 15:32:57:801] D [MI/PIOS                  ] param: PropsDir:=/MI/pios/props/
    [20081208 15:32:57:804] D [MI/PIOS                  ] param: CfgFile:=/MI/pios/config/pirfmsycfcrd.cfg
    [20081208 15:32:57:814] D [MI/PIOS                  ] param: IsTraceOn:=true
    [20081208 15:32:57:817] D [MI/PIOS                  ] param: EffectiveSeverity:=90
    [20081208 15:32:57:821] D [MI/PIOS                  ] param: isOpen:=false
    [20081208 15:33:01:830] P [MI/PIOS                  ] Called method: RfidConnectionImpl(314944).identify
    [20081208 15:33:01:834] D [MI/PIOS                  ] param: tagTypeList=EM4135,0,8,288,8,{{0-287}{0-287};ICODESLI,0,8,112,4,{{0-111}{0-111};MYD_ISO,0,8,992,4,{{0-991}{0-991};TIHFIPLUS,0,8,240,4,{{0-239}{0-239}
    [20081208 15:33:07:861] E [Unknown                  ] RFID READ ERROR: RFID-Etikett nicht erkannt
    [20081208 15:33:07:864] E [Unknown                  ] com.sap.mbs.mam.rfid.exception.RFIDTagAccessException: RFID-Etikett nicht erkannt
    com.sap.mbs.mam.rfid.exception.RFIDTagAccessException: RFID-Etikett nicht erkannt
         at com.sap.mbs.mam.rfid.util.impl.RFIDTagHandlerImpl.executeRFIDTagRead()
         at com.sap.mbs.mam.rfid.control.RFIDList.onRFIDRead()
         at com.sap.mbs.core.control.AbstractViewController.process()
         at com.sap.mbs.core.control.DefaultStateMachine.process()
         at com.sap.mbs.core.web.FrontServlet.doHandleEvent()
         at com.sap.mbs.mam.application.web.FrontServlet.doHandleEvent()
         at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGetNotThreadSafe()
         at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet()
         at javax.servlet.http.HttpServlet.service()
         at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service()
         at javax.servlet.http.HttpServlet.service()
         at org.apache.tomcat.core.ServletWrapper.doService()
         at org.apache.tomcat.core.Handler.service()
         at org.apache.tomcat.core.ServletWrapper.service()
         at org.apache.tomcat.core.ContextManager.internalService()
         at org.apache.tomcat.core.ContextManager.service()
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection()
         at org.apache.tomcat.service.TcpWorkerThread.runIt()
         at org.apache.tomcat.util.ThreadPool$ControlRunnable.run()
         at java.lang.Thread.run()
    [20081208 15:33:08:047] P [MI/PIOS                  ] Called method: RfidConnectionImpl(314944).close
    <h3>Error log of pirfmsycfcrd.log</h3>
    Mon Dec 08 16:30:00 2008 : Starting Log: [\Windows\pirfmsycfcrd.dll 1.2.6.11]
    Mon Dec 08 16:30:00 2008 : CRfidPeripheral::RfOpen=
    Mon Dec 08 16:30:04 2008 : ExportObject::Open
    Mon Dec 08 16:30:04 2008 : CRfidPeripheral::RfIdentify=
    Mon Dec 08 16:30:04 2008 : Calling CRfidPeripheral::GetTagTypeByName=
    Mon Dec 08 16:30:04 2008 : CMicrosensysRFID::Rfid_Identify - *** Starting identify process ***
    Mon Dec 08 16:30:10 2008 : *** Identify process finished ***
    Mon Dec 08 16:30:10 2008 : CRfidPeripheral::RfClose=
    Mon Dec 08 16:30:10 2008 : ExportObject::Close
    Mon Dec 08 16:30:10 2008 : ExportObject::Destroy
    Mon Dec 08 16:30:10 2008 : ExportObject::~CExportObject
    Mon Dec 08 16:32:57 2008 : Starting Log: [\Windows\pirfmsycfcrd.dll 1.2.6.11]
    Mon Dec 08 16:32:57 2008 : CRfidPeripheral::RfOpen=
    Mon Dec 08 16:33:01 2008 : ExportObject::Open
    Mon Dec 08 16:33:01 2008 : CRfidPeripheral::RfIdentify=
    Mon Dec 08 16:33:01 2008 : Calling CRfidPeripheral::GetTagTypeByName=
    Mon Dec 08 16:33:01 2008 : CMicrosensysRFID::Rfid_Identify - *** Starting identify process ***
    Mon Dec 08 16:33:07 2008 : *** Identify process finished ***
    Mon Dec 08 16:33:08 2008 : CRfidPeripheral::RfClose=
    Mon Dec 08 16:33:08 2008 : ExportObject::Close
    Mon Dec 08 16:33:08 2008 : ExportObject::Destroy
    Mon Dec 08 16:33:08 2008 : ExportObject::~CExportObject

    Hi Andreas,
    based on our conversation on the phone:
    Have a look here: SAP NOte: 734102
    It tells you what is necessars to get it working. I guess in your case the vendor does not deliver the correct driver for the SAP framework. As I said, you need the exact driver for the SAP driver framework. Cause it was not available in our case, we had to develop that one from scratch. But the model you use - if you ask the person that sells it, he was very helpful in our case as well and it was only a question of a few days to get it working correctly with our own JNI Implementation.
    Perhaps the following Notes can be helpfull as well:
    793100 - MAM RFID tag initialization instruction
    791037 - SAP Mobile RFID Interface Software Installation/Deployment
    Regards,
    Oliver
    P.s. Special greets to Kai and a Merry xMas for you all!

  • Serial Numbers on an RFID Tag

    I am new to RFID technology. My question is: Can 1 RFID tag be designed to capture and transmit 5 non-consecutive serial numbers contained in 1 container box?
    If you can tell me if this is possible with minimum effort or much effort, please let me know.
    Then, if you also know Oracle's e-Business Suite (EBS), let me know if it's possible to have the scanning of such an RFID tag with 5 non-consecutive serial numbers populate the Serial Numbers form in EBS like on a shipping transaction.

    Thanks, Sam.
    The EBS modules would be Inventory and Shipping. We do not use WMS.
    Uh, I do not know 'edge'. We do not use RFID currently and our volumes are small.
    Here's the business issue, whether the solution is RFID or not: Our company makes lasers for fiber optics. Originally, we just made high-end lasers (low volume, high dollar) that were placed into individual container boxes with a barcode label with its single serial number on the outside. All of these lasers were serialized as finished goods in Oracle. Whenever we ship such a laser, we have someone scan the picked lasers manually with a barcode reader one container box at a time. This has not been an issue, since volumes are small.
    But now we sell low-end lasers (higher volume, lower dollar), which often are sold in containers of 5. Each of the 5 small lasers have an individual, non-consecutive serial number. Our business areas want these items serialized in Oracle EBS as well, even though it makes more sense to me to track these items by LOT NUMBERS, not individual SERIAL NUMBERS.
    The dilemma is: When we ship, let's say, 1000 of these small lasers by picking 200 multi-pack containers, how do we have the shipping guy scan in the 1000 serial numbers?
    One way is to print 5 small individual S/N barcode labels on the multi-pack container, then have the poor guy scan in 1000 S/N's into the Oracle Shipping form from the 200 containers.
    That's why I was asking if there could be an easy RFID solution. Perhaps log the 5 S/N's in the multi-pack container onto 1 RFID tag. Then have the guy scan the RFID tag and have it insert the 5 S/N's onto the Shipping S/N form, one S/N at a time with a tab entry to go to the next S/N line. That way, the guy only scans 200 RFID tags. Is this crazy (not possible)?

  • Fast low level Ethernet communication with LabVIEW

    Hello, I want to read Ethernet packets with LabVIEW (an private protocol, not UDP or TCP or others). The hardware writes 40 000 packets per second. I want to use winPcap API to capture data. I’ve seen the example «packet_sniffer_project » (and others). It’s an great job. But the soft reads only 1 packet at each time (wrapper dll calls « pcap_next_ex » function) and I lose packets. With my computer, I read 25 000 packets per second. How can I read more than one packet at each time? (or all the Ethernet buffer) Thank You
    Micke

    Hi,
    maybe an example that I posted will help you
    http://decibel.ni.com/content/docs/DOC-11373
    cosmin 

  • Record audio with labview and audio dataplugin

    The thing I would like to do, is write waveforms to WAV/wma/mp3 files.
    The way to do this, is probably with the help of the audio data plugin.
    However, it is far from clear how to configure and use this plugin with LabView. There is documentation available for DIAdem, but what good is that to me, as a simple LabView user?
    There is also an example for reading dataPlugin data with LabView, but this example is:
    A) not working, e.g. it cannot open a simple WAV file, when using "uspAudio" as DataPlugin Name
    B) not documented
    C) not handeling errors
    D) only reading, not writing, which is slightly more complicated.
    So, tips for writing waveform to audio files and/or
    tips for working with dataPlugins in LabView would be welcome...

    Ok, so, now I can read a WAV/WMA/mp3 file, see attached VI
    There's still one problem: writing data to a WAV/WMA/mp3 file. In my "DataPlugin Write Audio File.vi" I try to read from / listen to a microphone connected to a AD card. On the Waveform graph, I see my signal correctly, but in the WAV file, there is only a flat line (zero's).
    Perhaps it is needed to add properties to the group, but I don't know which properties to add...
    All advice is appreciated...
    Message Edited by bram@tno on 08-08-2007 07:00 AM
    Attachments:
    DataPlugin Load Audio File.vi ‏46 KB
    DataPlugin Write Audio File.vi ‏229 KB

  • Choice of RFID reader/writer compatible with a PDA and LabView

    Hello All,
    I need information on a RFID reader/writer that i can use with a PDA. The ones i have being coming across don't have a LabView driver except Phidget product. But Phidget uses USB. I need a RFID module with a compact flash. Pls reply.
    Demmy

    Hi Junaid,
    In one of my AII presentations I found: 
    Tested readers:
    <b>Intermec, Alien, Matrics, Philipps, AWID, Tyco Sensematic</b>
    maybe you can call those companies and just ask or e-mail them?
    also this may help you:
    Simple SAP Device Controller with limited functionality is provided. It supports readers:
    - <b>Alien ALR-9780</b> (4-port reader)
    - <b>Intermec IntelliTag 500 API</b>
    - <b>Philips SDK</b> reader
    But I'm not sure how occurate this presentation is because I got it in 2004 (december as far as I remember)
    BTW
    If they answer please post their suggestions here if you may:)
    Regards,
    michal

  • Error with this Alien-RFID-Tag-List kind of  tag format in flex 1.5

    Hi all
    I am trying to display the following XML file which i am
    getiing from RFID reader when i send the command to reader. I am
    using flex 1.5.
    <Alien-RFID-Tag-List>
    <Alien-RFID-Tag>
    <TagID>1000 0000 0000 0000</TagID>
    <DiscoveryTime>2006/07/14
    12:28:18</DiscoveryTime>
    <LastSeenTime>2006/07/14 12:28:18</LastSeenTime>
    <Antenna>0</Antenna>
    <ReadCount>98</ReadCount>
    </Alien-RFID-Tag>
    </Alien-RFID-Tag-List>
    For this I am using the following codes
    private function onResultAl(oEvent:Object):Void {
    var aResultAl:Array =
    mx.utils.ArrayUtil.toArray(oEvent.result.Alien-RFID-Tag-List.Alien-RFID-Tag);
    for(var i:Number = 0; i<aResultAl.length; i++){
    _aDPAL.addItem(aResultAl
    <mx:HTTPService id="aldt" url="aliendata.jsp"
    result="onResultAl(event)" fault="alert(event.fault.faultstring);"
    resultFormat="xml"/>
    <mx:DataGrid id="aldg" dataProvider="{_aDPAL}" width="630"
    height="350">
    <mx:columns>
    <mx:Array>
    <mx:DataGridColumn columnName="TagID" headerText="Tag
    ID"/>
    <mx:DataGridColumn columnName="DiscoveryTime"
    headerText="Read Counts"/>
    <mx:DataGridColumn columnName="LastSeenTime"
    headerText="Reliability"/>
    <mx:DataGridColumn columnName="Antenna"
    headerText="Antenna No"/>
    <mx:DataGridColumn columnName="ReadCount"
    headerText="Read Time"/>
    </mx:Array>
    </mx:columns>
    </mx:DataGrid>
    But if i run then I am getting the error :There is no
    property with the name 'RFID'.
    Could anybody tell me why the compiler is ignoring after dash
    in this <Alien-RFID-Tag-List> kind of tag format?
    Thanx
    kvijai

    hi all
    Please have a look and tell me why I am getting this error.
    Thanx
    kvijai

  • Sapscript Syntax to write a RFID Tag on a label with Printronix SL5000r

    Hello everybody,
    does anyone know the syntax in SAPscript, to write data on a RFID Label with the label printer SL5000r from Printronix. I know you need the command "RFWTAG". But do you also need a special font?
    It would be great, if someone could post an example. e.g. to write 1234567890 on the RFID tag.
    Many thanks in advance!
    Bernd

    Hi Andreas,
    based on our conversation on the phone:
    Have a look here: SAP NOte: 734102
    It tells you what is necessars to get it working. I guess in your case the vendor does not deliver the correct driver for the SAP framework. As I said, you need the exact driver for the SAP driver framework. Cause it was not available in our case, we had to develop that one from scratch. But the model you use - if you ask the person that sells it, he was very helpful in our case as well and it was only a question of a few days to get it working correctly with our own JNI Implementation.
    Perhaps the following Notes can be helpfull as well:
    793100 - MAM RFID tag initialization instruction
    791037 - SAP Mobile RFID Interface Software Installation/Deployment
    Regards,
    Oliver
    P.s. Special greets to Kai and a Merry xMas for you all!

  • Reading a few WonderWare (RSLinx) tags from LabVIEW (client only)

    We have a customer that uses WonderWare and Net DDE. We need to read a few WonderWare tags from a LabVIEW application running on a separate computer. I am sure this has been done before but I cannot find a good example that demonstrates the format to use for computer name, service, topic, item name when talking to WonderWare. I could only find an Access and Excel example.
    All we need to do is connect to and monitor a few existing tags in WonderWare from another computer on the LAN running a LabVIEW application.
    I would prefer to use OPC but they have been using Net DDE for years and do not want to change.
    We cannot use LabVIEW DSC.

    If you can't use LabVIEW DSC, then your best option would be to use DataSocket to connect to your OPC server. You can find a couple tutorials on DataSocket and using it with OPC servers here and here. These tutorials give information on the syntax to use when connecting to your OPC server.
    Another option would be to stick with NetDDE. You can find a tutorial here on using NetDDE with LabVIEW.
    Jarrod S.
    National Instruments

  • RFID Tag reading thru Sensormatic RFID reader

    All,
    Did any body tested the Sensormatic RFID reader with AII ? How to test the HTTP connection between the reader and AII ? We have configured the HTTP RFC destination in SAP AII. But when we read the TAG from the reader, we are not able trace any response from the reader. How to configure the reader ? How will the Reader understand and send the info to AII. Anybody configured the Sensormatic RFID reader for the outband slap & ship scenario. Thanks.
    Regards,
    Velu

    Hi,
    please refer this link
    RFID tag reading failed - MI 7.0, MAM 3.0
    Regards
    Manohar

  • How can I read pdf files from LabVIEW with different versions of Acrobat reader?

    How can I read pdf files from LabVIEW with different versions of Acrobat reader?
    I have made a LabVIEW program where I have possibility to read a PDF document.  When I made this LabVIEW program it was Acrobat Reader 5.0.5 that was installed on the PC. Lather when the Acrobat Reader was upgraded to version 6.0, there was an error when VI tries to launch the LabVIEW program. And Later again when we upgraded to Acrobat Reader 7.0.5 I must again do some changes and rebuild the EXE files again
    It isn't so very big job to do the changes in one single LabVIEW program, but we have built a lot of LabVIEW programs so this take time to due changes every time vi update Acrobat Reader. (We have build EXE files.)
    The job is to right click the ActiveX container and Click "Insert ActiveX Object", then I can brows the computer for the new version of acrobat Reader. After this I must rebuild all the "methods" in the Activex call to make the VI executable again.
    Is there a way to build LabVIEW program so I don't have to do this job every time we update Acrobat Reader?
    This LabVIEW program is written in LabVIEW 6.1, but I se the problem is the same in LabVIEW 8.2.
    Jan Inge Gustavsen
    Attachments:
    Show PDF-file - Adobe Reader 7-0-5 - LV61.vi ‏43 KB
    Read PDF file.jpg ‏201 KB
    Show PDF-file - Adobe Reader 5-0-5 - LV61.vi ‏42 KB

    hi there
    try the vi
    ..vi.lib\platform\browser.llb\Open Acrobat Document.vi
    it uses DDE or the command line to run an external application (e.g. Adobe Acrobat)
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"

Maybe you are looking for