You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sorry about the slow response, I've just got back from a couple
of weeks on holiday.
The error about an unclosed link tag relates to the examples document
at https://gaia.aip.de/tap/examples.
Although it doesn't explicitly say this in the TAP 1.1 specification,
this document must be XHTML, i.e. well-formed XML (unlike HTML,
close tags may not be omitted); this is written in sec 2.3 of DALI 1.1,
to which the TAP examples document must conform.
There are some unclosed elements in that document:
% curl -s https://gaia.aip.de/tap/examples | xmllint -noout -
-:33: parser error : Opening and ending tag mismatch: link line 30 and head
^
-:1551: parser error : Opening and ending tag mismatch: link line 30 and html
^
-:1552: parser error : EndTag: 'which are causing the problem. That means that the machine-readable
examples are not visible from topcat, though it doesn't itself break
other things.
is reporting something different. The problem here is that the
following query:
SELECT COUNT(*) AS nrow FROM TAP_SCHEMA.columns
which topcat does as part of the metadata acquisition returns a
table with no columns. Looking at it
(REQUEST=doQuery&LANG=ADQL&QUERY=SELECT+COUNT%28*%29+AS+nrow+FROM+TAP_SCHEMA.columns)
the problem seems to be that there is a missing FIELD element in the
output.
If you run topcat with the flags "-verbose -verbose" you can see what
it's doing in a way that may help you to diagnose problems.
TODO
The text was updated successfully, but these errors were encountered: