I have retail POS (Place of service) system implemented in .net and java swing versions. This is desktop application. Is it possible to integrate this into Web portal/application using some EAI/ middleware tools? or is there any approach to make it online with out redeveloping UI?
Asked
Active
Viewed 1,080 times
1 Answers
0
What kind of integration are you talking about? If about accessing data from/to then that should be feasible and there can be plenty of approach/tools/solutions for the same.
or is there any approach to make it online with out redeveloping UI?
You can look at virtualized applications/desktops solutions (e.g Citrix XenApp, VMware Desktop as Service) where your desktop applications can be made available over internet.

VinayC
- 47,395
- 5
- 59
- 72
-
Thanks. IF it is about accessing data then what approach or tools can be used? Do I need to re write UI using ASP/JSP/HTML in such a case?. I am not looking for application virtualization solutions. – indra Nov 09 '10 at 09:21
-
@indra, scope of what you have to do is unclear. Do you want to share some data from POS system with *other* web application or you want to recreate POS UI (complete or part of) on web based platform. If later then UI had to be re-written. You may able to use existing business logic based on POS code organization. If there is separate well written business layer then re-using it is possible and simpler. If you have business logic in a separate tier (AppServer kind of setup) then job is even simpler. Both native UI and web UI can use same tier to update/access data. – VinayC Nov 09 '10 at 09:52
-
POS does not share data with other application. It talks to a DB. Thanks for the clarification. – indra Nov 09 '10 at 10:20