IFrames in Micros POS

I am currently working on a single proposal and am considering a solution.

The functionality that we are trying to achieve is to display the client profile in the format of a pop-up window (or iframe) when the hotel staff clicked the user profile button on the hotel reservation screen.

Here I look at a hotel reservation system using Micros 5 and Iframe / Popup to get to the web service at runtime to upload a customer profile.

Iframe can be opened as a separate one or in the same window, any things look good under the assumption.

I have no experience with Micros, and I have not found any documentation that could help me understand the feasibility of the solution.

If anyone has experience setting up Micros, any inputs would be helpful.

+2
source share
2 answers

It is not entirely true that the MICROS WS5 does not have Internet access.

It is true that most MICROS workstations are running Windows CE. Others use Microsoft POSready OS, which is based on Windows XP.

Old workstations CE CE 4.2, new workstations work CE 6.0. Both CE 4.2 and CE 6.0 come with a very old version of IE. You can write a CE executable that loads IE into a window and loads a web page. However, since IE is so old, it would be difficult, if not impossible, to download something like a modern web application.

ISL, also called SIM, is a specialized scripting language that is available for some, but not all, MICROS POS and PMS products. The availability of the SIM card interface depends on the POS product, not the workstation.

In cases where this is supported, ISL scripts are called directly from the POS software, either by referencing a touch screen button or by referencing events defined by the POS software. ISL gives you the ability to do things like start checking, add items, etc. These are not pretty, but rather complex POS add-ons written using ISL.

True, you can call the Windows DLL from ISL. In most cases, it would be necessary to have a version of the DLL for Win32 and CE (> = 4.2) if you are not sure that only CE workstations are used. It is also possible to directly run the Windows executable (again Win32 or CE) from ISL, rather than using a DLL.

+2
source

Hi, I received an answer to this question by Robert Johnson. Thanks.

Micros WS 5 terminals typically run CE 6.0 windows and do not have Internet access.
Custom applications must be developed using a special keystroke language called ISL to create SIM cards that can access DLLs (which must be CE 6.0).

Then applications need to send their request through the Micros server to the Internet.

+2
source

All Articles