On Mon, Aug 31, 2020 at 8:14 AM Michał Kalinowski
<[email protected]> wrote:
> Hello,
>
> Recently I was trying to integrate Guacamole into my Spring application,
> but I encountered a Guacamole Exception just like in the description.
>
> I create tunnel just like in guide:
>
> protected GuacamoleTunnel doConnect(HttpServletRequest request)
> throws GuacamoleException {
>
> // Create our configuration
> GuacamoleConfiguration config = new GuacamoleConfiguration();
> config.setProtocol("vnc");
> config.setParameter("hostname", "localhost");
> config.setParameter("port", "5901");
>
>
I think this is your issue, here - the port number should be an integer
value, not a string.
-Nick