Daan Kerkhofs

Results 7 comments of Daan Kerkhofs

@vierbergenlars what is the status of this work? We're planning a new release, is this something we could / want to include?

Are the Behaviours and Actions registered the 'Dynamic Extensions' way, by using the corresponding annotations? I have had similar issues with Behaviours where I used the `policyComponent` directly to register...

Hi @panzerj , thanks for reporting this issue. I've been able to reproduce the issue. Findings after quick first investigation: - bundle `MANIFEST.MF` file seems to contain the correct `Import-Package`...

@vierbergenlars 1. AFAIK the `@RequestBody` parameter should not be used to process e.g. file uploads. I think we can assume the body processed by the `@RequestBody` handler will not be...

**Workaround** It is possible to provide a String array as value of the `@Uri` annotation: `@Uri(value = {"/{aVariable}/test", "/{aVariable}/test/"}, method = HttpMethod.GET)` A request to `{{scheme}}://{{host}}:{{port}}/alfresco/service/v1/test/aVariable/test/` wil actually call our...

Hi @titenkov , I'm afraid customizing the `MappingJackson2HttpMessageConverter` that is used for the `@RequestBody` and `@ResponseBody` functionality is currently not possible. As an alternative for the `@RequestBody` functionality, you could...

Hi @titenkov , Unfortunately there is no good alternative for `@ResponseBody` at this point. You could always write to the output stream directly, but we definitely are not going to...