Certain website returning Null with HTML Agility Pack











up vote
0
down vote

favorite












So I'm trying to scrape a website and I'm using HTML Agility Pack to try and do this. I have tried my code on the html-agility-pack and google websites and it seem to work fine with this simple search.



My problem is the code is returning an error ("System.NullReferenceException: 'Object reference not set to an instance of an object.'") on this line of code:



Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);


I understand this is happening because the var node is returning Null but why is this happening on this website and not on the others?



        //var html = @"http://html-agility-pack.net/";
var html = @"https://www./";
//var html = @"https://www.google.com/";

HtmlWeb web = new HtmlWeb();
HtmlDocument htmlDoc = web.Load(html);

if (web.StatusCode == HttpStatusCode.OK)
{
Console.WriteLine("CONNECTION OK");
var node = htmlDoc.DocumentNode.SelectSingleNode("//head/title");

Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);
Console.ReadLine();
}else
{
Console.WriteLine("No Connection to website");
Console.ReadLine();
}









share|improve this question




















  • 1




    I tried your code and it is working fine for me
    – uda
    Nov 12 at 7:22










  • @uda It worked the first time but then its returns Null after. I put a loop in and tried a few pages from that site but its not working at all. I think the site is somehow blocking the scraper, is there any way to get around it?
    – HitmanHeathcote
    Nov 12 at 20:55










  • can you please show the entire loop code also
    – uda
    Nov 13 at 1:20










  • @uda sorry for the late reply, I found out the website was redirecting me to a robot page as it recognised I was scraping. I manually copy and pasted the data I need as I didnt know a way around it.
    – HitmanHeathcote
    Nov 17 at 10:55















up vote
0
down vote

favorite












So I'm trying to scrape a website and I'm using HTML Agility Pack to try and do this. I have tried my code on the html-agility-pack and google websites and it seem to work fine with this simple search.



My problem is the code is returning an error ("System.NullReferenceException: 'Object reference not set to an instance of an object.'") on this line of code:



Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);


I understand this is happening because the var node is returning Null but why is this happening on this website and not on the others?



        //var html = @"http://html-agility-pack.net/";
var html = @"https://www./";
//var html = @"https://www.google.com/";

HtmlWeb web = new HtmlWeb();
HtmlDocument htmlDoc = web.Load(html);

if (web.StatusCode == HttpStatusCode.OK)
{
Console.WriteLine("CONNECTION OK");
var node = htmlDoc.DocumentNode.SelectSingleNode("//head/title");

Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);
Console.ReadLine();
}else
{
Console.WriteLine("No Connection to website");
Console.ReadLine();
}









share|improve this question




















  • 1




    I tried your code and it is working fine for me
    – uda
    Nov 12 at 7:22










  • @uda It worked the first time but then its returns Null after. I put a loop in and tried a few pages from that site but its not working at all. I think the site is somehow blocking the scraper, is there any way to get around it?
    – HitmanHeathcote
    Nov 12 at 20:55










  • can you please show the entire loop code also
    – uda
    Nov 13 at 1:20










  • @uda sorry for the late reply, I found out the website was redirecting me to a robot page as it recognised I was scraping. I manually copy and pasted the data I need as I didnt know a way around it.
    – HitmanHeathcote
    Nov 17 at 10:55













up vote
0
down vote

favorite









up vote
0
down vote

favorite











So I'm trying to scrape a website and I'm using HTML Agility Pack to try and do this. I have tried my code on the html-agility-pack and google websites and it seem to work fine with this simple search.



My problem is the code is returning an error ("System.NullReferenceException: 'Object reference not set to an instance of an object.'") on this line of code:



Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);


I understand this is happening because the var node is returning Null but why is this happening on this website and not on the others?



        //var html = @"http://html-agility-pack.net/";
var html = @"https://www./";
//var html = @"https://www.google.com/";

HtmlWeb web = new HtmlWeb();
HtmlDocument htmlDoc = web.Load(html);

