• Android?

    From Wally@21:1/5 to All on Wed Dec 22 15:52:49 2021
    Is anyone experienced in building an Android app that would scan a barcode and talk to a Windows server where a dbf file exists to update the dbf?

    What I would like is to have an Android based barcode scanner. Scan the stock number, tell me where in the warehouse the product should be stored.

    Or scan the stock number and update it's warehouse location.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ella Stern@21:1/5 to Wally on Thu Dec 23 08:58:57 2021
    On Thursday, December 23, 2021 at 1:52:50 AM UTC+2, Wally wrote:
    Is anyone experienced in building an Android app that would scan a barcode and talk to a Windows server where a dbf file exists to update the dbf?

    What I would like is to have an Android based barcode scanner. Scan the stock number, tell me where in the warehouse the product should be stored.

    Or scan the stock number and update it's warehouse location.

    Two modules:
    1. Mobile application (client) built in Android Studio or Visual Studio, or no-code solution like App Inventor, or a JavaScript app
    - when started for the first time, the app requests permission to access the cam
    - uses REST API calls to communicate with the server application (middleware)

    2. The middleware is receiving calls from the client (exposing the REST API endpoints to authenticated users), and is accomplishing the necessary operations in your database (whatever data store you have).

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From dlzc@21:1/5 to Wally on Thu Dec 23 08:59:34 2021
    Dear Wally:

    On Wednesday, December 22, 2021 at 4:52:50 PM UTC-7, Wally wrote:
    Is anyone experienced in building an Android app that would scan
    a barcode and talk to a Windows server where a dbf file exists to
    update the dbf?

    What I would like is to have an Android based barcode scanner. Scan
    the stock number, tell me where in the warehouse the product should
    be stored.

    Or scan the stock number and update it's warehouse location.

    Not telling you anything you probably don't already know, but most QR scanners on phones generate an "internet address" and pass it on to a browser session. Easiest to ride the horse in the direction it is going.

    So if you had a local web server, accessible over your local network, you could have it serve up a database view / edit screen to display in the phone's browser session.

    Is your database and possible server located in the same facility, in the same set of IP addresses?

    No I cannot help with developing your app. Just trying to get juices flowing.

    David A. Smith

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)