Mappoint abstract MapView
Wednesday, November 30th, 2005 Problems accessing Microsoft Mappoint Webservice Server with NuSOAP via PHP ? Always getting WSDL errors, because MapView is an abstract class ?
Try this:
<?php
require(’path/to/nusoap-0.7.2/lib/nusoap.php’);
$mapPointUserName = “yourusername”;
$mapPointPassword = “yoursecretpassword”;
$mapPointWsdl = “http://staging.mappoint.net/standard-30/mappoint.wsdl”;
$client = new soapclient($mapPointWsdl, true);
$client->setCredentials($mapPointUserName,$mapPointPassword,’digest’);
$cp = array […]
