Github user uvtrip commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/194#discussion_r174724059
--- 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 --
this will only work in the 1st time, on all other times as the field in
config already exists with the values, it will not replace it with the latest
user input
---