J
Jonathan Wood
I'm writing code to poll PAD files from various URLs. (A PAD file is an XML
file that contains information about a shareware product.)
My code to retrieve the file looks something like this
WebClient client = new WebClient();
XmlDocument doc = new XmlDocument();
doc.Load(client.OpenRead(url));
I then parse the file using the doc object. In general, this works. However,
I'm getting a number of errors, yet when I attempt to view the file in a
browser, it works fine.
Below are some of the sites and error that was raised. I know the Web has
been flakey for me in recent works but these sites all seem to come up very
fast in a browser. Am I doing anything wrong?
Thanks.
http://www.getfreefile.com/pad/abomber.xml -- The remote name could not be
resolved: 'www.getfreefile.com'
http://www.hvpb.com/HVPB.xml -- The remote server returned an error: (404)
Not Found.
http://www.cdilab.com/amm/pad_file.xml -- The remote name could not be
resolved: 'www.cdilab.com'
http://www.elcomsoft.com/AOPR/aopr.xml -- The remote server returned an
error: (404) Not Found.
http://www.elcomsoft.com/AOLPR/aolpr.xml -- The remote server returned an
error: (404) Not Found.
http://car-screensavers.screensaversfree.biz/bmw/bmw-x3/pad_file.xml -- The
remote name could not be resolved: 'car-screensavers.screensaversfree.biz'
http://www.elcomsoft.com/APDFPR/apdfpr.xml -- The remote server returned an
error: (404) Not Found.
http://www.pdf-repair.com/apdfr.xml -- The remote name could not be
resolved: 'www.pdf-repair.com'
http://www.intrapdf.com/dp/app-005719a4c33/site-001b1da2d96/lng-eng/pdf_to_html.xml -
- The remote name could not be resolved: 'www.intrapdf.com'
http://www.concelsys.com/aprFiles/apr.xml -- The remote server returned an
error: (404) Not Found.
http://www.bluecataudio.com/Products/Product_StereoScopeMulti/pad.xml -- The
remote server returned an error: (404) Not Found.
http://www.innovative-sol.com/soft/pad/killer.xml -- The remote name could
not be resolved: 'www.innovative-sol.com'
http://www.bluecataudio.com/Products/Product_StereoScopePro/pad.xml -- The
remote server returned an error: (404) Not Found.
http://www.elcomsoft.com/ARPR/arpr.xml -- The remote server returned an
error: (404) Not Found.
http://www.patilan.com/PassGenerator.xml -- The remote server returned an
error: (404) Not Found.
Jonathan
file that contains information about a shareware product.)
My code to retrieve the file looks something like this
WebClient client = new WebClient();
XmlDocument doc = new XmlDocument();
doc.Load(client.OpenRead(url));
I then parse the file using the doc object. In general, this works. However,
I'm getting a number of errors, yet when I attempt to view the file in a
browser, it works fine.
Below are some of the sites and error that was raised. I know the Web has
been flakey for me in recent works but these sites all seem to come up very
fast in a browser. Am I doing anything wrong?
Thanks.
http://www.getfreefile.com/pad/abomber.xml -- The remote name could not be
resolved: 'www.getfreefile.com'
http://www.hvpb.com/HVPB.xml -- The remote server returned an error: (404)
Not Found.
http://www.cdilab.com/amm/pad_file.xml -- The remote name could not be
resolved: 'www.cdilab.com'
http://www.elcomsoft.com/AOPR/aopr.xml -- The remote server returned an
error: (404) Not Found.
http://www.elcomsoft.com/AOLPR/aolpr.xml -- The remote server returned an
error: (404) Not Found.
http://car-screensavers.screensaversfree.biz/bmw/bmw-x3/pad_file.xml -- The
remote name could not be resolved: 'car-screensavers.screensaversfree.biz'
http://www.elcomsoft.com/APDFPR/apdfpr.xml -- The remote server returned an
error: (404) Not Found.
http://www.pdf-repair.com/apdfr.xml -- The remote name could not be
resolved: 'www.pdf-repair.com'
http://www.intrapdf.com/dp/app-005719a4c33/site-001b1da2d96/lng-eng/pdf_to_html.xml -
- The remote name could not be resolved: 'www.intrapdf.com'
http://www.concelsys.com/aprFiles/apr.xml -- The remote server returned an
error: (404) Not Found.
http://www.bluecataudio.com/Products/Product_StereoScopeMulti/pad.xml -- The
remote server returned an error: (404) Not Found.
http://www.innovative-sol.com/soft/pad/killer.xml -- The remote name could
not be resolved: 'www.innovative-sol.com'
http://www.bluecataudio.com/Products/Product_StereoScopePro/pad.xml -- The
remote server returned an error: (404) Not Found.
http://www.elcomsoft.com/ARPR/arpr.xml -- The remote server returned an
error: (404) Not Found.
http://www.patilan.com/PassGenerator.xml -- The remote server returned an
error: (404) Not Found.
Jonathan