vote up 0 vote down star

Hi,

I'm trying to create some mixed HTML/SVG content and having some trouble. The HTML content shows up as expected, but the inline SVG does not. So, I do some experiments.

I find sites which have examples of inline SVG, and they render correctly on my system. So, I "view page source" and copy/paste the HTML/SVG into another local file, and open this file in Firefox. No inline SVG is visible.

I also tried the same experiment with Chrome, same results.

What might I be missing?

flag

4 Answers

vote up 0 vote down

Slight change in identity on my part: k montgomery -> kmontgom on use of OpenID.

Anyway thanks to all those who answered. The best solution was in setting the Response.ContentType; this lets me continue on with the WebForms approach for now.

I had contemplated making pure XHTML content in .xml files and using ASP.NET MVC to serve up that content. I may end up doing that in the future.

Now, onward with jQuery, SVG, and making the thing do something.

Thanks for all the help.

link|flag
vote up 0 vote down

As Greg said, it needs to be a file that Firefox recognises as an XHTML file, not just regular HTML, which is what that renaming accomplished. In order to get that from a server-side app, you need to set the response's Content-type header to application/xhtml+xml.

link|flag
vote up 5 vote down

In order for inline SVG to be shown in browsers, the page must be XHTML valid and must be serverd with application/xhtml+xml mime-type server response header.

It is also possible to pull inline SVG content from HTML page as well, see an example of an SVG Tiger image that can also be viewed in Internet Explorer (5.5+)

link|flag
ASP.NET example: Response.ContentType = "application/xhtml+xml" – Jørn Schou-Rode Jul 11 at 21:34
Note that this shouldn't be an issue in future versions of Firefox. See hsivonen.iki.fi/test-html5-parsing – sdwilsh Jul 12 at 1:33
vote up 3 vote down

Make sure to name the file ".xml" not ".html"

link|flag
Thanks! That works. Now the next question is how to make ASP.NET generate a .XML file instead of .HTM or .HTML – k montgomery Jul 11 at 20:35
'fraid I don't know the answer to that one – Greg Jul 11 at 20:43
k montgomery, I guess you can set a mime-type header, see my reply for details. – Sergey Ilinsky Jul 11 at 20:49
Thanks for this tip. I spent an entire day trying to make this work. Even setting a meta content=application/xhtml+xml didn't work. – Xymor Nov 1 at 18:21
Here is some more info on that. There's a differnet if the file is opened locally or if it is served. wiki.svg.org/Inline_SVG#Choosing_a_Filename_Exten… – kioopi Nov 3 at 0:48

Your Answer

Get an OpenID
or

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