We have an application running on Motorola FX7500 RFID reader. Everything works fine except auto-start. Looks like start_appname.sh is executed but application doesn't even start. Is there any way to debug application startup? Or to find fail reason in log files?
Thank you!
The autostart function is not working on firmware version 1.2.9
You should update to firmware version 1.2.10 (this is not yet available on the www.motorolasolutions.com website)
You should be able to get the new firmware from the Motorola helpdesk.
Hope this helps you.
1.2.10 is available on request to Moto helpdesk. It will not be postet, the fix will be incorporated into next official image release.
I'am working with Motorola RFID FX7400 and works for me.
Install your application on \\Application.
Use Active Sync Remote Display to view the screen of the reader.
On your computer copy and paste into notepad and save has *.reg
[HKEY_CURRENT_USER\Software\Symbol\StartUp\Programs\Prog19]
"Name"="\\Application\\MyFolder\\MyApp.exe"
"Command"=""
"Continue"=dword:1
"ColdBootOnly"=dword:0
Put the file on the reader \Application and run it.
I'am from Mexico, sorry for my english.
Related
I try to run my P2P NFC project in nokia 6212 emulator. but the application is not showing on the emulator screen.
so, my question is it is possible to create an application for nokia6212. if it does then kindly inform me the steps.
actually, m running my p2p java projects in eclipse. Please help me
Thanks
The answer: Yes.
Take a look at this example.
All needed steps, including code examples, getting started, tutorials, etc.. are here.
how to do the connection for NFC in j2me emulator.
If anyone has already work on this project kindly help me to figure out the problem,
and please shared me if you have any demo code related to this project.
Thanks
The NFC J2ME implementation is JSR-257 Contactless Communication API. I suppose you are using WTK 2.5.2_01.
From that link you can see that there are ~20 modules supported out-of-the-box, but not the JSR-257, so you'll have to load it in the emulator.
This answer has a command line solution, but there should be the possibility to load it from the Netbeans GUI.
Try the Nokia 6212 NFC emulator. I've developed with it on Windows Vista. Seems to work on Windows 7 too... http://developer.nokia.com/info/sw.nokia.com/id/5bcaee40-d2b2-4595-b5b5-4833d6a4cda1/S40_Nokia_6212_NFC_SDK.html
I am brand new to the play framework and could use a little bit of help understanding first why the play framework is useful, and how to install and use it on windows vista. The project that I will be working on will be to make a custom API that will power a photo sharing software to be accessed by mobile and desktop devices. I tried to go through the installation guide on the play website but I couldn't get it to work (unfortunately i'm not very good when it comes to manual installations in the command line on windows).
I would like to be able to run one of the sample projects included, but I am unsure of how to get the play command installed on the command line to run it. Any help would be greatly appreciated. Thanks in advance.
open a command window then type :
c://pathtoplaydirectory/play
Well i `ve made an app using java me and as graphics i used lwuit library which i added into the midlet`s jar. On Nokia it runs smooth and i wanted to port it to android. So i found out about microemulator http://microemu.blogspot.ro/2008/11/running-java-me-applications-on-android.html and i followed those steps and i got the apk. However when i run it into the Android Emulator it closes at start. I don`t know what may be the problem because i was able to convert the demo jar app into apk and it ran succesfuly.
Any ideas on what should i do?
I suggest you port your application to Codename One which should be pretty simple. It has proper Android support which will make your application look and act native on Android.
My developed android application can run on emulator fine but when I export it to .apk and install to my galaxy S it very slow to show any content.
My application have to connect with web service and database that run on localhost. I try to move web service and database to another host that faster but it doesn't solve my problem. Any one can suggest me what should I do?
Thank you for any suggestion.
Ps. I develop my application by using Java with Eclipse and Tomcat
Use traceview to inspect which parts of your code are slow. Than optimize those parts.
If you use slow external services (network calls) you might want to use AsyncTask to run them in the background. Also, it's good practice to show some kind of progress notification to the user so that they know something is being worked on.
To find the bottleneck of the program, use Traceview on the device. It can be started very easily in the Eclipse IDE.
Most likely you are running the Emulator sharing the high-speed connection of your PC running the emulator. The device will have lower bandwith and also a large delay.
Most time is usally spent receiving data. Compressing transfers thus actually speeds up the app. Compressing the answer is straight-forward both on the server and the client, see for example this answer.
If this is not enough you need to look through what is sent from the server and see if some things can be pre-fetched or omitted.
Database operations in Samsung Galaxy S are terribly slow (especially after 2.2 update). If the app performance is fine on the emulator then it should work fine on other devices too
You will have to elaborate on this a lot! Sounds like you are using an outside DB. how are you interacting with it? Async? how is the data being passed around?
Need more info.