<?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: Best practices using Alfresco Web Service Client in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269768#M222898</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;To answer your first question, alfresco uses the ContentModelling concept store the data.&lt;BR /&gt;You can explore content modelling in alfresco to ge the answer.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Patil,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for you answer, I guess you mean to 'contentModel.xml' in "ALFRESCO_HOME\tomcat\webapps\alfresco\WEB-INF\classes\alfresco\model" but still not clear to me what values that take at run time the constants in the 'org.alfresco.webservice.util.Constants' class, my doubt is if its value will "".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Dec 2010 20:38:01 GMT</pubDate>
    <dc:creator>developer_resea</dc:creator>
    <dc:date>2010-12-17T20:38:01Z</dc:date>
    <item>
      <title>Best practices using Alfresco Web Service Client</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269765#M222895</link>
      <description>Hello,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I'm trying to integrate a web application with alfresco using 'alfresco-web-service-client-3.3.jar', I have reviewed the examples that there is in the web and these work fine but there are some aspects that I have not clear yet:1. There is various parts of the code to makes use of constan</description>
      <pubDate>Thu, 16 Dec 2010 00:35:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269765#M222895</guid>
      <dc:creator>developer_resea</dc:creator>
      <dc:date>2010-12-16T00:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Best practices using Alfresco Web Service Client</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269766#M222896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;To answer your first question, alfresco uses the ContentModelling concept store the data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can explore content modelling in alfresco to ge the answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Patil&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ECM Consulatant&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bangalore&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 04:50:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269766#M222896</guid>
      <dc:creator>patil</dc:creator>
      <dc:date>2010-12-16T04:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Best practices using Alfresco Web Service Client</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269767#M222897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The ID that you are mentioning is not the actual ID and will not be stored on alfresco. It is ment to link other CML commnad to that item in a single request. Lets just say you want to add aspect with CMLCreate… You need some kind of ID to link it to because it is not yet created on alfresco (and if you didn't have that ID you would need to create the document in one request, get the nodeRef and issue another request for adding aspect) so thats where that ID is useful. For example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;…&lt;BR /&gt;CML cml = new CML();&lt;BR /&gt;&lt;BR /&gt;CMLCreate create = new CMLCreate("1", parent, null, Constants.ASSOC_CONTAINS, null, documentTypeQName, properties);&lt;BR /&gt;CMLAddAspect aspect = new CMLAddAspect(aspectName, aspectProperties, null, "1");&lt;BR /&gt;&lt;BR /&gt;CMLCreate create2 = new CMLCreate("2", parent, null, Constants.ASSOC_CONTAINS, null, documentTypeQName2, properties2);&lt;BR /&gt;CMLAddAspect aspect2 = new CMLAddAspect(aspectName2, aspectProperties2, null, "2");&lt;BR /&gt;&lt;BR /&gt;cml.setAddAspect(new CMLAddAspect[] {aspect, aspect2});&lt;BR /&gt;cml.setCreate(new CMLCreate[] { create, create2 });&lt;BR /&gt;&lt;BR /&gt;UpdateResult[] results = getRepositoryService().update(cml);&lt;BR /&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;/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;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Dec 2010 10:39:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269767#M222897</guid>
      <dc:creator>jcustovic</dc:creator>
      <dc:date>2010-12-16T10:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Best practices using Alfresco Web Service Client</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269768#M222898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;To answer your first question, alfresco uses the ContentModelling concept store the data.&lt;BR /&gt;You can explore content modelling in alfresco to ge the answer.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Patil,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for you answer, I guess you mean to 'contentModel.xml' in "ALFRESCO_HOME\tomcat\webapps\alfresco\WEB-INF\classes\alfresco\model" but still not clear to me what values that take at run time the constants in the 'org.alfresco.webservice.util.Constants' class, my doubt is if its value will "".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks and regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Dec 2010 20:38:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/best-practices-using-alfresco-web-service-client/m-p/269768#M222898</guid>
      <dc:creator>developer_resea</dc:creator>
      <dc:date>2010-12-17T20:38:01Z</dc:date>
    </item>
  </channel>
</rss>

