i try to add generated item for the oracle lob adapter and get this error: Connecting to the LOB system has failed.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 should 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 should be upper case: "SCOTT".
原來是要求使用者名稱必須大寫
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?