<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Playing with Liferay II</title>
	<atom:link href="http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/feed/" rel="self" type="application/rss+xml" />
	<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/</link>
	<description>An IBM Gold Consultant's weblog about IBM, Lotus, WebSphere, J2EE, IT Processes, and other IT technologies</description>
	<lastBuildDate>Thu, 17 Dec 2009 03:13:15 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Raj</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2359</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Mon, 28 Sep 2009 14:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2359</guid>
		<description>I need to integrate Liferay with our own custom authorization module. Is there any way to by pass LR authorization and plug in custom authorization?</description>
		<content:encoded><![CDATA[<p>I need to integrate Liferay with our own custom authorization module. Is there any way to by pass LR authorization and plug in custom authorization?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jignesh</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2135</link>
		<dc:creator>jignesh</dc:creator>
		<pubDate>Mon, 18 Aug 2008 10:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2135</guid>
		<description>hey can anybody help me to setup liferay with weblogic</description>
		<content:encoded><![CDATA[<p>hey can anybody help me to setup liferay with weblogic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajay</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2029</link>
		<dc:creator>Ajay</dc:creator>
		<pubDate>Tue, 10 Jun 2008 04:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2029</guid>
		<description>Hi sir,

i am working with Liferay.
i am trying to integrate wordpress blog with the Lliferay..
is it possible?if yes..please can u give the startup steps?

Thks in advance</description>
		<content:encoded><![CDATA[<p>Hi sir,</p>
<p>i am working with Liferay.<br />
i am trying to integrate wordpress blog with the Lliferay..<br />
is it possible?if yes..please can u give the startup steps?</p>
<p>Thks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jassi</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2022</link>
		<dc:creator>Jassi</dc:creator>
		<pubDate>Sat, 07 Jun 2008 06:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-2022</guid>
		<description>Dear Sir,

Required info for User Authentication with model.

for this i have updated portal.properties 

auth.pipeline.pre = com.orangescape.dimension.auth.UserAuthenticator

and created file usertable.properties to


#######################mandatory configuration###########################
com.orangescape.dimension.auth.datasource = java:/dimension
com.orangescape.dimension.auth.userid=select EMPLOYEE_ID from EMPLOYEEMASTER where EMPLOYEE_ID =
com.orangescape.dimension.auth.emailid=select EMAIL_ADDRESS from EMPLOYEEMASTER where EMPLOYEE_ID =
com.orangescape.dimension.auth.password=select PASSWORD1 from EMPLOYEEMASTER where EMPLOYEE_ID =
com.orangescape.dimension.auth.groupid=select GROUPID from EMPLOYEEMASTER where EMPLOYEE_ID=
com.orangescape.dimension.auth.themeid=officetiger
com.orangescape.dimension.auth.firstname=select distinct FIRST_NAME from EMPLOYEEMASTER_LOGINVIEW where EMPLOYEE_ID =
com.orangescape.dimension.auth.lastname=select distinct LAST_NAME from EMPLOYEEMASTER_LOGINVIEW where EMPLOYEE_ID =


#######################optional configuration###########################
#used to provide the company id,do not provide any values unless you know what you are doing ;-)

#com.orangescape.dimension.auth.companyid=

#used to provide the roleid ,do not provide any values unless you know what you are doing ;-) 
#com.orangescape.dimension.auth.roleid=

#this is meant for deleting the default power user role thats assigned during user creation
com.orangescape.dimension.auth.poweruserid=12


after this when trying to login its give authentication failure

Can you help me resolve this problem?
Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Dear Sir,</p>
<p>Required info for User Authentication with model.</p>
<p>for this i have updated portal.properties </p>
<p>auth.pipeline.pre = com.orangescape.dimension.auth.UserAuthenticator</p>
<p>and created file usertable.properties to</p>
<p>#######################mandatory configuration###########################<br />
com.orangescape.dimension.auth.datasource = java:/dimension<br />
com.orangescape.dimension.auth.userid=select EMPLOYEE_ID from EMPLOYEEMASTER where EMPLOYEE_ID =<br />
com.orangescape.dimension.auth.emailid=select EMAIL_ADDRESS from EMPLOYEEMASTER where EMPLOYEE_ID =<br />
com.orangescape.dimension.auth.password=select PASSWORD1 from EMPLOYEEMASTER where EMPLOYEE_ID =<br />
com.orangescape.dimension.auth.groupid=select GROUPID from EMPLOYEEMASTER where EMPLOYEE_ID=<br />
com.orangescape.dimension.auth.themeid=officetiger<br />
com.orangescape.dimension.auth.firstname=select distinct FIRST_NAME from EMPLOYEEMASTER_LOGINVIEW where EMPLOYEE_ID =<br />
com.orangescape.dimension.auth.lastname=select distinct LAST_NAME from EMPLOYEEMASTER_LOGINVIEW where EMPLOYEE_ID =</p>
<p>#######################optional configuration###########################<br />
#used to provide the company id,do not provide any values unless you know what you are doing <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>#com.orangescape.dimension.auth.companyid=</p>
<p>#used to provide the roleid ,do not provide any values unless you know what you are doing <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
#com.orangescape.dimension.auth.roleid=</p>
<p>#this is meant for deleting the default power user role thats assigned during user creation<br />
com.orangescape.dimension.auth.poweruserid=12</p>
<p>after this when trying to login its give authentication failure</p>
<p>Can you help me resolve this problem?<br />
Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandeep</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-1958</link>
		<dc:creator>Sandeep</dc:creator>
		<pubDate>Fri, 29 Feb 2008 10:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-1958</guid>
		<description>Dear Sir,

I am very new in Liferay Portlet Development.

Will you please provide the Details Tutorial Links of Liferay Portlet.</description>
		<content:encoded><![CDATA[<p>Dear Sir,</p>
<p>I am very new in Liferay Portlet Development.</p>
<p>Will you please provide the Details Tutorial Links of Liferay Portlet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nguyen Thi Phuong</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-7</link>
		<dc:creator>Nguyen Thi Phuong</dc:creator>
		<pubDate>Fri, 15 Sep 2006 02:09:49 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-7</guid>
		<description>Dear Sir,
I have a problem with Liferay 3.6.1 when I add Portlet mail. 
Error: 10,814 INFO  [STDOUT] A3 CREATE mail/junk-mail
2006-09-15 06:50:10,814 INFO  [STDOUT] A3 NO CREATE Cannot create folder &#039;mail/junk-mail&#039;
2006-09-15 06:50:10,814 INFO  [STDOUT] A4 LIST &quot;&quot; mail/junk-mail
2006-09-15 06:50:10,939 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/].[jsp]] Servlet.service() for servlet jsp threw exception
javax.mail.FolderNotFoundException: mail/junk-mail not found
	at com.sun.mail.imap.IMAPFolder.checkExists(IMAPFolder.java:266)
	at com.sun.mail.imap.IMAPFolder.open(IMAPFolder.java:726)
	at com.liferay.portlet.mail.util.MailUtil._getFolder(MailUtil.java:867)
	at com.liferay.portlet.mail.util.MailUtil.getFolder(MailUtil.java:337)
	at org.apache.jsp.html.portlet.mail.view_jsp._jspService(org.apache.jsp.html.portlet.mail.view_jsp:469)
	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)

Can you help me resolve this problem?
Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Dear Sir,<br />
I have a problem with Liferay 3.6.1 when I add Portlet mail.<br />
Error: 10,814 INFO  [STDOUT] A3 CREATE mail/junk-mail<br />
2006-09-15 06:50:10,814 INFO  [STDOUT] A3 NO CREATE Cannot create folder &#8216;mail/junk-mail&#8217;<br />
2006-09-15 06:50:10,814 INFO  [STDOUT] A4 LIST &#8220;&#8221; mail/junk-mail<br />
2006-09-15 06:50:10,939 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/].[jsp]] Servlet.service() for servlet jsp threw exception<br />
javax.mail.FolderNotFoundException: mail/junk-mail not found<br />
	at com.sun.mail.imap.IMAPFolder.checkExists(IMAPFolder.java:266)<br />
	at com.sun.mail.imap.IMAPFolder.open(IMAPFolder.java:726)<br />
	at com.liferay.portlet.mail.util.MailUtil._getFolder(MailUtil.java:867)<br />
	at com.liferay.portlet.mail.util.MailUtil.getFolder(MailUtil.java:337)<br />
	at org.apache.jsp.html.portlet.mail.view_jsp._jspService(org.apache.jsp.html.portlet.mail.view_jsp:469)<br />
	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)</p>
<p>Can you help me resolve this problem?<br />
Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivek Agarwal</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-6</link>
		<dc:creator>Vivek Agarwal</dc:creator>
		<pubDate>Tue, 11 Apr 2006 16:57:39 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-6</guid>
		<description>Brian,

I am certainly on it in terms of looking at Liferay 4.0. It certainly seems to have some good enhancements - congrats on a great job! 

At first glance though, I am a little disappointed with the access control enhancements - I still dont see how I could have pages on a single community with different user groups having different access rights on each page. I can certainly see the need for a &quot;Human Resources&quot; community that has some pages that are more privileged than others. I know about the new private/public pages within a community feature - that is useful but not the solution for my problem. I do not necessarily want to limit the more privileged pages in the &quot;Human Resources&quot; community to the community members. I could want to limit those pages to a certain managers group in my LDAP.

Basically, what I am looking for is the ability to set access control on a page within a community  for a given LDAP group.

Probably not making much sense since I am in a hurry, but will post later more coherently or so I hope!</description>
		<content:encoded><![CDATA[<p>Brian,</p>
<p>I am certainly on it in terms of looking at Liferay 4.0. It certainly seems to have some good enhancements &#8211; congrats on a great job! </p>
<p>At first glance though, I am a little disappointed with the access control enhancements &#8211; I still dont see how I could have pages on a single community with different user groups having different access rights on each page. I can certainly see the need for a &#8220;Human Resources&#8221; community that has some pages that are more privileged than others. I know about the new private/public pages within a community feature &#8211; that is useful but not the solution for my problem. I do not necessarily want to limit the more privileged pages in the &#8220;Human Resources&#8221; community to the community members. I could want to limit those pages to a certain managers group in my LDAP.</p>
<p>Basically, what I am looking for is the ability to set access control on a page within a community  for a given LDAP group.</p>
<p>Probably not making much sense since I am in a hurry, but will post later more coherently or so I hope!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Kim</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-5</link>
		<dc:creator>Brian Kim</dc:creator>
		<pubDate>Tue, 11 Apr 2006 10:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-5</guid>
		<description>Check out our new Liferay 4.0.  We changed the architecture to allow for fine-grained permissioning in this release.  Documentation is improved as well :)

Brian Kim
Liferay, LLC</description>
		<content:encoded><![CDATA[<p>Check out our new Liferay 4.0.  We changed the architecture to allow for fine-grained permissioning in this release.  Documentation is improved as well <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Brian Kim<br />
Liferay, LLC</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stephen</title>
		<link>http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-4</link>
		<dc:creator>stephen</dc:creator>
		<pubDate>Thu, 23 Feb 2006 05:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://vivekagarwal.wordpress.com/2006/02/06/playing-with-liferay-ii/#comment-4</guid>
		<description>Just wondering if you could me out a little im stuck on ADS + Liferay i have create the user in the liferay database first , then i had added the 

to portal-ext.properties

auth.pipeline.pre=com.liferay.portal.auth.ADSAuth
#auth.pipeline.post=com.liferay.portal.auth.ADSAuth

auth.impl.ads.initial.context.factory=com.sun.jndi.ldap.LdapCtxFactory
auth.impl.ads.security.authentication=none
auth.impl.ads.host=&lt;ip&gt;
auth.impl.ads.port=389
auth.impl.ads.userid=cn=Administrator,&lt;domain&gt;
auth.impl.ads.password=&lt;password&gt;
auth.impl.ads.domainlookup=cn=Users,&lt;domain&gt;

the user if password works via ldapbrowser but authentication does not work in liferay i have turned on authenticate by userid and not email , 
if i disable the top line it logs in ok using the database

Cheers

-Stephen</description>
		<content:encoded><![CDATA[<p>Just wondering if you could me out a little im stuck on ADS + Liferay i have create the user in the liferay database first , then i had added the </p>
<p>to portal-ext.properties</p>
<p>auth.pipeline.pre=com.liferay.portal.auth.ADSAuth<br />
#auth.pipeline.post=com.liferay.portal.auth.ADSAuth</p>
<p>auth.impl.ads.initial.context.factory=com.sun.jndi.ldap.LdapCtxFactory<br />
auth.impl.ads.security.authentication=none<br />
auth.impl.ads.host=<ip><br />
auth.impl.ads.port=389<br />
auth.impl.ads.userid=cn=Administrator,<domain><br />
auth.impl.ads.password=
<password>
auth.impl.ads.domainlookup=cn=Users,<domain></p>
<p>the user if password works via ldapbrowser but authentication does not work in liferay i have turned on authenticate by userid and not email ,<br />
if i disable the top line it logs in ok using the database</p>
<p>Cheers</p>
<p>-Stephen</domain></password></domain></ip></p>
]]></content:encoded>
	</item>
</channel>
</rss>
