<?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: Activiti-rest invoke issue in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234262#M187392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What's the REST endpoint you are trying to use ? What's the issue ? &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Sep 2016 05:22:20 GMT</pubDate>
    <dc:creator>hari</dc:creator>
    <dc:date>2016-09-16T05:22:20Z</dc:date>
    <item>
      <title>Activiti-rest invoke issue</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234261#M187391</link>
      <description>Acitivi enterprise edition rest.</description>
      <pubDate>Wed, 14 Sep 2016 16:12:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234261#M187391</guid>
      <dc:creator>narranil2</dc:creator>
      <dc:date>2016-09-14T16:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti-rest invoke issue</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234262#M187392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What's the REST endpoint you are trying to use ? What's the issue ? &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2016 05:22:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234262#M187392</guid>
      <dc:creator>hari</dc:creator>
      <dc:date>2016-09-16T05:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti-rest invoke issue</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234263#M187393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've implemented the activiti-rest end point under com.activiti.extension.rest package in enterprise version of Activiti(1.4.1).Please find the snippet of the code below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once I try to configure this end point for rest service call on the dropdown list I'm getting 401-Unauthorized error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've defined the end point and provided the Authenticated header for the same.Still I'm not able to invoke this rest point under the drop down list.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;but once I login and invoke the following end point in the browser I'm getting the results.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://localhost:8080/activiti-app/app/account/currencies" rel="nofollow noopener noreferrer"&gt;http://localhost:8080/activiti-app/app/account/currencies&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Copied the same class under com.activiti.extension.api package too with the below request mapping&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@RestController("TimeOffController")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@EnableAutoConfiguration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@RequestMapping({"/enterprise/account"})&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public class DealOnboardingRestEndPoint {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@RestController("TimeOffController")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@EnableAutoConfiguration&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@RequestMapping({"/account"})&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public class TimeTrackRestController {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@RequestMapping({"/test"})&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; @ResponseBody&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; public String home() {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; return "Hello Anil Welcome to Deal onbording App!";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@RequestMapping(value={"/currencies"}, method=RequestMethod.GET, produces = "application/json")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; public Set&amp;lt;Currency&amp;gt; getAllCurrencies() {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Set&amp;lt;Currency&amp;gt; aCurrencySet = Currency.getAvailableCurrencies();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; System.out.println("Available currencies:::"+aCurrencySet.size());&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; for (Currency currency : aCurrencySet) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; System.out.println("Currency Code::::"+ currency.getCurrencyCode());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; return aCurrencySet;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2016 13:29:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234263#M187393</guid>
      <dc:creator>narranil2</dc:creator>
      <dc:date>2016-09-16T13:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti-rest invoke issue</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234264#M187394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I believe i've replied this on your previous post - &lt;/SPAN&gt;&lt;A href="https://forums.activiti.org/content/activiti-rest-end-point" rel="nofollow noopener noreferrer"&gt;https://forums.activiti.org/content/activiti-rest-end-point&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2016 19:17:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-rest-invoke-issue/m-p/234264#M187394</guid>
      <dc:creator>abbask</dc:creator>
      <dc:date>2016-09-16T19:17:14Z</dc:date>
    </item>
  </channel>
</rss>

