<?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: New to web script...please help in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263166#M216296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have some issue on restapi, you have afull chapter 6 on your book (alfresco developer guide. im guessing you're the author) but you simply discuss how to create one but not like consuming the already provided restapi by alfresco like the blog and wiki. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have a couple of question which up to now i can't make sure of an answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. In the restAPI documentation for retrieving tags it say the uri is: /alfresco/service/api/path/{store_type}/{store_id}/{id}/tags. What are the parameters store_type, store_id and id. WHere can we see this on alfresco site. (im trying to get my tags on the share site)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Do you have an example on how to update a blog via RestAPI? I have post a question on this &lt;/SPAN&gt;&lt;A href="http://forums.alfresco.com/en/viewtopic.php?f=36&amp;amp;t=40422" rel="nofollow noopener noreferrer"&gt;http://forums.alfresco.com/en/viewtopic.php?f=36&amp;amp;t=40422&lt;/A&gt;&lt;SPAN&gt; but it seems this kind of stuff is foreign to the forum users….&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you and more power&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Aug 2011 06:12:51 GMT</pubDate>
    <dc:creator>brogits</dc:creator>
    <dc:date>2011-08-30T06:12:51Z</dc:date>
    <item>
      <title>New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263159#M216289</link>
      <description>Hello everyone,I am new to web scripts. I am trying to create a folder under Company Home in my Alfresco repository. I am using the following code to execute a POST method that would create the folder: String url = "http://localhost:11080/alfresco/service/cmis/pCompany%20Home/children"PostMethod met</description>
      <pubDate>Fri, 05 Aug 2011 00:11:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263159#M216289</guid>
      <dc:creator>vjayabalan</dc:creator>
      <dc:date>2011-08-05T00:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263160#M216290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Before we work on your code, can you give a brief summary of what you are trying to do? I'll go ahead and take a swing at it based on what's in your message, but a little bit of context would help…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This looks like Java code and you are using the CMIS ATOM Pub binding, so I am assuming you are in a remote Java application that needs to create a folder in the Alfresco repository. If that is the case, you might want to simplify your life by using a higher-level API. I'd strongly suggest looking at the &lt;/SPAN&gt;&lt;A href="http://chemistry.apache.org/java/opencmis.html" rel="nofollow noopener noreferrer"&gt;OpenCMIS Java client API&lt;/A&gt;&lt;SPAN&gt;. If you use that, all you'd need is the service URL for the repository, which in your case would be &lt;/SPAN&gt;&lt;A href="http://localhost:11080/alfresco/service/api/cmis" rel="nofollow noopener noreferrer"&gt;http://localhost:11080/alfresco/service/api/cmis&lt;/A&gt;&lt;SPAN&gt;, and then you can use domain objects like "Session", "Document", and "Folder". For example, using OpenCMIS, the call to create a folder looks like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;Folder root = session.getRootFolder();&lt;BR /&gt;&lt;BR /&gt;// properties&lt;BR /&gt;// (minimal set: name and object type id)&lt;BR /&gt;Map&amp;lt;String, Object&amp;gt; properties = new HashMap&amp;lt;String, Object&amp;gt;();&lt;BR /&gt;properties.put(PropertyIds.OBJECT_TYPE_ID, "cmis:folder");&lt;BR /&gt;properties.put(PropertyIds.NAME, "a new folder");&lt;BR /&gt;&lt;BR /&gt;// create the folder&lt;BR /&gt;Folder newFolder = root.createFolder(properties);&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;SPAN&gt;If OpenCMIS doesn't meet your needs and you insist on moving your own XML back and forth, you should probably grab the Apache Chemistry CMIS Workbench. Then you can watch the traffic and see how exactly what the client is posting. And definitely read the spec. It's a short read and it describes exactly what the XML should be. I notice you are missing a cmisra&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bject element, for example.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On the other hand, if what you are doing is writing a Web Script controller in Java, you don't need to make remote calls to create objects in the repository at all. Instead, you can use the Java Foundation API. Using the Java Foundation API you can use things like the NodeService and the FileFolderService to work with objects in the repository from within your Java-based web script controller. A wiki search should turn up some examples around that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Aug 2011 16:42:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263160#M216290</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2011-08-05T16:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263161#M216291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the wonderful response. I just read your CMIS article and it's awesome!!!!!!!! I was a total 0 with CMIS before I read the doc. Now I understand the moving parts of the architecture. I am going to try working on the OpenCMIS java library, but I have another questions which I hope you don't mind replying.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I used the sample in your article to create a folder under Alfresco's root (Company Home). This is the xml:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;entry xmlns="&lt;/SPAN&gt;&lt;A href="http://www.w3.org/2005/Atom" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/2005/Atom&lt;/A&gt;&lt;SPAN&gt;" xmlns:cmisra="&lt;/SPAN&gt;&lt;A href="http://docs.oasis-open.org/ns/cmis/restatom/200908/" rel="nofollow noopener noreferrer"&gt;http://docs.oasis-open.org/ns/cmis/restatom/200908/&lt;/A&gt;&lt;SPAN&gt;" xmlns:cmis="&lt;/SPAN&gt;&lt;A href="http://docs.oasis-pen.org/ns/cmis/core/200908/" rel="nofollow noopener noreferrer"&gt;http://docs.oasis-pen.org/ns/cmis/core/200908/&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;title&amp;gt;Someco&amp;lt;/title&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;cmisra&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bject&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;cmis&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;roperties&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;cmis&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;ropertyId propertyDefinitionId="cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId"&amp;gt;&amp;lt;cmis:value&amp;gt;cmis:folder&amp;lt;/cmis:value&amp;gt;&amp;lt;/cmis&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;ropertyId&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/cmis&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;roperties&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/cmisra&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bject&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/entry&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and this is the curl:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;curl -X POST -uadmin:admin "&lt;/SPAN&gt;&lt;A href="http://localhost:11080/alfresco/cmis/p/children" rel="nofollow noopener noreferrer"&gt;http://localhost:11080/alfresco/cmis/p/children&lt;/A&gt;&lt;SPAN&gt;" -H "Content-Type:application/atom+xml" -d @/cygdrive/c/atom/createSomecoFolder.xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But when I execute this, I am getting the following error (only a few lines shown)…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Exception: org.alfresco.scripts.ScriptException - 07050011 Failed to execute script 'classpath*:alfresco/template/webscripts/org/alfresco/cmis/children.post.atom.js': Cannot read property 'nativeValue' from null.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any idea what this means??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks a million!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Aug 2011 22:01:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263161#M216291</guid>
      <dc:creator>vjayabalan</dc:creator>
      <dc:date>2011-08-05T22:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263162#M216292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;OpenCMIS is wonderful and so easy to integrate into any application. Thanks for referring me to this excellent API…makes my life so easy.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VJ&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 17:35:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263162#M216292</guid>
      <dc:creator>vjayabalan</dc:creator>
      <dc:date>2011-08-08T17:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263163#M216293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Awesome, I'm glad that worked for you. If you get a chance, please mark this topic as resolved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Aug 2011 21:34:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263163#M216293</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2011-08-08T21:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263164#M216294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I sure will mark it as resolved….just one more quick question though &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;. When creating a SessionFactory to the Alfresco Repository, I had to specify the ATOMPUB_URL parameter (&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;parameter.put(SessionParameter.ATOMPUB_URL, "&lt;A href="http://localhost:11080/alfresco/s/cmis" rel="nofollow noopener noreferrer"&gt;http://localhost:11080/alfresco/s/cmis&lt;/A&gt;")&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;). Does this mean OpenCMIS will use the REST API behind the scenes to access the repo using web scripts?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Vasanth&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2011 23:54:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263164#M216294</guid>
      <dc:creator>vjayabalan</dc:creator>
      <dc:date>2011-08-11T23:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263165#M216295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes. If you would rather use the Web Services binding, you can. Refer to the Chemistry sample code page and JavaDoc for more info:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://chemistry.apache.org/java/developing/client/dev-client-bindings.html" rel="nofollow noopener noreferrer"&gt;http://chemistry.apache.org/java/developing/client/dev-client-bindings.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 16:09:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263165#M216295</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2011-08-16T16:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263166#M216296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi jeff,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have some issue on restapi, you have afull chapter 6 on your book (alfresco developer guide. im guessing you're the author) but you simply discuss how to create one but not like consuming the already provided restapi by alfresco like the blog and wiki. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have a couple of question which up to now i can't make sure of an answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. In the restAPI documentation for retrieving tags it say the uri is: /alfresco/service/api/path/{store_type}/{store_id}/{id}/tags. What are the parameters store_type, store_id and id. WHere can we see this on alfresco site. (im trying to get my tags on the share site)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Do you have an example on how to update a blog via RestAPI? I have post a question on this &lt;/SPAN&gt;&lt;A href="http://forums.alfresco.com/en/viewtopic.php?f=36&amp;amp;t=40422" rel="nofollow noopener noreferrer"&gt;http://forums.alfresco.com/en/viewtopic.php?f=36&amp;amp;t=40422&lt;/A&gt;&lt;SPAN&gt; but it seems this kind of stuff is foreign to the forum users….&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you and more power&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2011 06:12:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263166#M216296</guid>
      <dc:creator>brogits</dc:creator>
      <dc:date>2011-08-30T06:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263167#M216297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Regarding your first question, in most cases…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;store_type = workspace&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;store_id = SpacesStore (capitalization matters)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;id = in this case, the path to the object, like this: /Sites/testsite1/documentLibrary/test/IMG_0003.JPG&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So the full URL:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//Sites/testsite1/documentLibrary/test/IMG_0003.JPG/tags" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//Sites/testsite1/documentLibrary/test/IMG_0003.JPG/tags&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Gives me the following JSON response:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;[&lt;BR /&gt;showcase,&lt;BR /&gt;lobby,&lt;BR /&gt;hotel&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;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;You can try to grok this yourself by looking at the web services index and the entry for this web script, specifically, which is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://localhost:8080/alfresco/service/index/uri/api/path/%7Bstore_type%7D/%7Bstore_id%7D/%7Bid%7D/tags" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/alfresco/service/index/uri/api/path/%7Bstore_type%7D/%7Bstore_id%7D/%7Bid%7D/tags&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that if you wanted to look up the node by node ID instead of path, you'd change the url from "/path" to "/node" and then the ID param becomes the node ID instead of the path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regarding your second question, I don't have an example that shows how to update a blog via the REST API. You might want to try doing it with a CMIS client library (Java, PHP, .NET, or Python) available at the &lt;/SPAN&gt;&lt;A href="http://chemistry.apache.org/" rel="nofollow noopener noreferrer"&gt;Apache Chemistry project&lt;/A&gt;&lt;SPAN&gt;. Or, you can use a tool like Firebug to watch the traffic that goes from Share back to the repo and then mimic that in your own app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Aug 2011 23:31:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263167#M216297</guid>
      <dc:creator>jpotts</dc:creator>
      <dc:date>2011-08-30T23:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: New to web script...please help</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263168#M216298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thank you so much for the response. I'll&amp;nbsp; be trying this out today…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 02:58:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/new-to-web-script-please-help/m-p/263168#M216298</guid>
      <dc:creator>brogits</dc:creator>
      <dc:date>2011-09-01T02:58:55Z</dc:date>
    </item>
  </channel>
</rss>

