<?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/"
		>
<channel>
	<title>Comments on: Integration of Jackrabbit OCM and Spring (updated version)</title>
	<atom:link href="http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/</link>
	<description>The official blog of eSoftHead Company</description>
	<lastBuildDate>Thu, 28 Jan 2010 03:51:34 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: admin</title>
		<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/comment-page-1/#comment-144</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 03 Aug 2009 03:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.esofthead.com/?p=174#comment-144</guid>
		<description>Jackrabbit allow user integrate JAAS with its repository. However, you must write custom JAAS Login Module, it is not belong Spring section. Try to Security section in jackrabbit configuration file:

&lt; Security appName=&quot;Jackrabbit&quot; &gt;
    &lt;SecurityManager
        class=&quot;org.apache.jackrabbit.core.security.simple.SimpleSecurityManager&quot;
        workspaceName=&quot;security&quot;&gt;
     ...
	

To do your request, you must create your own implementation to replace SimpleLoginModule, SimpleSecurityManager, SimpleAccessManager also create jcrSessionFactory instance and access repository by yourself (not hard-code &#039;credentials&#039; in spring configuration file).</description>
		<content:encoded><![CDATA[<p>Jackrabbit allow user integrate JAAS with its repository. However, you must write custom JAAS Login Module, it is not belong Spring section. Try to Security section in jackrabbit configuration file:</p>
<p>&lt; Security appName=&#8221;Jackrabbit&#8221; &gt;<br />
    &lt;SecurityManager<br />
        class=&#8221;org.apache.jackrabbit.core.security.simple.SimpleSecurityManager&#8221;<br />
        workspaceName=&#8221;security&#8221;&gt;<br />
     &#8230;</p>
<p>To do your request, you must create your own implementation to replace SimpleLoginModule, SimpleSecurityManager, SimpleAccessManager also create jcrSessionFactory instance and access repository by yourself (not hard-code &#8216;credentials&#8217; in spring configuration file).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paco Avila</title>
		<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/comment-page-1/#comment-141</link>
		<dc:creator>Paco Avila</dc:creator>
		<pubDate>Fri, 31 Jul 2009 12:00:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.esofthead.com/?p=174#comment-141</guid>
		<description>Very goog article! An now my &quot;problem&quot;: I wish to propagate the web user name to the jackrabbit session space. So, I don&#039;t want to provide the &quot;credentials&quot; into the &quot;jcrSessionFactory&quot; bean configuration. But when I access to the repository, the session.getUserID() is returning &quot;anonymous&quot;. There is an additional configuration for this? 

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Very goog article! An now my &#8220;problem&#8221;: I wish to propagate the web user name to the jackrabbit session space. So, I don&#8217;t want to provide the &#8220;credentials&#8221; into the &#8220;jcrSessionFactory&#8221; bean configuration. But when I access to the repository, the session.getUserID() is returning &#8220;anonymous&#8221;. There is an additional configuration for this? </p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: greg_larson</title>
		<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/comment-page-1/#comment-140</link>
		<dc:creator>greg_larson</dc:creator>
		<pubDate>Mon, 27 Jul 2009 13:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.esofthead.com/?p=174#comment-140</guid>
		<description>Yes, searching the JCR node contents/attributes for matches is exactly what I have in mind. It is still early in my project so this part is not required yet, but it will be coming soon. I will make a start on it and also get familiar with the jackrabbit ocm source code. Thanks for your help so far!</description>
		<content:encoded><![CDATA[<p>Yes, searching the JCR node contents/attributes for matches is exactly what I have in mind. It is still early in my project so this part is not required yet, but it will be coming soon. I will make a start on it and also get familiar with the jackrabbit ocm source code. Thanks for your help so far!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/comment-page-1/#comment-138</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 23 Jul 2009 15:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.esofthead.com/?p=174#comment-138</guid>
		<description>Larson,
    You are right to state about the purpose of tag classes. It is used to for searching documents (You see the result at the screenshots http://www.flickr.com/photos/37821412@N04/3697666512/sizes/o/in/set-72157621082360806/). However, document type is one of many contents we would like to support tag (a CRM Lead could be tagged or a project is also be tagged etc), to make loose coupling with Document module , other modules need to tag resources and Tag module, we use Spring Integration and ActiveMQ (Follows publish-subscribe pattern) and we send message contains tag resource to Tag module in asynchronous way. Search content base tag is simply retrieving information from database only whether tag module keeps information of tag and resource information.

     However, I guess that you need to seek the solutions to search JCR node match contents (and/or its attributes), as our result like this http://www.flickr.com/photos/37821412@N04/3749630828/sizes/o/in/set-72157621082360806/ ?  I worked with Jackrabbit deep in source code and I admitted that searching in jackrabbit ocm is not easy than using core api. If you fall into this issue, you could post more detail your problems, I will give a hand if I can :)</description>
		<content:encoded><![CDATA[<p>Larson,<br />
    You are right to state about the purpose of tag classes. It is used to for searching documents (You see the result at the screenshots <a href="http://www.flickr.com/photos/37821412@N04/3697666512/sizes/o/in/set-72157621082360806/)" rel="nofollow">http://www.flickr.com/photos/37821412@N04/3697666512/sizes/o/in/set-72157621082360806/)</a>. However, document type is one of many contents we would like to support tag (a CRM Lead could be tagged or a project is also be tagged etc), to make loose coupling with Document module , other modules need to tag resources and Tag module, we use Spring Integration and ActiveMQ (Follows publish-subscribe pattern) and we send message contains tag resource to Tag module in asynchronous way. Search content base tag is simply retrieving information from database only whether tag module keeps information of tag and resource information.</p>
<p>     However, I guess that you need to seek the solutions to search JCR node match contents (and/or its attributes), as our result like this <a href="http://www.flickr.com/photos/37821412@N04/3749630828/sizes/o/in/set-72157621082360806/" rel="nofollow">http://www.flickr.com/photos/37821412@N04/3749630828/sizes/o/in/set-72157621082360806/</a> ?  I worked with Jackrabbit deep in source code and I admitted that searching in jackrabbit ocm is not easy than using core api. If you fall into this issue, you could post more detail your problems, I will give a hand if I can <img src='http://blog.esofthead.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: greg_larson</title>
		<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/comment-page-1/#comment-137</link>
		<dc:creator>greg_larson</dc:creator>
		<pubDate>Wed, 22 Jul 2009 15:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.esofthead.com/?p=174#comment-137</guid>
		<description>Thanks for this extremely helpful demo project!
I am curious about one part of the project:
In the domain package, there are Tag and TagExample classes as well as a tags[] property in the File class.  These are not used in the test package -- can you explain how they would be used (I would imagine for searching) and provide a small example?</description>
		<content:encoded><![CDATA[<p>Thanks for this extremely helpful demo project!<br />
I am curious about one part of the project:<br />
In the domain package, there are Tag and TagExample classes as well as a tags[] property in the File class.  These are not used in the test package &#8212; can you explain how they would be used (I would imagine for searching) and provide a small example?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/comment-page-1/#comment-28</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 05 Apr 2009 02:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.esofthead.com/?p=174#comment-28</guid>
		<description>Thank you for your kind comment :). I am happy that it helps you in work.</description>
		<content:encoded><![CDATA[<p>Thank you for your kind comment <img src='http://blog.esofthead.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I am happy that it helps you in work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crakegrorma</title>
		<link>http://blog.esofthead.com/integration-of-jackrabbit-ocm-and-spring-newer-version/comment-page-1/#comment-27</link>
		<dc:creator>Crakegrorma</dc:creator>
		<pubDate>Sat, 04 Apr 2009 04:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.esofthead.com/?p=174#comment-27</guid>
		<description>Great site this blog.esofthead.com and I am really pleased to see you have what I am actually looking for here and this this post is exactly what I am interested in. I shall be pleased to become a regular visitor :)</description>
		<content:encoded><![CDATA[<p>Great site this blog.esofthead.com and I am really pleased to see you have what I am actually looking for here and this this post is exactly what I am interested in. I shall be pleased to become a regular visitor <img src='http://blog.esofthead.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
