<?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: How to override the default DocumentsInputResolver in a component in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-override-the-default-documentsinputresolver-in-a/m-p/319731#M6732</link>
    <description>&lt;P&gt;For examples of the &lt;STRONG&gt;-contrib.xml&lt;/STRONG&gt; file and the &lt;STRONG&gt;activate&lt;/STRONG&gt; method
check out this chapter "9.3. A word from our sponsors at OSGi" in:
&lt;A href="http://community.nuxeo.com/static/book-draft/ch09.html"&gt;DevBook, Ch 9&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;That same book will also help you with general understanding of contributing to nuxeo code.
&lt;A href="http://community.nuxeo.com/static/book-draft/"&gt;DevBook&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;However, for the most up-to-date information please use this book only along with the information on doc.nuxeo.com and answers.nuxeo.com, which have all the newest changes and additions to the platform.&lt;/P&gt;
&lt;P&gt;Here again the links that I already provided in the other question you quoted above. They provide definitions, architectural description as well as examples of components in Nuxeo:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://doc.nuxeo.com/x/0gBu"&gt;How-to implement an Action&lt;/A&gt;
&lt;A href="http://doc.nuxeo.com/x/dABu"&gt;Dev Cookbook&lt;/A&gt;
&lt;A href="http://doc.nuxeo.com/x/DIAO"&gt;Component model overview&lt;/A&gt;
&lt;A href="http://explorer.nuxeo.org/nuxeo/site/distribution/current/listComponents"&gt;Component list, component API&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Another good idea would be for you to try to use Nuxeo's Eclipse plugin Nuxeo-IDE which let you automatically create and test Nuxeo components and other boilerplate or more advanced code.
&lt;A href="http://www.nuxeo.com/en/products/nuxeo-ide"&gt;NuxeoIDE&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2011 22:03:41 GMT</pubDate>
    <dc:creator>Wojciech_Sulejm</dc:creator>
    <dc:date>2011-11-29T22:03:41Z</dc:date>
    <item>
      <title>How to override the default DocumentsInputResolver in a component</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-override-the-default-documentsinputresolver-in-a/m-p/319730#M6731</link>
      <description>&lt;P&gt;I need to override the DocumentsInputResolver which is in :&lt;/P&gt;
&lt;P&gt;org.nuxeo.ecm.automation.server.jaxrs.io.resolvers.DocumentsInputResolver&lt;/P&gt;
&lt;P&gt;so I can handle space at the end of paths. But I don't know how.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://answers.nuxeo.com/questions/644/how-to-use-input-when-path-contains-space-at-the-end/646"&gt;https://answers.nuxeo.com/questions/644/how-to-use-input-when-path-contains-space-at-the-end/646&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I haven't found doc on how to override an existing class. So&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;What will be in the ?-contrib.xml file?&lt;/LI&gt;
&lt;LI&gt;Where will be the activate method in which I should put the JsonRequestReader.addInputResolver(new MyDocumentsInputResolver()); line&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 29 Nov 2011 19:18:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-override-the-default-documentsinputresolver-in-a/m-p/319730#M6731</guid>
      <dc:creator>Dominic_Bérubé</dc:creator>
      <dc:date>2011-11-29T19:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to override the default DocumentsInputResolver in a component</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-override-the-default-documentsinputresolver-in-a/m-p/319731#M6732</link>
      <description>&lt;P&gt;For examples of the &lt;STRONG&gt;-contrib.xml&lt;/STRONG&gt; file and the &lt;STRONG&gt;activate&lt;/STRONG&gt; method
check out this chapter "9.3. A word from our sponsors at OSGi" in:
&lt;A href="http://community.nuxeo.com/static/book-draft/ch09.html"&gt;DevBook, Ch 9&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;That same book will also help you with general understanding of contributing to nuxeo code.
&lt;A href="http://community.nuxeo.com/static/book-draft/"&gt;DevBook&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;However, for the most up-to-date information please use this book only along with the information on doc.nuxeo.com and answers.nuxeo.com, which have all the newest changes and additions to the platform.&lt;/P&gt;
&lt;P&gt;Here again the links that I already provided in the other question you quoted above. They provide definitions, architectural description as well as examples of components in Nuxeo:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://doc.nuxeo.com/x/0gBu"&gt;How-to implement an Action&lt;/A&gt;
&lt;A href="http://doc.nuxeo.com/x/dABu"&gt;Dev Cookbook&lt;/A&gt;
&lt;A href="http://doc.nuxeo.com/x/DIAO"&gt;Component model overview&lt;/A&gt;
&lt;A href="http://explorer.nuxeo.org/nuxeo/site/distribution/current/listComponents"&gt;Component list, component API&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Another good idea would be for you to try to use Nuxeo's Eclipse plugin Nuxeo-IDE which let you automatically create and test Nuxeo components and other boilerplate or more advanced code.
&lt;A href="http://www.nuxeo.com/en/products/nuxeo-ide"&gt;NuxeoIDE&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2011 22:03:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-override-the-default-documentsinputresolver-in-a/m-p/319731#M6732</guid>
      <dc:creator>Wojciech_Sulejm</dc:creator>
      <dc:date>2011-11-29T22:03:41Z</dc:date>
    </item>
  </channel>
</rss>

