Webservices Guide - OpenKM 5.1

From OpenKM Documentation
Revision as of 15:16, 17 March 2013 by Pavila (talk | contribs) (Created page with '{{TOCright}} __TOC__ OpenKM has a complete API exposed via Webservices. This means you can call any of these API methods from any programming language which supports the SOAP pr…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

OpenKM has a complete API exposed via Webservices. This means you can call any of these API methods from any programming language which supports the SOAP protocol, like Java, PHP or Python among others. This feature makes it possible to create a custom client, or integrate with third-party applications like a CRM or a CMS.

These are the WSDL available:

OKM Webservices API

Sample clients

Changing of soap:address location

By default, JBoss set the soap:address to the bind address. Usually this cause problems because the SOAP client will try to connect to a incorrect address. To change this, edit the file $JBOSS_HOME/server/default/deploy/jbossws.sar/jbossws.beans/META-INF/jboss-beans.xml and take a look a these values:

<property name="webServiceHost">your.company.com</property>
<property name="webServicePort">80</property>
<property name="modifySOAPAddress">true</property>