Open GoogleCodeExporter opened 8 years ago
I was wrong about the version used, it is 1.4.4 according to the landing page.
Interesstingly I tryed to use the IE in different Versions (8,9) on different
Machines (Win7) and somehow it seems to work for some combinations allthough
the meassures take to clear the caches and the cookies were the same
Original comment by alex.sta...@googlemail.com
on 12 Jul 2012 at 2:39
With the Help of a colleague I was able to determine the cause of the issue.
It seems that certain versions of IE (which is unfortunately very common with
our research partners) send malformed mimetyp and request headers which causes
the ontology-browser to return the NPE. To fix this one will have to add an
null-pointer check in the
owlbrowser/src/coode/www/servlet/AbstractOntologyServerServlet.java file.
in line 209.
eg.
OntologyBrowserConstants.RequestFormat r =
OntologyBrowserConstants.RequestFormat.get(mime);
if (r != null)
return r;
in any other case which would be the case for the certain IE Versions html will
be returned.
Best regards
Alex
Original comment by alex.sta...@googlemail.com
on 15 Aug 2012 at 9:37
Original comment by alex.sta...@googlemail.com
on 15 Aug 2012 at 9:39
Attachments:
Original issue reported on code.google.com by
alex.sta...@googlemail.com
on 11 Jul 2012 at 8:03