Custom domain for filepicker.io files - filepicker.io

It would be nice to use
https://files.mydomain.com/api/file/hfdjasfjdasfldh
instead of
https://www.filepicker.io/api/file/hfdjasfjdasfldh
Is this possible?
Thanks,
-Ivan

That's a feature that we've enable for our enterprise+ custom plans. It's not available for the self service plans.

Related

Alfresco REST Api add Task

I am developing a java web application to manage Alfresco users and tasks (create and assign tasks to users ..) using rest api , i couldn't add tasks with POST method as shown in this picture :
Can anyone please suggest how to handle this.
Thanks.
You're not calling the right method, this url only accepts GET.
You can use all theses methods : https://api-explorer.alfresco.com/api-explorer/#/tasks, but I don't see one permitting to create a task.
I think this is because creating a task is not logic.
Maybe what you want to do is to create a process : https://api-explorer.alfresco.com/api-explorer/#!/processes/createProcess
If you don't find what you need, you still have the option to create your own webscript https://docs.alfresco.com/5.2/tasks/ws-tutorials.html.
As #Akah said, it's not the right service, also, you can find all deployed services in your Alfresco instance with there descriptions on http://localhost:8081/alfresco/service/index/all

Document4j support for other ms word like applications

I want to convert ms office documents to pdf. I thought of using document4j for that. But I could see that we need msoffice setup to make it work. Can we somehow use open-office or other libre-office for doing the same work. MSOffice cost is much high so want to use something open-source.
Any help would be greatly appreciated.
Thanks in advance.
You can implement your own converter by implementing the IExternalConverter API. You could for example delegate to Open Office. No such implementation exists currently but by implementing the interface, you can activate the API and use all of documents4j client and server implementations.

How to programmatically detect Endeca indexing is successful (from ATG) to send an email?

The requirement is that once the Baseline Index is successful, an email has to be sent to an admin automatically.
Is there any out-of-the-box feature available in ATG Endeca integration? If not, how to achieve this functionality?
There is a mailer custom component for the AppConfig.xml that used to be available from Endeca.
Using a few lines of configuration, you can send email from anywhere in the scripts.
I do not know if Oracle still supports it.
The java class is called com.endeca.esource.dtmailerutility.MailNotificationComponent.
There is more info about it here:
https://forums.oracle.com/thread/2453483
Figured it out myself.
Extend SimpleIndexingAdmin class and override indexBaseline() method.

Drupal Website to iPhone Webservice API in XML Format

We have our clients website in Drupal at present, for which we needs to create an iPhone App.
So any ideas on how to do that?
Is there any ready made available plug-ins or modules which we can use to generate Category / Articles XMLs directly from database, without much custom code n its headache?
All your suggestions are most welcome..
Thanks !
Yes. You should start with "Services" module, which will allow you to communicate your website with external websites or applications.
Also, you will need a way to communicate with Drupal. We're using XMLRPC, but you can use JSON, Rest...up to you.
Here you have an starting point: http://www.zivtech.com/blog/simplest-drupal-iphone-app
Services implements the most common used methods for Drupal. Which are node saving/load, comments and users. If you need extra functionality, you will need to create a custom module (rather easy).
You can test all the calls with the Services tab in the Drupal website. Just remember to set the permissions.
There is also a Drupal-iOS SDK, which does almost everything I told you, but uses plist instead. https://github.com/seanhellwig/drupal-ios-sdk

implementing autocomplete in my website

i am developing a website where i intend to provide the search feature. I am developing it in PHP/MYSQL and i have written the script to perform the search. I wish to provide autocomplete or suggested searches option in the search box as the user types, can i know what are my choices and how can i make use of them?
I had tried YUI Autocomplete, it looks good to me, however i do not understand when it says using a local proxy for the datasource. Can any one help me out here?
Consider trying the Scriptaculous autocomplete. It's very easy to implement.
what does it exactly say on the documentation? (can you provide a link)
by local proxy I would think it means a proxy to a remote web service or API on another domain. (you can't make requests unless scripts are executed on the same domain). http://developer.yahoo.com/javascript/howto-proxy.html
I used jQuery autocompletex