{"id":3143,"date":"2013-06-10T02:51:00","date_gmt":"2013-06-10T00:51:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/"},"modified":"2013-06-10T02:51:00","modified_gmt":"2013-06-10T00:51:00","slug":"configuring-the-jboss-server-to-use-ssl-for-documentum-dfs","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/","title":{"rendered":"Configuring the JBoss server to use SSL for Documentum DFS"},"content":{"rendered":"<p><img decoding=\"async\" class=\"blog-image aligncenter\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg\" alt=\"\" \/><\/p>\n<p>To be compliant with the customer&#8217;s security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure:<\/p>\n<h3>1. Generate a keystore<\/h3>\n<p>Change it to a temporary location, e. g.\u00a0\/var\/tmp\/SSL:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">keytool -genkey -dname \"cn=dms.test.org, ou=DEV, o=NICE, l=Delemont, s=Switzerland, c=CH\" -keyalg \"rsa\" -validity 730 -alias tomcat -keysize 2048 -keystore dfs.keystore\nEnter keystore password:\u00a0 xxxx\nEnter key password for \n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 (RETURN if same as keystore password):\u00a0xxxx<\/pre>\n<p>Important:<\/p>\n<ul>\n<li>always use tomcat for the alias<\/li>\n<li>enter a validity value, otherwise it will be 90 days<\/li>\n<\/ul>\n<p>Warning: Due the Bugzilla issue 38217, both keystore and key passwords have to be the same!<\/p>\n<h3>2. Create a Certificate request<\/h3>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">keytool -certreq -alias tomcat -file jbossDfs.csr -keystore dfs.keystore\nEnter keystore password:\u00a0 xxxx\nEnter key password for xxxx<\/pre>\n<p>&nbsp;<\/p>\n<h3>3. Send the jbossDfs.csr file to the service that will signe the certificate<\/h3>\n<p>In our case, the customer has its own CA system and will return the signed certificate plus the trusted chain composed of root.cer and user.cer.<\/p>\n<h3>4. Import the certificates<\/h3>\n<p>Once all needed certificates are delivered, they can be imported into the keystore. Before importing the signed certificate, import the chain one.<\/p>\n<h4>4.1 Import the root certificate<\/h4>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">keytool -import -alias cert1 -file root.cer -keystore dfs.keystore\nEnter keystore password:\u00a0 xxxx\nOwner: CN=....\nIssuer: CN=....\nSerial number: .....\nValid from: Mon Feb 04 09:23:02 CET 2013 until: Wed Feb 04 09:33:01 CET 2037\nCertificate fingerprints:\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 MD5:\u00a0 94:40:.....\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 SHA1: D0:10:....Trust this certificate? [no]:\u00a0 yes\nCertificate was added to keystore<\/pre>\n<p>&nbsp;<\/p>\n<h4>4.2 Import the user certificate<\/h4>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">keytool -import -alias cert2 -file user.cer -keystore dfs.keystore\nEnter keystore password:\u00a0 xxxx\nCertificate was added to keystore<\/pre>\n<p>&nbsp;<\/p>\n<h4>4.3. Import the signed certificate<\/h4>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">keytool -import -trustcacerts -alias tomcat -file jbossDfs.cer -keystore dfs.keystore\nEnter keystore password:\u00a0 xxxx\nEnter key password for xxxx\nCertificate reply was installed in keystore<\/pre>\n<p>&nbsp;<\/p>\n<h3>5. Update server.xml to activate SSL<\/h3>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">cd $DOCUMENTUM_SHARED\/jboss4.2.0\/server\/DctmServer_MethodServer\/deploy\/jboss-web.deployer\/<\/pre>\n<p>With vi update server.xml:<\/p>\n<ul>\n<li>uncomment the SSL definition<\/li>\n<li>set SSLEnabled from false to true<\/li>\n<li>Change the default password &#8220;changeit&#8221; to the one you used to secure the keystore password:<\/li>\n<\/ul>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">maxThreads=\"150\" scheme=\"https\" secure=\"true\"\nkeystoreFile=\"${jboss.server.home.dir}\/conf\/dfs.keystore\" keystorePass=\"xxxx\"\nclientAuth=\"false\" sslProtocol=\"TLS\" \/&gt;<\/pre>\n<p>&nbsp;<\/p>\n<h3>6. Change the server.xml permission<\/h3>\n<p>If groups and users can read the file, change the file permission to allow only the owner to read\/write:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">chmod 600 server.xml<\/pre>\n<p>&nbsp;<\/p>\n<h3>7. Copy the keystore to the correct location<\/h3>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">cp\n\/var\/tmp\/SSL\/dfs.keystore\n$DOCUMENTUM_SHARED\/jboss4.2.0\/server\/DctmServer_MethodServer\/conf\/<\/pre>\n<p>&nbsp;<\/p>\n<h3>8. Restart the JBoss server<\/h3>\n<p>You can check the server.log to see if everything is starting fine.<\/p>\n<h3>9. Test it<\/h3>\n<p>Perform a test using\u00a0using the URL <a href=\"http:\/\/https\/\/dms.test.org:9082\/services\/core\/ObjectService\">https\/\/dms.test.org:9082\/services\/core\/ObjectService<\/a>.<br \/>\nThe JBoss server now should be ready to manage https requests!<br \/>\nPlease note that the client part is not covered in this post.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To be compliant with the customer&#8217;s security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure: 1. Generate a keystore Change it to a temporary location, e. g.\u00a0\/var\/tmp\/SSL: keytool -genkey -dname &#8220;cn=dms.test.org, ou=DEV, o=NICE, l=Delemont, s=Switzerland, c=CH&#8221; -keyalg &#8220;rsa&#8221; -validity 730 [&hellip;]<\/p>\n","protected":false},"author":24,"featured_media":3144,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[381,129,118,334,382],"type_dbi":[],"class_list":["post-3143","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-application-integration-middleware","tag-dfs","tag-documentum","tag-jboss","tag-middleware","tag-ssl"],"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>Configuring the JBoss server to use SSL for Documentum DFS - dbi Blog<\/title>\n<meta name=\"description\" content=\"To be compliant with the customer&#039;s security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure:\" \/>\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\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configuring the JBoss server to use SSL for Documentum DFS\" \/>\n<meta property=\"og:description\" content=\"To be compliant with the customer&#039;s security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure:\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2013-06-10T00:51:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"451\" \/>\n\t<meta property=\"og:image:height\" content=\"257\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"G\u00e9rard Wisson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"G\u00e9rard Wisson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 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\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/\"},\"author\":{\"name\":\"G\u00e9rard Wisson\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85\"},\"headline\":\"Configuring the JBoss server to use SSL for Documentum DFS\",\"datePublished\":\"2013-06-10T00:51:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/\"},\"wordCount\":298,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg\",\"keywords\":[\"DFS\",\"Documentum\",\"JBoss\",\"Middleware\",\"SSL\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/\",\"name\":\"Configuring the JBoss server to use SSL for Documentum DFS - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg\",\"datePublished\":\"2013-06-10T00:51:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85\"},\"description\":\"To be compliant with the customer's security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure:\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg\",\"width\":451,\"height\":257},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configuring the JBoss server to use SSL for Documentum DFS\"}]},{\"@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\/ad54b5e621903122c00c6b7921c6ab85\",\"name\":\"G\u00e9rard Wisson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g\",\"caption\":\"G\u00e9rard Wisson\"},\"description\":\"G\u00e9rard Wisson has more than ten years of experience in Enterprise Content Management (ECM) with Documentum as well as in Oracle WebLogic and Java EE \/ J2EE infrastructures. He is specialized in ECM infrastructure services such as installation, upgrade, high availability, and administration as well as in Oracle WebLogic services such as installation, configuration, and management. He is very experienced in the monitoring and optimization of Java EE \/ J2EE infrastructures with Grid\/Cloud Control and JVMD. G\u00e9rard Wisson is certified Oracle Weblogic Server 11g System Administrator and Oracle Certified Associate. Prior to joining dbi services, G\u00e9rard Wisson was Senior Consultant at Solfit in Basel. He holds a diploma in Electrical Engineering from the University of Strasbourg (F). His branch-related experience covers Financial Services \/ Banking, Chemicals &amp; Pharmaceuticals, etc.\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/gerard-wisson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Configuring the JBoss server to use SSL for Documentum DFS - dbi Blog","description":"To be compliant with the customer's security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure:","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\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/","og_locale":"en_US","og_type":"article","og_title":"Configuring the JBoss server to use SSL for Documentum DFS","og_description":"To be compliant with the customer's security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure:","og_url":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/","og_site_name":"dbi Blog","article_published_time":"2013-06-10T00:51:00+00:00","og_image":[{"width":451,"height":257,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg","type":"image\/jpeg"}],"author":"G\u00e9rard Wisson","twitter_card":"summary_large_image","twitter_misc":{"Written by":"G\u00e9rard Wisson","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/"},"author":{"name":"G\u00e9rard Wisson","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85"},"headline":"Configuring the JBoss server to use SSL for Documentum DFS","datePublished":"2013-06-10T00:51:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/"},"wordCount":298,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg","keywords":["DFS","Documentum","JBoss","Middleware","SSL"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/","url":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/","name":"Configuring the JBoss server to use SSL for Documentum DFS - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg","datePublished":"2013-06-10T00:51:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85"},"description":"To be compliant with the customer's security rule, I had to configure SSL for a JBoss application server that holds the Documentum Foundation Services (DFS). I used the following procedure:","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2e1ax_default_entry_JBoss_by_Red_Hat.jpg","width":451,"height":257},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/configuring-the-jboss-server-to-use-ssl-for-documentum-dfs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Configuring the JBoss server to use SSL for Documentum DFS"}]},{"@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\/ad54b5e621903122c00c6b7921c6ab85","name":"G\u00e9rard Wisson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g","caption":"G\u00e9rard Wisson"},"description":"G\u00e9rard Wisson has more than ten years of experience in Enterprise Content Management (ECM) with Documentum as well as in Oracle WebLogic and Java EE \/ J2EE infrastructures. He is specialized in ECM infrastructure services such as installation, upgrade, high availability, and administration as well as in Oracle WebLogic services such as installation, configuration, and management. He is very experienced in the monitoring and optimization of Java EE \/ J2EE infrastructures with Grid\/Cloud Control and JVMD. G\u00e9rard Wisson is certified Oracle Weblogic Server 11g System Administrator and Oracle Certified Associate. Prior to joining dbi services, G\u00e9rard Wisson was Senior Consultant at Solfit in Basel. He holds a diploma in Electrical Engineering from the University of Strasbourg (F). His branch-related experience covers Financial Services \/ Banking, Chemicals &amp; Pharmaceuticals, etc.","url":"https:\/\/www.dbi-services.com\/blog\/author\/gerard-wisson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/3143","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\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=3143"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/3143\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/3144"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=3143"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=3143"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=3143"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=3143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}