Try this in GAVO Sync page (http://dc.zah.uni-heidelberg.de/__system__/tap/run/tap/async) at bottom, select HTML as output.
select ivoid, res_type, short_name, res_description, reference_url, content_type, res_version
from rr.resource
where ivoid like '%ivo://irsa.ipac/wise%'
Find WISE image services:
select ivoid, res_type, short_name, res_description, reference_url, content_type, res_version, rr.capability.*
from rr.resource
natural join rr.capability
where ivoid like '%ivo://irsa.ipac/wise%'
and standard_id='ivo://ivoa.net/std/sia'
Find WISE TAP services:
select ivoid, res_type, short_name, res_description, reference_url, content_type, res_version, rr.capability.*
from rr.resource
natural join rr.capability
where ivoid like '%ivo://irsa.ipac/wise%'
and standard_id like 'ivo://ivoa.net/std/tap%'