Bringing XML Data into FMP

Ask a Question related to FileMaker, Design and Development.

  1. #1

    Default Bringing XML Data into FMP

    I am in the midst of figuring out how to integrate RF-ID into FileMaker.

    For those who are not familiar with RD-ID, it is the technology that will
    soon replace barcodes. There is a tag that is placed on an object, that can
    be scanned and processed using radio waves from several meters away.

    I have found a vendor that makes a device that handles the scanning, etc.
    They say that the device will send XML to a server...

    Now I know that our favorite database system has the capacity to export and
    import XML data. But will it process XML like an HTTP command? In other
    words, will it take an XML command in, create a record, and possibly trigger
    a script?

    I am trying to avoid using a COM port situation to get the data. I don't
    want FileMaker to continually check for new scans. I want the scans to
    trigger FileMaker. Plus, the idea of the device being connected to FileMaker
    over the network is very appealing.

    Any advice is much appreciated.

    Matt Revenaugh

    Matt Revenaugh Guest

  2. Similar Questions and Discussions

    1. Bringing xml data into flash
      I would like to know how to bring xml data into flash. Specifically images that someone can click on the thumbnail and view the larger image. please...
    2. Bringing data into flex
      I am extremely new to flex, I have gone over a few example applications. And I have yet to see how you can bring data in from a database or...
    3. bringing 3d to director
      I was wondering how if i create something in 3d studio max do i bring it into director and then make it so i could make like say a box naviagte...
    4. Bringing up the PRINT window
      Thanks to those who helped me out with this question before. I'm using the "getURL" command on a button in Flash to open a document in a separate...
    5. Bringing href up in a different page
      This is my current code. I am trying to have this come up in a different page. Help please! <a href=ticket_admin.php?ID=".$row.">".$row."</a>
  3. #2

    Default Re: Bringing XML Data into FMP

    You'd have to use FMP's CGI to trigger it to add records and run scripts.
    You'd have to find a way to have the RD-ID application send HTTP requests to
    FileMaker Web Companion. If the RD-ID app is already sending HTTP requests,
    but you can't customize them to fit FMP's CGI, you could instead direct
    those requests to a middleware app like PHP, ASP, or Lasso that could
    receive, translate, and forward the request to FileMaker. Using a middle
    tier like that would also allow you more programmatic control of the data
    before inserting it into FMP.

    How does the RD-ID app send the XML data? If it's just sending an XML
    stream to a certain port, you could write a program that would listen for
    incoming streams, which it could then buffer and relay to FileMaker via HTTP
    requests.

    Hope this helps,
    Mariano


    Mariano Peterson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139