What is the best approach to manipulate assets in Drupal from .Net application?
        Posted  
        
            by Amandeep Singh
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Amandeep Singh
        
        
        
        Published on 2009-07-10T16:25:58Z
        Indexed on 
            2010/03/28
            17:03 UTC
        
        
        Read the original article
        Hit count: 306
        
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.
© Stack Overflow or respective owner