I'm POSTing some data to an IIS server which replies with an simple id (here 1692945):

Cache-Control: private
Content-Type: text; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Tue, 23 Aug 2011 17:08:37 GMT
Content-Length: 7

1692945

The text content type seems to confuse Jsoup which throws an:

Exception in thread "main" java.io.IOException: Unhandled content type "null" on URL http://domain.com/svr_listing.aspx. Must be text/*, application/xml, or application/xhtml+xml

Is there a way to specify that the response must be trated as text/plain? Is this a jsoup bug?

Thanks,

Nicolas

link|improve this question
I don't think its a valid content type. I always thought they had to be a type and subtype, separated by a /. – Damien_The_Unbeliever Aug 24 '11 at 7:49
Yes, I think that the problem is due to IIS sending a wrong Content-Type. So my question is to know if it's possible to specify the jsoup to explicitly interpret the response as text/plain. – Nicolas Girardin Aug 24 '11 at 8:09
1  
Report it to the server admin of the website in question. – BalusC Aug 24 '11 at 13:28
I'm building a scrapper to automate the postings of listings to a property listings portal. I don't know if the website owner likes that kind of automated interaction with their websites so I prefer being discrete... – Nicolas Girardin Aug 24 '11 at 17:49
feedback

2 Answers

up vote 3 down vote accepted

jsoup checks the response type by default, to protect you from accidently trying to parse images and PDFs etc as HTML. Because it doesn't recognise text as a valid HTML content-type, it is throwing an exception.

You can force jsoup to ignore the content-type and parse the response as HTML with the Connection.ignoreContentType() method.

E.g.

Document doc = Jsoup.connect(url).ignoreContentType(true).get(); // or .post();
link|improve this answer
Wonderful! It's a shame that I didn't came on this option on my own! Thanks! :) – Nicolas Girardin Aug 27 '11 at 16:32
feedback

Jsoup can read data from String objects. Why not use an InputStreamReader to read the server response into a String, then have JSoup parse the response?

link|improve this answer
As I'm using Scala I think that dispatch.databinder.net would be a great fit for the task. – Nicolas Girardin Aug 25 '11 at 14:38
Never heard of dispatcher.databinder.net before, looks like a great library! – John Aug 25 '11 at 14:43
I'm still a Scala n00b but it seems more natural than jsoup – Nicolas Girardin Aug 25 '11 at 15:28
Jsoup's strong point is that it was designed to deal with poorly written HTMLs, i.e., real-world html. How about Dispatch? How well does it handle mal-formatted html (i.e., an page with missing tags)? – John Aug 25 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.