CARVIEW |
Select Language
HTTP/1.1 200 OK
Server: nginx
Date: Fri, 01 Aug 2025 11:09:48 GMT
Content-Type: text/html;charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
X-XQuery-Cached: true
Set-Cookie: JSESSIONID=node01jxtsf1n7rdc52ru14hnmggmu1165744.node0; Path=/exist
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Security-Policy: frame-ancestors 'self'
Vary: Accept-Encoding, User-Agent
Content-Encoding: gzip
X-Proxy-Cache: MISS
Cache-Control: public, max-age=600
DeleteNameServer - Ascio API v3

Ascio Web Service v3
PHP 5 Classes DeleteNameServer

DeleteNameServerResponse DeleteNameServer(SecurityHeaderDetails $securityHeader,DeleteNameServerRequest $request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
404 | Object not found | |
405 | Access denied | |
406 | Unexpected objectClass | |
501 | Syntax error in parameters or arguments |
DeleteNameServer Request
Property |
---|
request |
PHP 5 Classes example
<?php
namespace ascio\v3\examples;
require("../service/autoload.php");
require("../../lib/AscioConfig.php");
use ascio\v3 as ascio;
use ascio\lib as lib;
function deleteNameServerExample() {
$config = new lib\Config();
$env = $config->get("testing"); //testing or live
$credentials = array("Account"=>$env->getAccount(), "Password" => $env->getPassword());
$headers = [];
$headers[] = new \SoapHeader("https://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
$headers[] = new \SoapHeader("https://www.ascio.com/2013/02","ImpersonationHeaderDetails", ["TransactionAccount" => "mysubaccount"], false);
$ascioClient = new ascio\AscioService(array("trace" => true),$env->getWsdl("v3"));
$ascioClient->__setSoapHeaders($headers);
$request = new ascio\DeleteHandleRequest();
$request->setHandle("JD123");
try {
$response = $ascioClient->DeleteNameServer(new ascio\DeleteNameServer($request));
} catch (\Exception $e) {
echo ("[".$e->faultcode . "] ". $e->faultstring);
return;
}
$result = $response->DeleteNameServerResult;
echo "Code: ".$result->getResultCode()."\n";
echo "Message: ".$result->getResultMessage()."\n";
return $result;
}
deleteNameServerExample();
WSDL for AWS v3
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.