我想建立一个方案,以自动方式向许多表格(千)提交相同/相似的数据。
我想做的是,在屏幕上制作和展示网络表格(在用户填充帽子和表格之前),一部分是通过网络浏览器进行的,该浏览器是桌面仪器的一部分。 每一份表格的回复都由台式机显示,台式机然后使用网络机向下一套表格(必须提交数据)。
我的问题
- Is it possible to do the above?
- How does the desktop app talk to web app? Any examples you can give me on this. or any tutorials/guides? What I am thinking is, there is a simple button in the desktop app that indicates "success" or "failure" of a form submission- as per the button clicked by user, appropriate message (whether to proceed to next site in case of "success" or reload current site in case of "failure") is sent to web app by the desktop app. How do I actually implement this? How can the desktop app send messages to the web app that cannot be reverse engineered or hacked into?
- Ideally I want that even if a hacker reverse engineers the desktop app, he should not be able to hack into the web app portion. (Since the web app portion does a crucial part of the work, so hacking the desktop app portion will not be any help in reverse engineering the whole application)...
- Finally is it possible to do all of the above if I use Google App Engine for the web app portion?