I'm working with version 7.6.3 of BonitSoft and intend to integrate with Alfresco version 5.2, and checked that the cmis List a folder connector no longer exists. How can I inject this list into a widget?
The Alfresco connector provided out-of-the-box in v5 won't be able to list the content of an Alfresco repo. They can only access Alfresco resources using their full path.
You would need to develop a custom connector to do so.
Please refer these questions for more information.
Bonita BPM list files and move folders in Alfresco
https://documentation.bonitasoft.com/6.x-7.2/creating-connector
Bonita integration with Alfresco
Related
I have Firebase set up in my iOS app. I don't use CocoaPods, so I integrate using the direct download of the framework zip file, as described here.
On their Configure Analytics Data Collection page, they say you can disable IDFA collection either by not including the AdSupport framework in your app or using pod 'Firebase/AnalyticsWithoutAdIdSupport' in a Pod file. I need AdSupport in my app for reasons independent of Firebase. How can I achieve pod 'Firebase/AnalyticsWithoutAdIdSupport' using the direct SDK download zip?
Already have implemented Alfresco CMIS to create, delete and modify files connecting to the Alfresco Community (server), but we need to include/embed the Alfresco Repository to our project, we DON'T need the share interface or REST API, only the repository.
Is is possible or there is other alternatives?
If you don't want Share, just don't deploy the Share war file. It's not necessary to run the core webapp.
Not including the rest API would be more difficult. I believe it would be possible to just include the core services, but it may be more trouble than it's worth. Why would you want to exclude the Rest API?
If you are dead set on stripping down the product, I would recommend disabling context files and commenting servlets out of the web.xml until you get a more "lightweight" version of the product.
In my company we have to develop a ASP.NET MVC 5 web application which must have a number of plugins.
We want these plugins to have the following features.
Each plugin can be deployed in a separate folder; No need to copy plugin assembly to bin folder, the plugin files keep same structure as an ordinary website;
Dynamically install/uninstall plugin after website gets running;
Plugins share same master/layout;
I have found an article that describes a similar solution, but it depends on plugin framework which is based on OSGi.NET which is not open source.
Is there a plugin framework that has the above features?
Yes. MEF is very good.
This is example of how to build MVC website with plugins architecture:
http://www.fidelitydesign.net/?p=104
http://www.fidelitydesign.net/?p=130
I had the same task few weeks ago and now I have working solution, so ask, if you have more questions.
UPD
In my case I want users to be able to add extensions to the app without any dependencies or configuration files. All you need to do is copy extension's folder into the main project's extensions folder. Each extension might contain dlls, views (in separate views folder), content (styles, images etc). Moreover, each extension might have one or more db types support and this can be configured with just copying of files too. Also, my app contains some backend, and this backend should be extensible with the extensions too. So every extension have to tell the main application what it can offer for the frontend and for the backend.
I have spent a lot of time for this, but now it works very good.
I have 3 folders and 1 html file inside a folder sample in alfresco. Is their any API to download the folder sample and its content. I am not able to find anything in google surf.
Any help is appreciated. Thanks in advance.
The preferred API for working with Alfresco to upload/download content to/from folders is CMIS (see http://chemistry.apache.org to download CMIS client libraries for various languages). If you are managing content in Alfresco and are publishing it to a web server as part of a WCM content publishing process, you might look at the File Transfer Service (see http://docs.alfresco.com/4.0/topic/com.alfresco.enterprise.doc/concepts/FSTR-intro.html).
I need to access the dynamic broker content through a web service call for html5 based mobile website. we are on SDL 2011 version build:6.1.0.55920.
Is broker content already available as a web service?
Is there any configuration setup that needs to be done ?
Can anyone provide the guidelines needed.
Thanks in advance.
There is a Content Delivery OData web service that can be used to retrieve dynamic content from the Broker. To install it check the docs at the following locations:
.Net installation:
http://sdllivecontent.sdl.com/LiveContent/content/en-US/SDL_Tridion_2011_SPONE/task_3E3A2FB1B4E34C20934B5A841C2E0930 (login needed)
Java installation:
http://sdllivecontent.sdl.com/LiveContent/content/en-US/SDL_Tridion_2011_SPONE/task_DC046ED58691440E92ED1A8672851427 (login needed)
This information is also provided in the Installation Guide PDF.
For information regarding implementing the service check the docs at http://sdllivecontent.sdl.com/LiveContent/content/en-US/SDL_Tridion_2011_SPONE/concept_DFBA3FF3977045F892ABB4FCF8DA38B1
First you need to modify the cd_storage_confe.xml file for querying the broker database. This file is present in bin\config folder of website.
Enable this tag:
<SearchFilter Name="SearchFilter" Class="com.tridion.broker.components.meta.MsSqlSearchFilterHome" defaultStorageId="defaultdb"/>
After this, you can use the Broker query mechanism to fetch the content from broker database and display the data dynamically.
More help on SdlLive website (login required)