ZXing Barcode Scanner for Webapps

syscomp

New Member
I'm trying to use http://zxing.appspot.com/scan to call Barcode Scanner from a WebApp, but I can't get it to work. Even after needlessly updating and reinstalling it, all it does is show the default zxing webpage that asks me to install Barcode Scanner on my phone. Am I missing something?Here's the javascript I'm using to call ZXing Scanner. For test purposes, I've even tried to make a simple HTML hyperlink, without success. I'm using Android's \[code\]WebView\[/code\] to load the app.\[code\]window.location.href = "http://zxing.appspot.com/scan?ret=http://192.168.1.33:3000/pallet/{CODE}/change_position/"+positionId+"&SCAN_FORMATS=CODE_39";\[/code\]And this is the Barcode Scanner's manifest that identifies and triggers the scanner through browser:\[code\]<intent-filter> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="http" android:host="zxing.appspot.com" android:path="/scan"/></intent-filter>\[/code\]Funny thing is, \[code\]http://www.google.com/m/products/scan\[/code\], that does the same thing, works perfectly. Any help or idea is very welcome! Thanks a lot!
 
Top