I try to add generated item for the oracle lob adapter and get this error: Connecting to the LOB system has failure. ORA-1017: invalid name/password
After a lot of searching I found the problem:
User name. The Oracle Database adapter preserves the case of the value that you enter for the user name when it opens a connection on the Oracle database. user names on the Oracle database are case-sensitive. you shoshould ensure that you provide Oracle user names to the Oracle Database adapter in the case expected by your Oracle database. typically, this means that the user name in the SCOTT/TIGER credential shocould be upper case: "SCOTT ".
The username must be capitalized.
From: http://itaitzur.blogspot.com/2008/08/connecting-to-lob-system-has-failedora.html
SqlPlus converts the username/password to upper case by default, while in the adapter, we don't convert them to upper case. can you try specifying the username and/or password in upper case in the adapter and see if that works?