HTML5-Client: RDP-Sitzungsauflösung auf mobilen Geräten
La resolución de pantalla común de la mayoría de los dispositivos, especialmente los teléfonos móviles, es 320x480, pero eso obviamente no es suficiente para crear la sesión RDP.
Therefore the resolution was preset to 800 in width. The height of resolution gets recomputed by hidden browsers native logic. The higher the width the bigger the height.
- As an example, standard resolution is 320x480, now when you set the viewport to 800, the browser recomputes the value for height for example to 800x904, when you set the width to 1280, then it’s 1280x1160 etc.
La altura y el ancho dependen de la vista en paisaje/retrato de su dispositivo, como 800x904 o 904x800, etc. Cada navegador puede recalcularlo según su propia lógica para ajustar la pantalla RDP en el área visible de su dispositivo y puede diferir según el navegador, incluso cuando se utiliza en el mismo dispositivo.
If you set the height manually, then you will break the viewport ratio of your device and the final RDP session will be out of your port view, and to reach these areas you will have to scroll to wished positions.
- Therefore it is recommended not to set height manually, but let the device choose automatically the height.
If you need more height, increase the width! By testing on mobile phone devices, the good value for width was 800. Though you must pay attention: the CPUs on most mobile phones are usually slow, therefore when you increase the height, it will increase the CPU load. On tablet devices the CPUs are faster, therefore it is recommended to set the width to a higher value like 1280 and allow the device to recompute the value for height.
Porque algunos navegadores como FireFox móvil no permiten la configuración del viewport después de cargar la página, este valor se estableció de forma fija en el archivo Clients\www\software\html5.html.
For example, change it to:
to increase width and at the same time height recomputed by browsers' native internal logic.
As a second example, changing it to :
would break viewport area and RDP session would not fit the screen.