JDBC connection string

2018-11-01 Thread doyouhas
Hey guys,

Can someone familiar with the source let me know where the JDBC connection
string is generated? I am still trying to troubleshoot my RDS connection
issue. Appreciate if someone could help point me in the right direction.



--
Sent from: 
http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/


Re: JDBC connection string

2018-11-01 Thread Nick Couchman
> Can someone familiar with the source let me know where the JDBC connection
> string is generated?


There's no spot in the Guacamole code that actually generates the
connection string - this is abstracted to the MyBatis JDBCHelper code.  The
code that accomplishes this for the MySQL module is here:

https://github.com/apache/guacamole-client/blob/master/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-mysql/src/main/java/org/apache/guacamole/auth/mysql/MySQLAuthenticationProviderModule.java

-Nick