Skip to Content
0
Former Member
Jul 05, 2007 at 09:37 PM

how to get Oracle JDBC system mapped user info?

22 Views

I have created Oracle JDBC system (user mapping also) using system admin in portal and tested my connection. Now trying to get mapped user info using UME API's. Below are the steps I am following

ISystemLandscapeObject sysObj = systemLandscape.getSystemByAlias("xxxxxxxxxxx");

IUserMappingData mapData = userMapping.getUserMappingData(sysObj, user);

Properties jcoProperties = new Properties();

mapData.enrich(jcoProperties);

when check jcoProperties getting below responses

jcoProperties.getProperty(IUserMappingData.UMAP_USER) - null

jcoProperties.getProperty(IUserMappingData.UMAP_PASSWORD) - null

jcoProperties.getProperty(IUserMappingData.UMAP_JCO_USER) - $MYSAPSSO2$

jcoProperties.getProperty(IUserMappingData.UMAP_JCO_PASSWORD) - encrypted password

Why my UMAP_USER and UMAP_PASSWORD are null? How to get Oracle JDBC system mapped user info?