/**
* This file aims to show you how to use this generated package.
* In addition, the goal is to show which methods are available and the first needed parameter(s)
* You have to use an associative array such as:
* - the key must be a constant beginning with WSDL_ from AbstractSoapClientBase class (each generated ServiceType class extends this class)
* - the value must be the corresponding key value (each option matches a {@link http://www.php.net/manual/en/soapclient.soapclient.php} option)
* $options = array(
* \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL => 'main.wsdl',
* \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_TRACE => true,
* \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_LOGIN => 'you_secret_login',
* \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_PASSWORD => 'you_secret_password',
* );
* etc...
*/
require_once __DIR__ . '/vendor/autoload.php';
/**
* Minimal options
*/
$options = array(
\WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL => 'main.wsdl',
\WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP => ClassMap::get(),
);
/**
* Samples for Get ServiceType
*/
$get = new \ServiceType\Get($options);
/**
* Sample call for getInboundPalletDetails operation/method
*/
if ($get->getInboundPalletDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getEmptyAndOccupiedLocCountsForArea operation/method
*/
if ($get->getEmptyAndOccupiedLocCountsForArea($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getSerialNumbers operation/method
*/
if ($get->getSerialNumbers($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getHoldDetails operation/method
*/
if ($get->getHoldDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreEmptyOccupiedDetails operation/method
*/
if ($get->getMoreEmptyOccupiedDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsRemainingToCount operation/method
*/
if ($get->getLocationsRemainingToCount($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsForZone operation/method
*/
if ($get->getLocationsForZone($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getTaskManagerUserPermissions operation/method
*/
if ($get->getTaskManagerUserPermissions($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getTypedTaskDetails operation/method
*/
if ($get->getTypedTaskDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsEmptyCount operation/method
*/
if ($get->getLocationsEmptyCount($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreLocationsHeldDetails operation/method
*/
if ($get->getMoreLocationsHeldDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getPhysicalInventoryDetails operation/method
*/
if ($get->getPhysicalInventoryDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationDataForLocation operation/method
*/
if ($get->getLocationDataForLocation($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getOutboundPalletDetails operation/method
*/
if ($get->getOutboundPalletDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getSupervisorCycleCountLocList operation/method
*/
if ($get->getSupervisorCycleCountLocList($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreInboundPalletDetails operation/method
*/
if ($get->getMoreInboundPalletDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreTypedTaskDetails operation/method
*/
if ($get->getMoreTypedTaskDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getItemInformation operation/method
*/
if ($get->getItemInformation($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getZeroQtyCCTaskCount operation/method
*/
if ($get->getZeroQtyCCTaskCount($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getPutawayZoneList operation/method
*/
if ($get->getPutawayZoneList($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getAppointmentDetails operation/method
*/
if ($get->getAppointmentDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getASNLineDetails operation/method
*/
if ($get->getASNLineDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreOutboundPalletDetails operation/method
*/
if ($get->getMoreOutboundPalletDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMorePhysicalInventoryDetails operation/method
*/
if ($get->getMorePhysicalInventoryDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getSupervisorCountDetails operation/method
*/
if ($get->getSupervisorCountDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreAppointmentDetails operation/method
*/
if ($get->getMoreAppointmentDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getASNCounts operation/method
*/
if ($get->getASNCounts($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getCCTasks operation/method
*/
if ($get->getCCTasks($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getCycleClassCodes operation/method
*/
if ($get->getCycleClassCodes($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreTaskDetails operation/method
*/
if ($get->getMoreTaskDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsHeatDetails operation/method
*/
if ($get->getLocationsHeatDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getCountAccuracyDetails operation/method
*/
if ($get->getCountAccuracyDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getItemInformationforAdd operation/method
*/
if ($get->getItemInformationforAdd($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getOrderCounts operation/method
*/
if ($get->getOrderCounts($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getPackInformation operation/method
*/
if ($get->getPackInformation($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getValuesForCodelist operation/method
*/
if ($get->getValuesForCodelist($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getHeatPicksCountLocations operation/method
*/
if ($get->getHeatPicksCountLocations($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreLocationsEmptyDetails operation/method
*/
if ($get->getMoreLocationsEmptyDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreCountAccuracyDetails operation/method
*/
if ($get->getMoreCountAccuracyDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLMTravelSections operation/method
*/
if ($get->getLMTravelSections($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getEmptyLocationsForFacility operation/method
*/
if ($get->getEmptyLocationsForFacility($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsHeldCount operation/method
*/
if ($get->getLocationsHeldCount($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreSupervisorCountDetails operation/method
*/
if ($get->getMoreSupervisorCountDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreASNDetails operation/method
*/
if ($get->getMoreASNDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getTaskDetails operation/method
*/
if ($get->getTaskDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsEmptyDetails operation/method
*/
if ($get->getLocationsEmptyDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreOrderLineDetails operation/method
*/
if ($get->getMoreOrderLineDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getOrderLineDetails operation/method
*/
if ($get->getOrderLineDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getOrderStatusCodes operation/method
*/
if ($get->getOrderStatusCodes($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getTaskCounts operation/method
*/
if ($get->getTaskCounts($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsForFacility operation/method
*/
if ($get->getLocationsForFacility($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getASNDetails operation/method
*/
if ($get->getASNDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getInventoryHoldCodes operation/method
*/
if ($get->getInventoryHoldCodes($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getEmptyOccupiedDetails operation/method
*/
if ($get->getEmptyOccupiedDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getPhysicalInventoryCountsAandB operation/method
*/
if ($get->getPhysicalInventoryCountsAandB($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getWebServiceVersion operation/method
*/
if ($get->getWebServiceVersion($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getOrderDetails operation/method
*/
if ($get->getOrderDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getHoldLocationsForFacility operation/method
*/
if ($get->getHoldLocationsForFacility($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getItemGroups operation/method
*/
if ($get->getItemGroups($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreLocationsHeatDetails operation/method
*/
if ($get->getMoreLocationsHeatDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getCycleCountsAccuracy operation/method
*/
if ($get->getCycleCountsAccuracy($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getHoldSummary operation/method
*/
if ($get->getHoldSummary($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreASNLineDetails operation/method
*/
if ($get->getMoreASNLineDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getOutboundPalletCounts operation/method
*/
if ($get->getOutboundPalletCounts($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getAreaList operation/method
*/
if ($get->getAreaList($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getInboundPalletCounts operation/method
*/
if ($get->getInboundPalletCounts($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLpnsForLocation operation/method
*/
if ($get->getLpnsForLocation($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsHeldDetails operation/method
*/
if ($get->getLocationsHeldDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreOrderDetails operation/method
*/
if ($get->getMoreOrderDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getAuthorizedFacilities operation/method
*/
if ($get->getAuthorizedFacilities($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getAppointmentCounts operation/method
*/
if ($get->getAppointmentCounts($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getDamageLocationsForFacility operation/method
*/
if ($get->getDamageLocationsForFacility($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationsForInventory operation/method
*/
if ($get->getLocationsForInventory($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getMoreHoldDetails operation/method
*/
if ($get->getMoreHoldDetails($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getLocationHeatCounts operation/method
*/
if ($get->getLocationHeatCounts($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getStorerList operation/method
*/
if ($get->getStorerList($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Sample call for getCCLostLocations operation/method
*/
if ($get->getCCLostLocations($String_1) !== false) {
print_r($get->getResult());
} else {
print_r($get->getLastError());
}
/**
* Samples for Test ServiceType
*/
$test = new \ServiceType\Test($options);
/**
* Sample call for test operation/method
*/
if ($test->test($String_1) !== false) {
print_r($test->getResult());
} else {
print_r($test->getLastError());
}
/**
* Samples for Update ServiceType
*/
$update = new \ServiceType\Update($options);
/**
* Sample call for updateZeroQtyCCTasks operation/method
*/
if ($update->updateZeroQtyCCTasks($String_1) !== false) {
print_r($update->getResult());
} else {
print_r($update->getLastError());
}
/**
* Sample call for updateLocations operation/method
*/
if ($update->updateLocations($String_1) !== false) {
print_r($update->getResult());
} else {
print_r($update->getLastError());
}
/**
* Sample call for updateLpns operation/method
*/
if ($update->updateLpns($String_1) !== false) {
print_r($update->getResult());
} else {
print_r($update->getLastError());
}
/**
* Samples for Trigger ServiceType
*/
$trigger = new \ServiceType\Trigger($options);
/**
* Sample call for triggerCycleCount operation/method
*/
if ($trigger->triggerCycleCount($String_1) !== false) {
print_r($trigger->getResult());
} else {
print_r($trigger->getLastError());
}
/**
* Samples for Add ServiceType
*/
$add = new \ServiceType\Add($options);
/**
* Sample call for addLpnFromCount operation/method
*/
if ($add->addLpnFromCount($String_1) !== false) {
print_r($add->getResult());
} else {
print_r($add->getLastError());
}
/**
* Samples for Receive ServiceType
*/
$receive = new \ServiceType\Receive($options);
/**
* Sample call for receiveLpn operation/method
*/
if ($receive->receiveLpn($String_1) !== false) {
print_r($receive->getResult());
} else {
print_r($receive->getLastError());
}
/**
* Samples for Load ServiceType
*/
$load = new \ServiceType\Load($options);
/**
* Sample call for loadLocationsStartingWithKey operation/method
*/
if ($load->loadLocationsStartingWithKey($String_1) !== false) {
print_r($load->getResult());
} else {
print_r($load->getLastError());
}
/**
* Samples for Record ServiceType
*/
$record = new \ServiceType\Record($options);
/**
* Sample call for recordCycleCount operation/method
*/
if ($record->recordCycleCount($String_1) !== false) {
print_r($record->getResult());
} else {
print_r($record->getLastError());
}
/**
* Samples for Perform ServiceType
*/
$perform = new \ServiceType\Perform($options);
/**
* Sample call for performInventoryMove operation/method
*/
if ($perform->performInventoryMove($String_1) !== false) {
print_r($perform->getResult());
} else {
print_r($perform->getLastError());
}
/**
* Samples for Mobile ServiceType
*/
$mobile = new \ServiceType\Mobile($options);
/**
* Sample call for mobileMethod operation/method
*/
if ($mobile->mobileMethod($String_1, $String_2, $String_3) !== false) {
print_r($mobile->getResult());
} else {
print_r($mobile->getLastError());
}
/**
* Samples for Execute ServiceType
*/
$execute = new \ServiceType\Execute($options);
/**
* Sample call for executeAPI operation/method
*/
if ($execute->executeAPI($String_1) !== false) {
print_r($execute->getResult());
} else {
print_r($execute->getLastError());
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO