Hello, My application is running a procedure on the server side to convert MS Word files to PDF format. I'm using a third party component for this (aspose.words). Some of the documents contain Chinese or Korean characters and these do not render properly in the PDF (the characters render as squares or blank spaces). On my development server everything works as expected. Here is what I have done so far: In the forums there is a list of fonts installed on the server. I have updated my Word file to use only those fonts. For the unicode characters I have tried several different fonts from the list. I am running my application as full trust (I think) -- I have this in my web.config: <trust level="Full" /> Still, no luck. The component vendor says in their documentation that my application needs to have the following permissions on the server: · Read access to the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts registry key. This key contains the list of TrueType fonts installed on the computer. · Read access to the %windir%\Fonts directory. This is usually C:\Windows\Fonts and contains the TrueType fonts installed on the computer. Thanks for any input on this situation. Randy