What is the best approach to manipulate assets in Drupal from .Net application?
- by Amandeep Singh
I'm beginning work on a project that will access a Drupal site to create nodes on the site. This includes file uploading, as the project is to allow people to upload pictures en mass to a Drupal site with minimal ado. Note that my application is written in .Net.
What I would like to know is the best approach to achieve the same? Based on initial research it looks like there are several options:
1. XML-RPC
2. Custom PHP module deployed in drupal. But, what is the way to invoke it from .Net?
3. Use a cron job to pick up the files from a watch folder. And add a cron_hook in my module to deploy the file.