08 December, 2017

Create Servlet Project as Module

You would have seen that many times we are writing out own servlet in Liferay portal to achieve some specific use case. In DXP, You can still cont. with such implementation and here you will see how you can write your servlet application as module. Create liferay module type of API using developer studio or blade ci. In bnd file:  Bundle-Name: test-servlet Bundle-SymbolicName: TestServlet Bundle-Version: 1.0.0 Web-ContextPath: /test In build.gradle:  dependencies { compileOnly group: "javax.servlet", name: "javax.servlet-api",...

Liferay DXP clustering

Hello Friends, I am sure you would be looking for simple steps for DXP clustering. Note:Liferay 7 clustering you can visit https://community.liferay.com/news/new-clustering-code-for-liferay-portal-community/  Steps for Liferay DXP clustering : Liferay Setup: - Setup liferay DXP in 2 separate servers which can be accesses using separate IP - Both servers should be accessible to each other - Here we are not going to setup 2 DXP...

07 December, 2017

Liferay DXP setup with Weblogic

Download latest DXP version For Enterprise Edition, we need to download Liferay DXP  For Community Edition, we need to download Liferay Portal As we are using (EE ) Enterprise Edition, we will download Liferay DXP. Note:Download latest DXP server from Liferay customer portal, using the credentials provided by Liferay as part of licensing agreement. Download Liferay DXP’s WAR file and dependencies from the Customer Portal.  Go to Products>>Liferay DXP click on Downloads You’ll need the following files: · liferay-dxp-digital-enterprise-[version].war: Liferay DXP WAR file · liferay-dxp-digital-enterprise-dependencies-[version].zip: Liferay DXP dependencies · liferay-dxp-digital-enterprise-osgi-[version].zip: Liferay DXP OSGi dependencies Configuring...

04 December, 2017

Login Authentication Solutions

Hello Friends, This article will be helpful to you when you choose to customize login with various Liferay DXP supported authentication mechanism. And this is almost common requirement for each implementations so I will provide all possible ways to customize login functionality based on my knowledge and provide solution. 1) Liferay OOB Login Customization Custom Module implementation 2) Custom Authentication Auto Login Basic Auth Header Auto...

19 July, 2017

REST Client OSGi Bundle

Hello Friends, If you are planing to create HTTP REST client using OSGi, Just follow the steps. 1) Create bundle project of type API using IDE 2) Write one Class called RestClient.java import org.apache.http.HttpEntity; import org.apache.http.HttpHost; import org.apache.http.auth.AuthScope; import org.apache.http.auth.UsernamePasswordCredentials; import org.apache.http.client.AuthCache; import org.apache.http.client.CredentialsProvider; import...

13 June, 2017

Captcha & reCaptcha with Liferay 7

If you are planning to integrate captcha in you liferay custom portlet then use below stuff view.jsp: <%@taglib uri="http://liferay.com/tld/captcha" prefix="liferay-captcha" %> <portlet:resourceURL id="/login/captcha" var="captchaURL"/> <liferay-captcha:captcha url="<%=captchaURL%>" /> Write CaptchaMVCResourceCommand.java : @Component(     property = {         "javax.portlet.name=test_portlet",    ...

Popular Posts

Featured Post

Liferay 7.3 compatibility matrix

Compatibility Matrix Liferay's general policy is to test Liferay Portal CE against newer major releases of operating systems, open s...