Таблица стилей XML href не работает с абсолютным URL

571
daviddgz

Я пытаюсь выяснить, почему первый XML предварительно просматривается в IE, а не второй:

<?xml version="1.0" standalone="yes"?> <?xml-stylesheet type="text/xsl" href="d:\Dropbox\Public\style.xsl"?> 

Так что это работает, но не это:

<?xml version="1.0" standalone="yes"?> <?xml-stylesheet type="text/xsl" href="http://example.org/style.xsl"?> 

Разве вы не можете использовать абсолютные пути в значении href? Я хочу, чтобы каждый мог просматривать XML без необходимости отправки файла XSL.

0

1 ответ на вопрос

1
Nathan.Eilisha Shiraini

Not sure if that's the actual cause of your problem, but something that might cause it is the standalone="yes" in your XML declaration.

If your file needs any external file for any reason (including DTDs, schemas... and stylesheets), there should be either nothing or standalone="no".

К сожалению, это не сработало, есть другие идеи? daviddgz 8 лет назад 0

Похожие вопросы