Create new pages for docman in joomla from c # program

I was asked to write an application that will receive an mp3 file, upload it to the server, create a document that references the file, and fill out a template and upload the document for the web administrator to approve it.

I am a pretty competent C # developer, but I haven’t even touched on web development materials. I don't know where to start

They run Joomla 1.5 with DocMan 1.4. I have no experience with php programming, but I did java and C #, so when I messed around with the API documentation, some of them seem to be familiar.

Any point in the right direction for books or online guides will be truly appreciated.

+4
source share
1 answer

Does Joomla have an API or a web service with which you can specify an application? Perhaps you can use Webclient in .Net and publish the file and related information to the Joomla server.

UPDATE:

I found this XML-RPC lib in .Net . If you have already seen this, here is the link for the Joomla Metaweblog API .

+3
source

Source: https://habr.com/ru/post/1302680/


All Articles