I'm writing a script that loops through a list of machines and returns various things about that machine. One of the things I return is a Dell Service Tag pulled from WMI. I then use the service tag and create a New-WebServiceProxy
object to return various warranty information from Dell. The script will run fine at first but after a while when I make request to Dell it start giving the following error:
New-WebServiceProxy : The request failed with HTTP status 401: Authorization Required.
At C:\..\..\..\ServerInfo.ps1:68 char:15
+ $service = New-WebServiceProxy -Uri http://xserv.dell.com/services/assetservi ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (http://xserv.de...rvice.asmx?WSDL:Uri) [New-WebServiceProxy], WebExcept
ion
+ FullyQualifiedErrorId : WebException,Microsoft.PowerShell.Commands.NewWebServiceProxy
What I can not seem to figure out it why this error is happening. I've done some research and I'v found that people who normally encounter this error are not login into the web service they are making calls to. This web service doesn't require authentication of any sort! Why does it work fine for so long and then error out? I've tried limiting the amounts of calls I make as if I'm send to many request, but even waiting two minutes between each call it still eventually errors out.
Here is the code block that cause this error:
$STAG = "XXXXXXX" #ServiceTag $WebProxy = New-WebServiceProxy -Uri http://xserv.dell.com/services/assetservice.asmx?WSDL $GUID = [guid]::NewGuid() $Return = $WebProxy.GetAssetInformation($GUID,'CheckWarranty',$STAG) $Return[0].Entitlements[0].ServiceLevelDescription.ToString()
So what I'm asking is why does this error out, after so many requests There is no authentication required, so why is telling me it needs authentication?