if (web.StatusCode == HttpStatusCode.OK)
{
Console.WriteLine("CONNECTION OK");
var node = htmlDoc.DocumentNode.SelectSingleNode("//head/title");

Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);
Console.ReadLine();
}else
{
Console.WriteLine("No Connection to website");
Console.ReadLine();
}









share|improve this question















So I'm trying to scrape a website and I'm using HTML Agility Pack to try and do this. I have tried my code on the html-agility-pack and google websites and it seem to work fine with this simple search.



My problem is the code is returning an error ("System.NullReferenceException: 'Object reference not set to an instance of an object.'") on this line of code:



Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);


I understand this is happening because the var node is returning Null but why is this happening on this website and not on the others?



        //var html = @"http://html-agility-pack.net/";
var html = @"https://www./";
//var html = @"https://www.google.com/";

HtmlWeb web = new HtmlWeb();
HtmlDocument htmlDoc = web.Load(html);

if (web.StatusCode == HttpStatusCode.OK)
{
Console.WriteLine("CONNECTION OK");
var node = htmlDoc.DocumentNode.SelectSingleNode("//head/title");

Console.WriteLine("Node Name: " + node.Name + "n" + node.OuterHtml);
Console.ReadLine();
}else
{
Console.WriteLine("No Connection to website");
Console.ReadLine();
}






c# web-scraping html-agility-pack






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 17 at 16:26

























asked Nov 11 at 20:47









HitmanHeathcote

105




105








  • 1




    I tried your code and it is working fine for me
    – uda
    Nov 12 at 7:22










  • @uda It worked the first time but then its returns Null after. I put a loop in and tried a few pages from that site but its not working at all. I think the site is somehow blocking the scraper, is there any way to get around it?
    – HitmanHeathcote
    Nov 12 at 20:55










  • can you please show the entire loop code also
    – uda
    Nov 13 at 1:20










  • @uda sorry for the late reply, I found out the website was redirecting me to a robot page as it recognised I was scraping. I manually copy and pasted the data I need as I didnt know a way around it.
    – HitmanHeathcote
    Nov 17 at 10:55














  • 1




    I tried your code and it is working fine for me
    – uda
    Nov 12 at 7:22










  • @uda It worked the first time but then its returns Null after. I put a loop in and tried a few pages from that site but its not working at all. I think the site is somehow blocking the scraper, is there any way to get around it?
    – HitmanHeathcote
    Nov 12 at 20:55










  • can you please show the entire loop code also
    – uda
    Nov 13 at 1:20










  • @uda sorry for the late reply, I found out the website was redirecting me to a robot page as it recognised I was scraping. I manually copy and pasted the data I need as I didnt know a way around it.
    – HitmanHeathcote
    Nov 17 at 10:55








1




1




I tried your code and it is working fine for me
– uda
Nov 12 at 7:22




I tried your code and it is working fine for me
– uda
Nov 12 at 7:22












@uda It worked the first time but then its returns Null after. I put a loop in and tried a few pages from that site but its not working at all. I think the site is somehow blocking the scraper, is there any way to get around it?
– HitmanHeathcote
Nov 12 at 20:55




@uda It worked the first time but then its returns Null after. I put a loop in and tried a few pages from that site but its not working at all. I think the site is somehow blocking the scraper, is there any way to get around it?
– HitmanHeathcote
Nov 12 at 20:55












can you please show the entire loop code also
– uda
Nov 13 at 1:20




can you please show the entire loop code also
– uda
Nov 13 at 1:20












@uda sorry for the late reply, I found out the website was redirecting me to a robot page as it recognised I was scraping. I manually copy and pasted the data I need as I didnt know a way around it.
– HitmanHeathcote
Nov 17 at 10:55




@uda sorry for the late reply, I found out the website was redirecting me to a robot page as it recognised I was scraping. I manually copy and pasted the data I need as I didnt know a way around it.
– HitmanHeathcote
Nov 17 at 10:55

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253076%2fcertain-website-returning-null-with-html-agility-pack%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253076%2fcertain-website-returning-null-with-html-agility-pack%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Florida Star v. B. J. F.

Error while running script in elastic search , gateway timeout

Adding quotations to stringified JSON object values