2.1 :: Using WAPL with SOAP

This section describes how to use Wapple Services in conjunction with WAPL to deliver your applications hosted on your servers to mobile devices.

Wapple Webservices can be consumed via REST or SOAP webservices.

Dev Key


The first thing will require is a Dev Key to authenticate your service with Wapple.

To receive your dev key, visit the Wapple Architect page on Wapple.net for more information.

WSDL


WSDL: http://webservices.wapple.net/wapl.wsdl

SOAP Functions



PHP Example


Nb. The example below uses the native PHP soap extension in PHP. The code is for demonstration purposes only and should be modified for use in a production environment.
  1.  <?php
  2.  try {
  3.   $sClient = new SoapClient('http://webservices.wapple.net/wapl.wsdl');
  4.  
  5.  } catch (Exception $e){
  6.   // Add your own exception handling here
  7.  }
  8.  ?>

Contents