Ascio DNS
Class ZoneLogEntry
Property | Type |
---|---|
Action | |
ActionBy | |
ActionByIpAddress | |
ActionDate | |
Record | |
ZoneName |
use SOAP::Lite;
use Date::Format;
$proxy = "https://dnsservice.demo.ascio.com/DnsService.svc";
$namespace = "http://www.ascio.com/2007/01";
$soap = SOAP::Lite->on_action( sub { "" } )->proxy($proxy);
$soap->autotype(0);
$method = SOAP::Data->name("ZoneLogEntry")->attr({xmlns => $namespace});
#WebForward
$record = \SOAP::Data->value(
SOAP::Data->name('Source','www.testing-ascio.com'),
SOAP::Data->name('TTL',3600),
SOAP::Data->name('Target','5.6.7.8')
);
#ZoneLogEntry
$zoneLogEntry = \SOAP::Data->value(
SOAP::Data->name('Action','ActionTest'),
SOAP::Data->name('ActionBy','ActionByTest'),
SOAP::Data->name('ActionByIpAddress','ActionByIpAddressTest'),
SOAP::Data->name('ActionDate',time2str('%Y-%m-%dT%H:%M:%SZ', time, 'EST')),
SOAP::Data->name('Record',$record)->attr({"xsi:type" => "WebForward"});,
SOAP::Data->name('ZoneName','ZoneNameTest')
);
WSDL AscioDns
https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl (OTE)
https://dnsservice.ascio.com/2010/10/30/DnsService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl (OTE)
https://dnsservice.ascio.com/2010/10/30/DnsService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.