<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Java Code Geeks &#187; Mainak Goswami</title> <atom:link href="http://www.javacodegeeks.com/author/Mainak-Goswami/feed" rel="self" type="application/rss+xml" /><link>http://www.javacodegeeks.com</link> <description>Java 2 Java Developers Resource Center</description> <lastBuildDate>Fri, 24 May 2013 09:37:01 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.5.1</generator> <item><title>Secure Web Application in Java EE6 using LDAP</title><link>http://www.javacodegeeks.com/2013/05/secure-web-application-in-java-ee6-using-ldap.html</link> <comments>http://www.javacodegeeks.com/2013/05/secure-web-application-in-java-ee6-using-ldap.html#comments</comments> <pubDate>Wed, 22 May 2013 16:00:32 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Enterprise Java]]></category> <category><![CDATA[Java EE6]]></category> <category><![CDATA[LDAP]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=13096</guid> <description><![CDATA[In our previous article we have explained on how to protect the data while it is in transit through Transport Layer Security (TLS)/Secured Socket Layer (SSL). Now let us try to understand how to apply security mechanism for a JEE 6 based web application using LDAP server for authentication. Objective: •    Configure a LDAP realm [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/05/secure-web-application-in-java-ee6-using-ldap.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>OpenDS: How to install and configure LDAP server?</title><link>http://www.javacodegeeks.com/2013/05/opends-how-to-install-and-configure-ldap-server.html</link> <comments>http://www.javacodegeeks.com/2013/05/opends-how-to-install-and-configure-ldap-server.html#comments</comments> <pubDate>Mon, 20 May 2013 19:00:30 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[DevOps]]></category> <category><![CDATA[OpenDS]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=13000</guid> <description><![CDATA[What is LDAP? “LDAP stands for Lightweight Directory Access Protocol used for accessing and maintaining distributed directory information services over an Internet Protocol network.” Why is LDAP used? LDAP is used for accessing a directory which can consist of a set of objects, users, groups, login, passwords, permissions etc. Its practical use is more in [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/05/opends-how-to-install-and-configure-ldap-server.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Understanding Transport Layer Security / Secure Socket Layer</title><link>http://www.javacodegeeks.com/2013/04/understanding-transport-layer-security-secure-socket-layer.html</link> <comments>http://www.javacodegeeks.com/2013/04/understanding-transport-layer-security-secure-socket-layer.html#comments</comments> <pubDate>Fri, 19 Apr 2013 16:19:35 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Software Development]]></category> <category><![CDATA[Security]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=11536</guid> <description><![CDATA[Transport Layer Security (TLS) 1.0 / Secure Sockets Layer (SSL) 3.0, is the mechanism to provide private, secured and reliable communication over the internet. It is the most widely used protocols that provides secure HTTPS for internet communications between the client (web browsers) and web servers. It ensures that the transport of sensitive data are [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/04/understanding-transport-layer-security-secure-socket-layer.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Singleton Design Pattern &#8211; An introspection and best practices</title><link>http://www.javacodegeeks.com/2013/02/singleton-design-pattern-an-introspection-and-best-practices.html</link> <comments>http://www.javacodegeeks.com/2013/02/singleton-design-pattern-an-introspection-and-best-practices.html#comments</comments> <pubDate>Wed, 13 Feb 2013 20:18:32 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Design Patterns]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=8545</guid> <description><![CDATA[Definition: Singleton is a part of Gang of Four design pattern and it is categorized under creational design patterns. In this article we are going to take a deeper look into the usage of the Singleton pattern. It is one of the most simple design pattern in terms of the modelling but on the other [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2013/02/singleton-design-pattern-an-introspection-and-best-practices.html/feed</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Decorate with decorator design pattern</title><link>http://www.javacodegeeks.com/2012/12/decorate-with-decorator-design-pattern.html</link> <comments>http://www.javacodegeeks.com/2012/12/decorate-with-decorator-design-pattern.html#comments</comments> <pubDate>Wed, 12 Dec 2012 20:00:33 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Design Patterns]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=5338</guid> <description><![CDATA[Decorator pattern is one of the widely used structural patterns. This pattern dynamically changes the functionality of an object at runtime without impacting the existing functionality of the objects. In short this pattern adds additional functionalities to the object by wrapping it. Problem statement: Imagine a scenario where we have a pizza which is already [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/12/decorate-with-decorator-design-pattern.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Facade Design Pattern &#8211; Design standpoint</title><link>http://www.javacodegeeks.com/2012/11/facade-design-pattern-design-standpoint.html</link> <comments>http://www.javacodegeeks.com/2012/11/facade-design-pattern-design-standpoint.html#comments</comments> <pubDate>Thu, 22 Nov 2012 20:00:24 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Design Patterns]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3533</guid> <description><![CDATA[In our previous article we have described about the Adapter Design Pattern. In today’s article we are going to show about another such Gang of Four Structural patterns. As the name suggests structural pattern is used to form a larger object structure from many different objects. Façade pattern is one such pattern which provides a [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/facade-design-pattern-design-standpoint.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Gang of Four &#8211; Proxy Design Pattern</title><link>http://www.javacodegeeks.com/2012/11/gang-of-four-proxy-design-pattern.html</link> <comments>http://www.javacodegeeks.com/2012/11/gang-of-four-proxy-design-pattern.html#comments</comments> <pubDate>Mon, 12 Nov 2012 08:00:35 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Design Patterns]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=3127</guid> <description><![CDATA[Proxy is another Structural design pattern which works ‘on behalf of’ or ‘in place of’ another object in order to access the later. When to use this pattern? Proxy pattern is used when we need to create a wrapper to cover the main object’s complexity from the client. What are the usage scenarios? Virtual Proxy [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/gang-of-four-proxy-design-pattern.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Deep diving into Cloning</title><link>http://www.javacodegeeks.com/2012/11/deep-diving-into-cloning.html</link> <comments>http://www.javacodegeeks.com/2012/11/deep-diving-into-cloning.html#comments</comments> <pubDate>Wed, 07 Nov 2012 14:00:07 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Cloning]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=2975</guid> <description><![CDATA[Before we proceed with the cloning concept let’s refresh our basics with the object creation concept. When the objects are created using the new operator the objects gets the memory allocation in the Heap. In Java ideally objects are modified through reference variable only i.e. only the memory address of the object is copied and [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/deep-diving-into-cloning.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>By your Command &#8211; Command design pattern</title><link>http://www.javacodegeeks.com/2012/11/by-your-command-command-design-pattern.html</link> <comments>http://www.javacodegeeks.com/2012/11/by-your-command-command-design-pattern.html#comments</comments> <pubDate>Mon, 05 Nov 2012 23:30:58 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Design Patterns]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=2893</guid> <description><![CDATA[Command design pattern is one of the widely known design pattern and it falls under the Behavioral Design Pattern (part of Gang of Four). As the name suggests it is related to actions and events in an application. &#160; Problem statement: Imagine a scenario where we have a web page will multiple menus in it. [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/by-your-command-command-design-pattern.html/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Prototype Design Pattern: Creating another dolly</title><link>http://www.javacodegeeks.com/2012/11/prototype-design-pattern-creating-another-dolly.html</link> <comments>http://www.javacodegeeks.com/2012/11/prototype-design-pattern-creating-another-dolly.html#comments</comments> <pubDate>Fri, 02 Nov 2012 14:33:24 +0000</pubDate> <dc:creator>Mainak Goswami</dc:creator> <category><![CDATA[Core Java]]></category> <category><![CDATA[Design Patterns]]></category><guid isPermaLink="false">http://www.javacodegeeks.com/?p=2813</guid> <description><![CDATA[It’s really a time consuming process to create objects and also an expensive affair. So we are now on a venture to save both time and money. How do we do that? Anybody remember about Dolly? Yes, it’s the sheep which was the first mammal to be cloned. Well I don’t want to dig into [...]]]></description> <wfw:commentRss>http://www.javacodegeeks.com/2012/11/prototype-design-pattern-creating-another-dolly.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/5 queries in 0.002 seconds using apc
Object Caching 1114/1118 objects using apc
Content Delivery Network via jcg.javacodegeeks.netdna-cdn.com

Served from: www.javacodegeeks.com @ 2013-05-24 12:47:20 -->