1 Title: SOAP based webservice from Dell to check server support status
5 <p>A few years ago I wrote
6 <a href="http://www.hungry.com/~pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html">how
7 to extract support status</a> for your Dell and HP servers. Recently
8 I have learned from colleges here at the
9 <a href="http://www.uio.no/">University of Oslo</a> that Dell have
10 made this even easier, by providing a SOAP based web service. Given
11 the service tag, one can now query the Dell servers and get machine
12 readable information about the support status. This perl code
13 demonstrate how to do it:</p>
20 my $GUID = '11111111-1111-1111-1111-111111111111';
22 my $servicetag = $ARGV[0] or die "Please supply a servicetag. $!\n";
23 my ($deal, $latest, @dates);
25 -> uri('http://support.dell.com/WebServices/')
26 -> on_action( sub { join '', @_ } )
27 -> proxy('http://xserv.dell.com/services/assetservice.asmx')
29 my $a = $s->GetAssetInformation(
30 SOAP::Data->name('guid')->value($GUID)->type(''),
31 SOAP::Data->name('applicationName')->value($App)->type(''),
32 SOAP::Data->name('serviceTags')->value($servicetag)->type(''),
34 print Dumper($a -> result) ;
37 <p>The output can look like this:</p>
43 'EntitlementData' => [
45 'EntitlementType' => 'Expired',
46 'EndDate' => '2009-07-29T00:00:00',
48 'StartDate' => '2006-07-29T00:00:00',
52 'EntitlementType' => 'Expired',
53 'EndDate' => '2009-07-29T00:00:00',
55 'StartDate' => '2006-07-29T00:00:00',
59 'EntitlementType' => 'Expired',
60 'EndDate' => '2007-07-29T00:00:00',
62 'StartDate' => '2006-07-29T00:00:00',
67 'AssetHeaderData' => {
68 'SystemModel' => 'GX620',
69 'ServiceTag' => '8DSGD2J',
70 'SystemShipDate' => '2006-07-29T19:00:00-05:00',
73 'SystemID' => 'PLX_GX620',
74 'SystemType' => 'OptiPlex'
80 <p>I have not been able to find any documentation from Dell about this
82 <a href="http://xserv.dell.com/services/assetservice.asmx?op=GetAssetInformation">inline
83 documentation</a>, and according to
84 <a href="http://iboyd.net/index.php/2012/02/14/updated-dell-warranty-information-script/">one
85 comment</a> it can have stability issues, but it is a lot better than
86 scraping HTML pages. :)</p>
88 <p>Wonder if HP and other server vendors have a similar service. If
89 you know of one, drop me an email. :)</p>