<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>RE: my account portlet is not displaying on page in 6.0 sp2</title>
  <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_recent_posts?p_l_id=" />
  <subtitle>RE: my account portlet is not displaying on page in 6.0 sp2</subtitle>
  <entry>
    <title>RE: View based on Role - Primefaces</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23810068" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23810068</id>
    <updated>2013-04-18T07:24:08Z</updated>
    <published>2013-04-18T07:24:08Z</published>
    <summary type="html">It works fine. Thanks Vernon.</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-18T07:24:08Z</dc:date>
  </entry>
  <entry>
    <title>RE: View based on Role - Primefaces</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23679667" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23679667</id>
    <updated>2013-04-15T05:21:01Z</updated>
    <published>2013-04-15T05:21:01Z</published>
    <summary type="html">Thanks. I have handled the navigation through navigation-rule in faces-config.xml. I dont have an issue to redirect.&lt;br /&gt;&lt;br /&gt;I have to direct to different view.xhtml based on the role when portlet loads. For example, in MVC portlet, I will write logic in &lt;strong&gt;render &lt;/strong&gt;method like this:&lt;br /&gt;&lt;br /&gt;if(role1) {&lt;br /&gt;viewJSP = &amp;#034;view1.jsp&amp;#034;&lt;br /&gt;} else if(role 2) {&lt;br /&gt;viewJSP = &amp;#034;view2.jsp&amp;#034;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;now in JSF portlet, how to achieve above scenario ?</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-15T05:21:01Z</dc:date>
  </entry>
  <entry>
    <title>View based on Role - Primefaces</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23666392" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23666392</id>
    <updated>2013-04-14T09:53:18Z</updated>
    <published>2013-04-14T09:53:18Z</published>
    <summary type="html">How to redirect to different View based on the Roles in Primefaces portlet.&lt;br /&gt;&lt;br /&gt;In MVC, we can change the view in render method by overriding viewTempale based on the role. But I am not sure how to change the view in Primefaces&lt;br /&gt;&lt;br /&gt;Any idea?&lt;br /&gt;&lt;br /&gt;- Gnaniyar Zubair</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-14T09:53:18Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23666387" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23666387</id>
    <updated>2013-04-14T09:58:13Z</updated>
    <published>2013-04-14T09:49:47Z</published>
    <summary type="html">yes i am considering that issue also, need to use &lt;strong&gt;testPersistence &lt;/strong&gt; , but it is only  temporary solution to call addTest method from same impl file as composite entity TestPK is not working properly.&lt;br /&gt;&lt;br /&gt;Will  find a solution to fix that and update. Thanks</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-14T09:49:47Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23592068" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23592068</id>
    <updated>2013-04-12T14:23:34Z</updated>
    <published>2013-04-12T14:21:51Z</published>
    <summary type="html">Hi David,&lt;br /&gt;&lt;br /&gt;your  guessing is 100% right...NoSuchMethod Error because of some old version of service jar file.&lt;br /&gt;&lt;br /&gt;But it works fine with this code :&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;&lt;br /&gt;	public Test createTestTest(long unitId, int itemId) {&lt;br /&gt;		Test test =  new TestImpl();&lt;br /&gt;		test.setUnitId(unitId);&lt;br /&gt;		test.setItemId(itemId);&lt;br /&gt;		return  addTest(test);&lt;br /&gt;	}&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Instead of this code :&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;public Test createTest(long unitId, int itemId) {&lt;br /&gt;		TestPK testPK =  new TestPK();&lt;br /&gt;		testPK.setUnitId(unitId);&lt;br /&gt;		testPK.setItemId(itemId);&lt;br /&gt;		return createTest(testPK);&lt;br /&gt;}&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;wherever we need to consume the common services, we can include like this in each plugin instead of copying into &lt;strong&gt;tomcat/lib/ext.&lt;/strong&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;required-deployment-contexts=my-test-service&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;But, Would it cause any permanence issue if we use in global path [&lt;strong&gt;tomcat/lib/ext]&lt;/strong&gt; ?&lt;br /&gt;&lt;br /&gt;- Gnaniyar Zubair</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-12T14:21:51Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23559922" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23559922</id>
    <updated>2013-04-11T17:26:06Z</updated>
    <published>2013-04-11T17:24:46Z</published>
    <summary type="html">I am getting No Such Method Error  :&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;java.lang.NoSuchMethodError: com.test.service.TestLocalServiceUtil.createTest(JI)Lcom/test/model/Test;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;@ this place where i am consuming the service :&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;	TestLocalServiceUtil.createTest(firstKey,secondKey);&lt;/div&gt;&lt;/div&gt;</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-11T17:24:46Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23558204" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23558204</id>
    <updated>2013-04-11T16:33:05Z</updated>
    <published>2013-04-11T16:32:18Z</published>
    <summary type="html">I did the same as you mentioned:&lt;br /&gt;&lt;br /&gt;TestLocalServiceImpl.java :&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;&lt;br /&gt;public  Test createTest(long firstKey, int secondKey) {&lt;br /&gt;		&lt;br /&gt;		TestPK  testPK =  new  TestPK();&lt;br /&gt;                  testPK.setFirstKey(firstKey);&lt;br /&gt;                 testPK.setSecondKey(secondKey);&lt;br /&gt;		return createTest(testPK);&lt;br /&gt;		&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;I am calling it from external entities :&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;TestLocalServiceUtil.createTest(firstKey,secondKey);&lt;/div&gt;&lt;/div&gt;</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-11T16:32:18Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23557682" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23557682</id>
    <updated>2013-04-11T16:02:07Z</updated>
    <published>2013-04-11T16:02:07Z</published>
    <summary type="html">it is from service consumer while calling TestLocalServiceUtil....</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-11T16:02:07Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23554475" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23554475</id>
    <updated>2013-04-11T15:00:34Z</updated>
    <published>2013-04-11T15:00:34Z</published>
    <summary type="html">Thanks for your solution david. Definitely it should work..&lt;br /&gt;&lt;br /&gt;But Still i am getting the exception:&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;com.test.service.TestLocalServiceUtil.createTest(JI)Lcom/test/model/Test;&lt;/div&gt;&lt;/div&gt;</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-11T15:00:34Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23546103" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23546103</id>
    <updated>2013-04-11T12:23:23Z</updated>
    <published>2013-04-11T12:23:23Z</published>
    <summary type="html">&lt;img alt="emoticon" src="http://www.liferay.comhttp://cdn.www.liferay.com/osb-www-theme/images/emoticons/happy.gif" &gt; From that location only, i can copy and place it in global location.&lt;br /&gt;&lt;br /&gt;It is available in both location.&lt;br /&gt;&lt;br /&gt;- Gnaniyar Zubair</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-11T12:23:23Z</dc:date>
  </entry>
  <entry>
    <title>RE: Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23544172" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23544172</id>
    <updated>2013-04-11T11:23:25Z</updated>
    <published>2013-04-11T11:23:25Z</published>
    <summary type="html">I am using global service inside tomcat/ext/lib .</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-11T11:23:25Z</dc:date>
  </entry>
  <entry>
    <title>Composite Key Issue</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23539397" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23539397</id>
    <updated>2013-04-11T11:21:52Z</updated>
    <published>2013-04-11T08:50:06Z</published>
    <summary type="html">When i try to persiste the data into composite key table, it throws Cannot Cast Exception like this :&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;com.test.service.persistence.TestPK cannot be cast to com.test.service.persistence.TestPK&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Am i missed something ?  Here is my code:&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;&lt;br /&gt;TestPK testPK =  new TestPK();&lt;br /&gt;				testPK .setFirstKey(firstKey);&lt;br /&gt;				testPK .setSecondKey(secondKey);&lt;br /&gt;				&lt;br /&gt;				Test test = TestLocalServiceUtil.createTest(testPK );&lt;br /&gt;				&lt;br /&gt;				TestLocalServiceUtil.updateTest(test );&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt; Even composite keys table is not auto generated.  Is there any issue in Liferay 6.1.X for generating and persisting the data of composite Keys in Service Builder? &lt;br /&gt;&lt;br /&gt;- Gnaniyar Zubair</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-04-11T08:50:06Z</dc:date>
  </entry>
  <entry>
    <title>RE: MessageListener class</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23097125" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23097125</id>
    <updated>2013-03-28T12:17:35Z</updated>
    <published>2013-03-28T12:17:35Z</published>
    <summary type="html">Expecting your presence for technical supports. &lt;img alt="emoticon" src="http://www.liferay.comhttp://cdn.www.liferay.com/osb-www-theme/images/emoticons/happy.gif" &gt;</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-28T12:17:35Z</dc:date>
  </entry>
  <entry>
    <title>RE: Redirect to Mobile Community</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23054411" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23054411</id>
    <updated>2013-03-27T10:18:11Z</updated>
    <published>2013-03-27T10:18:11Z</published>
    <summary type="html">Too Many Redirection issue due to ServicePreAction only.  will have a look your code if you share.</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-27T10:18:11Z</dc:date>
  </entry>
  <entry>
    <title>RE: MessageListener class</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23051006" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23051006</id>
    <updated>2013-03-27T09:08:58Z</updated>
    <published>2013-03-27T09:04:40Z</published>
    <summary type="html">I think we can get the service context object  in MessageListener class and get the Portal URL like this:&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;ServiceContext serviceContext = ServiceContextThreadLocal.getServiceContext();&lt;br /&gt;serviceContext.getPortalURL()&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;I am not sure whether above things will work in &lt;strong&gt;Message &lt;/strong&gt;&lt;strong&gt;Listener &lt;/strong&gt;class but i have tried like this in my model listener class.&lt;br /&gt;&lt;br /&gt;HTH&lt;br /&gt;&lt;br /&gt;- Gnaniyar Zubair</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-27T09:04:40Z</dc:date>
  </entry>
  <entry>
    <title>Property override issue through HOOK</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23048629" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23048629</id>
    <updated>2013-03-27T07:54:19Z</updated>
    <published>2013-03-27T07:53:11Z</published>
    <summary type="html">There are 60 to 70 properties file can be overridden through&lt;strong&gt; portal.properties&lt;/strong&gt; of Hook as per the &lt;strong&gt;Liferay 6.1.0 DTD &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;&lt;a href="http&amp;#x3a;&amp;#x2f;&amp;#x2f;docs&amp;#x2e;liferay&amp;#x2e;com&amp;#x2f;portal&amp;#x2f;6&amp;#x2e;1&amp;#x2f;definitions&amp;#x2f;liferay-hook_6_1_0&amp;#x2e;dtd&amp;#x2e;html"&gt;http://docs.liferay.com/portal/6.1/definitions/liferay-hook_6_1_0.dtd.html&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Othere properties are stricltly not allowed to override through &lt;strong&gt;portal.properties&lt;/strong&gt; from Hook which can be overridden through&lt;strong&gt; portal-ext.properties&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;That&amp;#039;s Fine, But If i override these below properties through Hook (&lt;strong&gt;portal.properties&lt;/strong&gt;), it is not reflection.&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;    users.form.update.identification=addresses&lt;br /&gt;users.form.update.main=details&lt;br /&gt;users.form.update.miscellaneous=anouncements&lt;br /&gt;&lt;br /&gt;users.form.my.account.identification=addresses&lt;br /&gt;users.form.my.account.main=details&lt;br /&gt;users.form.my.account.miscellaneous=anouncements&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If i set above properties in&lt;strong&gt; portal-ext.properties&lt;/strong&gt;, it works fine.  &lt;br /&gt;&lt;br /&gt;Can anybody give clarity on this whether we can override above properties through Hook?</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-27T07:53:11Z</dc:date>
  </entry>
  <entry>
    <title>RE: Embedding Webcontent  portlet in a custom portlet</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23006016" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=23006016</id>
    <updated>2013-03-26T21:54:19Z</updated>
    <published>2013-03-26T06:42:23Z</published>
    <summary type="html">Do you want to display entire WebContent display portlet in your custom portlet ? donno it is possible or not. But you can do the replica of  portlet from existing web content. I haven&amp;#039;t knocked out in that area. But it is possible definitely. &lt;br /&gt;&lt;br /&gt;To display the webcontent articles in your custom portlet , just call this tag with article and group id,&lt;br /&gt;&lt;br /&gt;&lt;div class="code"&gt;&lt;span class="code-lines"&gt;1&lt;/span&gt;&amp;lt;liferay-ui:journal-article &lt;br /&gt;&lt;span class="code-lines"&gt;2&lt;/span&gt;&amp;nbsp; articleId=&amp;#034;&amp;lt;%=articleId%&amp;gt;&amp;#034; &lt;br /&gt;&lt;span class="code-lines"&gt;3&lt;/span&gt;&amp;nbsp; groupId=&amp;#034;&amp;lt;%=groupId%&amp;gt;&amp;#034; /&amp;gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;HTH</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-26T06:42:23Z</dc:date>
  </entry>
  <entry>
    <title>RE: My Account Portlet Issue - Liferay 6.1. GA2</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=22906262" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=22906262</id>
    <updated>2013-03-22T10:01:32Z</updated>
    <published>2013-03-22T10:01:32Z</published>
    <summary type="html">issue i have raised here:&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#x3a;&amp;#x2f;&amp;#x2f;issues&amp;#x2e;liferay&amp;#x2e;com&amp;#x2f;browse&amp;#x2f;LPS-33940"&gt;http://issues.liferay.com/browse/LPS-33940&lt;/a&gt;</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-22T10:01:32Z</dc:date>
  </entry>
  <entry>
    <title>My Account Portlet Issue - Liferay 6.1. GA2</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=22882158" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=22882158</id>
    <updated>2013-03-21T17:44:37Z</updated>
    <published>2013-03-21T17:42:54Z</published>
    <summary type="html">I want to display &lt;strong&gt;My Account portlet &lt;/strong&gt;in portal page instead of Control Panel. I have already tried  by this below solution in earlier versions.&lt;br /&gt;&lt;br /&gt;1. liferay-portlet.xml&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;&amp;lt;system&amp;gt;&lt;span style="color: #0616f0"&gt;false&lt;/span&gt;&amp;lt;/system&amp;gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;2. portlet-custom.xml&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt;&amp;lt;init-param&amp;gt;&lt;br /&gt;     &amp;lt;name&amp;gt;view-action&amp;lt;/name&amp;gt;&lt;br /&gt;    &lt;span style="color: #0616f0"&gt; &amp;lt;value&amp;gt;/my_account/edit_user&amp;lt;/value&amp;gt;&lt;/span&gt;&lt;br /&gt;   &amp;lt;/init-param&amp;gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;3. portal.ext.properties&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;div class="quote-content"&gt; dockbar.add.portlets=&lt;span style="color: #0616f0"&gt;2&lt;/span&gt;,56,101,110,71&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;But above solution is not working for LR 6.1 GA2.  Any issues guys?&lt;br /&gt;&lt;br /&gt;- Gnaniyar Zubair</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-21T17:42:54Z</dc:date>
  </entry>
  <entry>
    <title>RE: my account portlet is not displaying on page in 6.0 sp2</title>
    <link rel="alternate" href="http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=22866969" />
    <author>
      <name>Gnaniyar Zubair</name>
    </author>
    <id>http://www.liferay.com/c/message_boards/find_message?p_l_id=&amp;messageId=22866969</id>
    <updated>2013-03-21T10:20:36Z</updated>
    <published>2013-03-21T10:19:37Z</published>
    <summary type="html">yes even we are facing this issue in 6.1. GA 2. After adding the portlet id in  property file, it is not showing in dock bar , Also we changed &lt;strong&gt;&amp;lt;system&amp;gt;false&amp;lt;/system&lt;/strong&gt;&amp;gt; in lifery-portlet.xml.. No luck...&lt;br /&gt;&lt;br /&gt;any issue in 6.1  ?</summary>
    <dc:creator>Gnaniyar Zubair</dc:creator>
    <dc:date>2013-03-21T10:19:37Z</dc:date>
  </entry>
</feed>

