Python UCM Client
This package provides a simple client for calling the services on Oracle Content Server 11g via the standard web interface. It can be used in conjunction with any of the services provided by Content Server defined here
Installation
easy_install ucmclient
Examples
Uploading a file to Content Server
from ucmclient import UcmClient, ServiceFailed
#connect to ucm with specified hostname and content server port
ucmClient = UcmClient(‘ucmserver.example.com’,’16200′)
ucmClient.login(‘weblogic’,'password’)
#build a dictionary of service parameters.
ucmServiceData ={
‘dDocTitle’:'New Article 1′,
‘dDocName’:'News_Article_01′,
‘dDocType’:'News’ Continue reading