Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So here is the thing, we have a saas webapplication which uses a special font to display icons. So instead of using numerous png's we use a <span> with a class icon.

The CSS file starts with the @font-face tag, which was mainly generated by fontsquirrel and looks as follows:

@font-face {
    font-family: 'iconsregular';
    src: url('../../Content/fonts/icons-webfont.eot');
    src: url('../../Content/fonts/icons-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../Content/fonts/icons-webfont.woff') format('woff'),
         url('../../Content/fonts/icons-webfont.ttf') format('truetype'),
         url('../../Content/fonts/icons-webfont.svg#iconsregular') format('svg');
         font-weight: normal;
         font-style: normal;
 }

This displays perfectly in all our supported browsers (IE7, 8, 9, FF, Safari & Chrome). But when the website is accessed through a remote desktop client. the webfont is not used. But the CSS file and .eot file are downloaded.

Reproducing the error

So I started testing and trying to reproduce the issue. When I took these steps, the error occurred:

  1. Connect to Remote Desktop A (Server 2008)
  2. Open IE9
  3. Browse to the website
  4. Fonts not shown.

Then I connected to a different server:

  1. Connect to Remote Desktop B (Server 2008)
  2. Open Firefox
  3. Browse to the website
  4. Fonts are shown!
  5. Open website in IE9
  6. Fonts are shown also, some goes for Chrome

After this surprise i reconnected to RD A again.

  1. Open IE9
  2. Fonts are shown...

It seems that the RDP client caches its fonts somewhere and at some time.

When and how does this happen? And are there ways to force the RDP client in downloading and displaying @font-face webfonts?

share|improve this question
What do you mean by "But is downloaded and visible in the CSS."? – Vidar S. Ramdal Feb 6 at 11:54
the CSS file and the .eot font file are downloaded. – MatthijsM Feb 6 at 12:46

migrated from webapps.stackexchange.com Feb 6 at 12:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.