Github user uvtrip commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/194#discussion_r178046477
--- Diff:
guacamole-ext/src/main/java/org/apache/guacamole/net/auth/simple/SimpleConnection.java
---
@@ -98,6 +99,10 @@ public void setAttributes(Map<String, String>
attributes) {
public GuacamoleTunnel connect(GuacamoleClientInformation info)
throws GuacamoleException {
+ // Filter in connection-time information
+ TokenFilter tokenFilter = new TokenFilter();
+
tokenFilter.filterPrompts(config.getParameters(),info.getParameters());
--- End diff --
i think you should save the prompts per each configuration, and maybe
calculate them in advance
---