Difference between revisions of "Webservices Guide - OpenKM 6.2"

From OpenKM Documentation
Jump to: navigation, search
Line 33: Line 33:
  
 
'''Sample clients'''
 
'''Sample clients'''
* [[XML client]] [[File:Padlock.gif]]
+
* [[XML client]]
* [[Java client]] [[File:Padlock.gif]]
+
* [[Java client]]
* [[Android client]] [[File:Padlock.gif]]
+
* [[Android client]]
* [[Python client]] [[File:Padlock.gif]]
+
* [[Python client]]
* [[PHP client]] [[File:Padlock.gif]]
+
* [[PHP client]]
* [[C Sharp client|C# client]] [[File:Padlock.gif]]
+
* [[C Sharp client|C# client]]
  
 
== Changing of soap:address location ==
 
== Changing of soap:address location ==

Revision as of 10:16, 6 March 2012

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:


Nota clasica.png In the upcoming OpenKM 6.0 webservices will be listed at http://localhost:8080/OpenKM/services.

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>