{"id":15103,"date":"2020-11-29T09:02:38","date_gmt":"2020-11-29T08:02:38","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/"},"modified":"2024-09-10T17:32:17","modified_gmt":"2024-09-10T15:32:17","slug":"using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/","title":{"rendered":"Using LDAP resolved connection descriptor in WebLogic JDBC data sources."},"content":{"rendered":"<p>I got the question if it is possible to have a the WebLogic JDBC Data Source to be resolved by an LDAP entry. The answer is yes; since WebLogic 12.2.1.3 a JDBC connection pool URL declaration can point to an LDAP entry.<\/p>\n<p>This can be done by simply editing an existing JDBC data source.  <\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1 highlight: [1]\">jdbc:oracle:thin:@ldap:\/\/vm01.dbi-workshop.com:1389\/cn=orcl,cn=OracleContext,dc=DatabaseConnection,dc=com<\/pre>\n<p><img decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png\" alt=\"WebLogic_JDBC_Connection_pool\" \/><\/p>\n<p>Of course the LDAP server needs to have been configured to store the TNS entries. I explained how to do this in one of my previous blogs: <a href=\"https:\/\/www.dbi-services.com\/blog\/how-to-declare-tns-entries-in-oracle-unified-directory-oud\/\">how-to-declare-tns-entries-in-oracle-unified-directory-oud<\/a><br \/>\nOr it can be done using WLST scripts.<br \/>\nFirst a properties file<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1 highlight: []\"> DS_NAME=MyLDAPDatasource\nJNDIName=jdbc\/MyLDAPDatasource\nTEST_TABLE_QUERY=SQL SELECT 1 FROM DUAL\nJDBC_DRIVER=oracle.jdbc.OracleDriver\nTARGET=Server1\nJDBC_URL=jdbc:oracle:thin:@ldap:\/\/vm01.dbi-workshop.com:1389\/cn=orcl,cn=OracleContext,dc=DatabaseConnection,dc=com\nDB_USER=USER01\nDB_USER_PASSWORD=Welcome1\nPOOL_MIN_CAPACITY=10\nPOOL_MAX_CAPACITY=100\nPOOL_INITIAL_CAPACITY=1\nPOOL_STATEMENT_CACHE=10           \nXA_TRANSACTION_TIMEOUT=7200\nXA_RETRY_INTERVAL_SECONDS=60\nXA_RETRY_DURATION_SECONDS=300\nJDBC_DEBUG_LEVEL=10\n<\/pre>\n<p>and then the python script<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1 highlight: []\">#read the domain properties file\ntry:\n  print \"Load properties file\"\n  properties =  os.environ[\"WEBLOGIC_DOMAIN_DEF_DIR\"] + \"\/\" + os.environ[\"WEBLOGIC_DOMAIN\"] + \"\/domain.properties\"\n  print properties\n  loadProperties(properties)\nexcept :\n  print \"unable to load domain.properties file\"\n#  exit(exitcode=1)\n\ntry:\n  jdbcProperties=os.path.realpath(os.path.dirname(sys.argv[0])) + \"\/JDBC_Datasource.properties\"\n  print jdbcProperties\n  loadProperties(jdbcProperties)\n\nexcept :\n  print \"Unable to load JDBC_Camunda.properties\"\n  exit(exitcode=1)\n\n#AdminUser=raw_input('Please Enter WebLogic Domain Admin user Name: ')\n#AdminPassword= \"\".join(java.lang.System.console().readPassword(\"%s\", ['Please enter WebLogic Domain Admin user password:']))\n\n\ntry:\n    #Connect to AdminServer\n    connect(userConfigFile=CONFIG_FILE,userKeyFile=KEY_FILE,url=ADMIN_URL)\n    #connect(url=ADMIN_URL)\n    #connect(AdminUser,AdminPassword,ADMIN_URL)\n    #connect()\n    #connect('weblogic','Welcome1')\nexcept:\n    print \"Unable to connect\"\n    exit(exitcode=1)\n\t\ntry: \n    edit()\n    startEdit()\n\n    cd('\/')\n    cmo.createJDBCSystemResource(DS_NAME)\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME)\n    cmo.setName(DS_NAME)\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCDataSourceParams\/'+DS_NAME)\n\n    print \"Setting JNDI Names\"\n    set('JNDINames',jarray.array([String(JNDIName)], String))\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME)\n    cmo.setDatasourceType('GENERIC')\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCDriverParams\/'+DS_NAME)\n\n    print \"Setting JDBC URL\"\n    cmo.setUrl(JDBC_URL)\n\n    print \"Setting Driver Name\"\n    cmo.setDriverName(JDBC_DRIVER)\n    \n    print \"Setting Password\"\n    set('Password', DB_USER_PASSWORD)\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCConnectionPoolParams\/'+DS_NAME)\n    cmo.setTestTableName(TEST_TABLE_QUERY)\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCDriverParams\/'+DS_NAME+'\/Properties\/'+DS_NAME)\n    cmo.createProperty('user')\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCDriverParams\/'+DS_NAME+'\/Properties\/'+DS_NAME+'\/Properties\/user')\n    cmo.setValue(DB_USER)\n\n    cd('\/JDBCSystemResources\/'+DS_NAME)\n    set('Targets',jarray.array([ObjectName('com.bea:Name='+TARGET+',Type=Server')], ObjectName))\n   \n    print \"Saving and activating changes\"\n    save()    \n    activate()\n\nexcept Exception, e:\n    dumpStack()\n    print \"ERROR 2... check error messages for cause.\"\n    print e\n    dumpStack()\n    stopEdit(defaultAnswer='y')\n    exit(exitcode=1)\n\t\ntry: \n    edit()\n    startEdit()\n\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCDriverParams\/'+DS_NAME+'\/Properties\/'+DS_NAME+'\/Properties\/user')\n    cmo.unSet('SysPropValue')\n    cmo.unSet('EncryptedValue')\n    cmo.setValue(DB_USER)\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCConnectionPoolParams\/'+DS_NAME)\n    cmo.setInitialCapacity(long(POOL_INITIAL_CAPACITY))\n    cmo.setMinCapacity(long(POOL_MIN_CAPACITY))\n    cmo.setStatementCacheSize(long(POOL_STATEMENT_CACHE))\n    cmo.setMaxCapacity(long(POOL_MAX_CAPACITY))\n    cmo.setStatementCacheType('LRU')\n    cd('\/JDBCSystemResources\/'+DS_NAME+'\/JDBCResource\/'+DS_NAME+'\/JDBCDataSourceParams\/'+DS_NAME)\n    cmo.setGlobalTransactionsProtocol('OnePhaseCommit')\n       \n    save()\n    activate()\n\nexcept Exception, e:\n    print \"ERROR... check error messages for cause.\"\n    print e\n    stopEdit(defaultAnswer='y')\n    exit(exitcode=1)\n\t\nexit(exitcode=0)\n<\/pre>\n<p>This script and properties file can be used to create the JDBC connection on one WebLogic Server defined as TARGET in the properties file.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I got the question if it is possible to have a the WebLogic JDBC Data Source to be resolved by an LDAP entry. The answer is yes; since WebLogic 12.2.1.3 a JDBC connection pool URL declaration can point to an LDAP entry. This can be done by simply editing an existing JDBC data source. jdbc:oracle:thin:@ldap:\/\/vm01.dbi-workshop.com:1389\/cn=orcl,cn=OracleContext,dc=DatabaseConnection,dc=com [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":15104,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[1319,1547,647],"type_dbi":[],"class_list":["post-15103","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-application-integration-middleware","tag-jdbc","tag-ldap","tag-weblogic"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Using LDAP resolved connection descriptor in WebLogic JDBC data sources. - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using LDAP resolved connection descriptor in WebLogic JDBC data sources.\" \/>\n<meta property=\"og:description\" content=\"I got the question if it is possible to have a the WebLogic JDBC Data Source to be resolved by an LDAP entry. The answer is yes; since WebLogic 12.2.1.3 a JDBC connection pool URL declaration can point to an LDAP entry. This can be done by simply editing an existing JDBC data source. jdbc:oracle:thin:@ldap:\/\/vm01.dbi-workshop.com:1389\/cn=orcl,cn=OracleContext,dc=DatabaseConnection,dc=com [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-29T08:02:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-10T15:32:17+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1646\" \/>\n\t<meta property=\"og:image:height\" content=\"911\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Middleware Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Middleware Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/\"},\"author\":{\"name\":\"Middleware Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"headline\":\"Using LDAP resolved connection descriptor in WebLogic JDBC data sources.\",\"datePublished\":\"2020-11-29T08:02:38+00:00\",\"dateModified\":\"2024-09-10T15:32:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/\"},\"wordCount\":132,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png\",\"keywords\":[\"jdbc\",\"ldap\",\"WebLogic\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/\",\"name\":\"Using LDAP resolved connection descriptor in WebLogic JDBC data sources. - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png\",\"datePublished\":\"2020-11-29T08:02:38+00:00\",\"dateModified\":\"2024-09-10T15:32:17+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png\",\"width\":1646,\"height\":911,\"caption\":\"WebLogic_JDBC_Connection_pool\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using LDAP resolved connection descriptor in WebLogic JDBC data sources.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\",\"name\":\"Middleware Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"caption\":\"Middleware Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Using LDAP resolved connection descriptor in WebLogic JDBC data sources. - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/","og_locale":"en_US","og_type":"article","og_title":"Using LDAP resolved connection descriptor in WebLogic JDBC data sources.","og_description":"I got the question if it is possible to have a the WebLogic JDBC Data Source to be resolved by an LDAP entry. The answer is yes; since WebLogic 12.2.1.3 a JDBC connection pool URL declaration can point to an LDAP entry. This can be done by simply editing an existing JDBC data source. jdbc:oracle:thin:@ldap:\/\/vm01.dbi-workshop.com:1389\/cn=orcl,cn=OracleContext,dc=DatabaseConnection,dc=com [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/","og_site_name":"dbi Blog","article_published_time":"2020-11-29T08:02:38+00:00","article_modified_time":"2024-09-10T15:32:17+00:00","og_image":[{"width":1646,"height":911,"url":"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png","type":"image\/png"}],"author":"Middleware Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Middleware Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/"},"author":{"name":"Middleware Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"headline":"Using LDAP resolved connection descriptor in WebLogic JDBC data sources.","datePublished":"2020-11-29T08:02:38+00:00","dateModified":"2024-09-10T15:32:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/"},"wordCount":132,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png","keywords":["jdbc","ldap","WebLogic"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/","url":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/","name":"Using LDAP resolved connection descriptor in WebLogic JDBC data sources. - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png","datePublished":"2020-11-29T08:02:38+00:00","dateModified":"2024-09-10T15:32:17+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/WebLogic_JDBC_Connection_pool.png","width":1646,"height":911,"caption":"WebLogic_JDBC_Connection_pool"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/using-ldap-resolved-connection-descriptor-in-weblogic-jdbc-data-sources\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Using LDAP resolved connection descriptor in WebLogic JDBC data sources."}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1","name":"Middleware Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","caption":"Middleware Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/15103","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=15103"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/15103\/revisions"}],"predecessor-version":[{"id":34686,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/15103\/revisions\/34686"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/15104"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=15103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=15103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=15103"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=15103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}