You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a bug if you try to authenticate against a server:
"The method authenticate(String, char[]) in the type DB is not applicable for the argument (String, String)"
We had the same issue and your solution solved it :-)
However, it seems that Talend does not authenticate anyway. We get an error on every collection saying that we are not authorized. While if we use a different tool (e.g. Robomongo) with the same credentials, everything works fine...
Did you succesfully connect to a collection, in the end?
There's a bug if you try to authenticate against a server:
"The method authenticate(String, char[]) in the type DB is not applicable for the argument (String, String)"
According to this javadoc authenticate wants a charArray not string
http://api.mongodb.org/java/2.6.3/com/mongodb/DB.html#DB(com.mongodb.Mongo, java.lang.String)
In the file tMongoDBConnection_begin.javajet - change the last part to
The text was updated successfully, but these errors were encountered: