<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Adding children to store root in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9342#M3308</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I found the problem… my NameSpacePrefixResolver was null. So now I can add a node function in the node People at the same level than the node person however while browsing the NodeBrowser if I first check a node person then the node function has the same properties than person and respectively. And then when I want to check again the node function I have this error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;cannot add component with id 'aspects' and path : {Component-Path : [Class: javax.faces.component.html.HtmlDataTable,Id: aspects]} to its parent component. This might be a problem due to duplicate ids.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope somebody will agree for helping me.. thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Feb 2006 11:49:14 GMT</pubDate>
    <dc:creator>soeursourire</dc:creator>
    <dc:date>2006-02-27T11:49:14Z</dc:date>
    <item>
      <title>Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9337#M3303</link>
      <description>Hi,I have been trying a few things, have been getting unexpected results, and now I am confused.&amp;nbsp; So here are my questions:Is there anything special about adding a node (say, a folder) directly as a child of a store root? I have a store with protocol "workspace" – will the following code work for ad</description>
      <pubDate>Fri, 17 Feb 2006 01:44:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9337#M3303</guid>
      <dc:creator>hsjawanda</dc:creator>
      <dc:date>2006-02-17T01:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9338#M3304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;No there is nothing special about the the root node other than its association to its children is called 'children' rather than a folder which is called 'contains'.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've updated the code below to reflect this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;// this.storeRef points to the store I am interested in.&lt;BR /&gt;NodeRef rootNode = nodeService.getRootNode(this.storeRef);&lt;BR /&gt;&lt;BR /&gt;// Creating a folder as a direct child of storeRef&lt;BR /&gt;ChildAssociationRef childAssocRef = nodeService.createNode(rootNode,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ContentModel.PROP_CHILDREN, QName.createQName(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NamespaceService.CONTENT_MODEL_1_0_URI, folderName),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ContentModel.TYPE_FOLDER);&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What are the differences between creating child associations and creating plain-jane associations (NodeService#createAssociation())?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;* A child association implies a hierarchy between nodes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* An association is a relationship between two nodes (with no hierarchy).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Roy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 10:32:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9338#M3304</guid>
      <dc:creator>rwetherall</dc:creator>
      <dc:date>2006-02-20T10:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9339#M3305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Roy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;No there is nothing special about the the root node other than its association to its children is called 'children' rather than a folder which is called 'contains'.&lt;/BLOCKQUOTE&gt;&lt;SPAN&gt;This is only a naming convention, right?&amp;nbsp; Will any constraints be violated if the wrong child-association name gets used?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Deleting a container node deletes its children too, right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply to my first posting.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2006 03:47:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9339#M3305</guid>
      <dc:creator>hsjawanda</dc:creator>
      <dc:date>2006-02-24T03:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9340#M3306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, the name of the association can be anything you want, it is the type of the association (eg: 'children') that must follow the model defintion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, when a node is deleted its children are deleted too.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Roy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2006 09:28:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9340#M3306</guid>
      <dc:creator>rwetherall</dc:creator>
      <dc:date>2006-02-24T09:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9341#M3307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was thinking I understood how to add a new node in MySQL and I wanted to add a node function in this database under the node People at the same level than Person but not in the node Person. (Person and function are brothers). So I was doing as follow:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- a new class FunctionService that is almost exactly the same than PersonServiceImpl&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- in MyNewUserWizard in init() I initialize my function service :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;this.functionService = new FunctionService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;this.functionService.setNodeService(this.nodeService);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;this.functionService.setSearchService(this.searchService);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//this.functionService.setStoreRef(Repository.getStoreRef());&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-in MyNewUserWizard in startWizardForEdit() I added this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Node nodeFN = new Node(ref);&amp;nbsp; setFunction(nodeFN); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a node Node function;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-in MyNewUserWizard in populate() I added this:&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Map&amp;lt;String, Object&amp;gt; propsFN = getFunction().getProperties();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-And in finish(), I added :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Map&amp;lt;QName, Serializable&amp;gt; propsFN = new HashMap&amp;lt;QName, Serializable&amp;gt;(5);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;propsFN.put(MyContentModel.PROP_FN_ID, this.functionId);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;String assocNameFN = QName.createValidLocalName(String.valueOf(this.functionId));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NodeRef newFunction = this.functionService.createFunction(propsFN);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, while doing that when I call the function finish() I have errors such as&amp;nbsp; Java.lang.NullPointerException. I have apparently a problem in getPeopleContainer (called by createFunction) while doing this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NodeRef rootNodeRef = this.nodeService.getRootNode(storeRef);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;List&amp;lt;NodeRef&amp;gt; results = searchService.selectNodes(rootNodeRef, PEOPLE_FOLDER, null, namespacePrefixResolver, false);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What do I do wrong here?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2006 14:52:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9341#M3307</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-24T14:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9342#M3308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I found the problem… my NameSpacePrefixResolver was null. So now I can add a node function in the node People at the same level than the node person however while browsing the NodeBrowser if I first check a node person then the node function has the same properties than person and respectively. And then when I want to check again the node function I have this error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;cannot add component with id 'aspects' and path : {Component-Path : [Class: javax.faces.component.html.HtmlDataTable,Id: aspects]} to its parent component. This might be a problem due to duplicate ids.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope somebody will agree for helping me.. thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 11:49:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9342#M3308</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-27T11:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9343#M3309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is more than likely a bug with the node browser. This error happens in JSF sometimes when a component is not given an explicit id.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try closing the node browser and returing to it as a workaround.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;An issue in JIRA has been raised for this: &lt;/SPAN&gt;&lt;A href="http://www.alfresco.org/jira/browse/AWC-563" rel="nofollow noopener noreferrer"&gt;http://www.alfresco.org/jira/browse/AWC-563&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 14:03:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9343#M3309</guid>
      <dc:creator>gavinc</dc:creator>
      <dc:date>2006-02-27T14:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9344#M3310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks a lot for the answer. So does that mean as well that when I go in my node function and I see the properties of my node person instead it is a bug of nodebrowser? How and where can I check in the database if my nodes are correctly filled?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also noticed than when I delete some users that I created, they are removed from node browser but all usernames are kept in the database, is it normal? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thus I wanted to delete some of these usernames from MySQL by command line but now I cannot log in to Alfresco as admin… &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 15:35:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9344#M3310</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-27T15:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9345#M3311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;My god!! Help please!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Since I modified something in the database I cannot log in as admin and have this error page:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;javax.portlet.PortletException: Error calling action method of component with id loginForm:submit&lt;BR /&gt;&lt;BR /&gt;caused by:&lt;BR /&gt;javax.faces.FacesException: Error calling action method of component with id loginForm:submit&lt;BR /&gt;&lt;BR /&gt;caused by:&lt;BR /&gt;javax.faces.el.EvaluationException: Exception while invoking expression #{LoginBean.login}&lt;BR /&gt;&lt;BR /&gt;caused by:&lt;BR /&gt;org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [org.alfresco.repo.security.permissions.impl.hibernate.RecipientImpl#org.alfresco.repo.security.permissions.impl.hibernate.RecipientImpl@35f5b8]&lt;BR /&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What can I do now? I reinstalled MySQL and installed the last version of Alfresco and have this error!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 16:11:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9345#M3311</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-27T16:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9346#M3312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Your issue may be related to this problem?&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.alfresco.org/forums/viewtopic.php?t=1125&amp;amp;highlight=" rel="nofollow noopener noreferrer"&gt;http://www.alfresco.org/forums/viewtopic.php?t=1125&amp;amp;highlight=&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It looks like a similar error (it may not be) - keep an eye on the post and we should resolve it soon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kevin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 18:36:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9346#M3312</guid>
      <dc:creator>kevinr</dc:creator>
      <dc:date>2006-02-27T18:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9347#M3313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the fast answer. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a wiki or documentation about the structure of the database (a entity-relationship diagram)? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where can I check the properties values of a node person (from node people) in the database by sql command line?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 10:12:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9347#M3313</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-28T10:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9348#M3314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This query will find the users from the node_properties table:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;select string_value, guid from node_properties where protocol='user' and qname='{&lt;A href="http://www.alfresco.org/model/user/1.0}username" rel="nofollow noopener noreferrer"&gt;http://www.alfresco.org/model/user/1.0}username&lt;/A&gt;';&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;Get the value the "guid" column value for the user you are interested in, then execute something like this to see all the properties for that user instance:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;select * from node_properties where guid='9e86231c-9cb7-11da-a085-9f5761485f4e';&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;Remember that the passwords field is encrypted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kevin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 11:43:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9348#M3314</guid>
      <dc:creator>kevinr</dc:creator>
      <dc:date>2006-02-28T11:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9349#M3315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for help. So that allows me to access the users properties (username, password…) but not the person properties (firstname, lastname, etc…) ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please would you mind telling me where the node 'People' ("/sys&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;eople") is created in the code? the node 'person' is created while creating a user in PersonService but where is created the node 'people'? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 16:39:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9349#M3315</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-28T16:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9350#M3316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oki I found… it is done while calling the function getPeopleContainer right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another question… in the function startWizardForEdit from NewUserWizard what does this code means:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UIActionLink link = (UIActionLink) event.getComponent();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Map&amp;lt;String, String&amp;gt; params = link.getParameterMap();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String id = params.get("id");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What is this id? the uuid of the node? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If I am creating 2 different nodes during this newuserwizard, how will he choose which uuid to use? How can I be sure that if I create two different nodes in sys:system I will have different uuid for the children of the first node and the children of the second node?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 18:08:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9350#M3316</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-28T18:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9351#M3317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another question as well… &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am able to create a new node Functions under System. Then I create nodes function in Functions. But in the NodeBrowser it appears that the node function I create has the same uuid than the node person that I create at the same time. Can it be due to nodebrowser bug? or because I am badly using userTransaction?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then I wanted to add a class FunctionsBean similar to UsersBean to display all functions in my jsp page users.jsp however I have error message in my jsp page saying that it cannot find my functionService, where should I define the bean functionService and the bean FunctionsBean? in faces-config, in application-context, in authentication-context, in network-protocol..?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:51:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9351#M3317</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-03-01T07:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9352#M3318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think I managed to add my nodes correctly but now I would like to get all nodes like when you get all person nodes with the class UsersBean. But I do not understand how this UsersBean is instantiate (where and when the nodeService is defined for example)? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;a:richList id="users-list" binding="#{UsersBean.usersRichList}" viewMode="details" pageSize="10"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; styleClass="recordSet" headerStyleClass="recordSetHeader" rowStyleClass="recordSetRow" altRowStyleClass="recordSetRowAlt" width="100%"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value="#{UsersBean.users}" var="r" initialSortColumn="userName" initialSortDescending="true"&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 15:56:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9352#M3318</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-03-01T15:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9353#M3319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UsersBean is a JSF managed bean, as such it is defined in the JSF configuration files (in our case faces-config-beans.xml). The JSF framework instantiates the bean when it is required. The NodeService is also defined in the config file as a managed property, this means the nodeService object is "injected" into the bean, ready for your code to use.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would highly recommend doing some background reading on JSF, there are several great sites with loads of articles and tutorials, some we've found useful are:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.jsftutorials.net" rel="nofollow noopener noreferrer"&gt;http://www.jsftutorials.net&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.jsfcentral.com" rel="nofollow noopener noreferrer"&gt;http://www.jsfcentral.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www-128.ibm.com/developerworks/library/j-jsf1" rel="nofollow noopener noreferrer"&gt;http://www-128.ibm.com/developerworks/library/j-jsf1&lt;/A&gt;&lt;SPAN&gt; (series of 4 articles introducing JSF)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;These may help answer a few of your questions and give you a better insight into how the Alfresco web client works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 09:00:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9353#M3319</guid>
      <dc:creator>gavinc</dc:creator>
      <dc:date>2006-03-02T09:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9354#M3320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Gavin is correct. Also to understand the architecture of how our services are defined and configured using Spring you should take a look at the Spring Framework tutorials and do a a little background reading. Once you are familiar with JSF and Spring you are ready to get deeper in Alfresco.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.theserverside.com/resources/article.jsp?l=SpringFramework" rel="nofollow noopener noreferrer"&gt;http://www.theserverside.com/resources/article.jsp?l=SpringFramework&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.springframework.org/documentation" rel="nofollow noopener noreferrer"&gt;http://www.springframework.org/documentation&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kevin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 10:07:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9354#M3320</guid>
      <dc:creator>kevinr</dc:creator>
      <dc:date>2006-03-02T10:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9355#M3321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks a lot for your advices. I started looking at the documentation and I am getting more familiar to JSF. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I am getting into troubles while doing this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;List&amp;lt;ChildAssociationRef&amp;gt; childRefs = nodeService.getChildAssocs(functionRef);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;although my nodeService and functionRef seem correct (good reference):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;functionRef= workspace://SpacesStore/e79e7952-a87a-11da-ab9f-0774da8876d0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;nodeService= org.alfresco.repo.node.db.DbNodeServiceImpl@1e932fcf&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;storeRef= workspace://SpacesStore&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And I get this error message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;A system error happened during the operation: Bad credentials presented&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What kind of error is it? Can it be due to my insertion of nodes in the repository (when I add a node Functions under system and some nodes function in Functions)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 14:26:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9355#M3321</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-03-02T14:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Adding children to store root</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9356#M3322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In your WIKI when you are talking about XPath Search while doing that:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;List&amp;lt;ChildAssocRef&amp;gt; answer =&amp;nbsp; nodeService.selectNodes(rootNodeRef, "*", null, namespacePrefixResolver, false);&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I guess it is a mistake, nodeService has no selectNodes. We should use searchService right?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2006 10:21:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/adding-children-to-store-root/m-p/9356#M3322</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-03-04T10:21:43Z</dc:date>
    </item>
  </channel>
</rss>

