Font.properties not found

Hi,
I developped a graphical interface that has to be run on a Linux Station. The problem is that I get the following error message when I want to run it: "Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]"
Does someone have an idea ?
Thanks in advance, Fred.

Please how can I eliminate this messages??

Similar Messages

  • "Font.properties not found" error when runInstaller in Suse 7.3 + 9iDB_R2

    when I try to install 9iDB_R2 in Suse 7.3, the runInstaller have this error:
    " Font specified in font.properties not found [--Symbol -medium -r-normal--*-%d-*-*-p-*-adobe-fontspecific] "
    the [Next] button in the installer does not response, but the [Deinstall Products] and [About Oracle Universal Installer] has response and display what normally does.
    I installed almost everything except games and multimedia when installing Suse 7.3
    What is the possible reason?

    I am not sure that I can help you much, but it sounds like a Java install error. The installer uses the JVM to do the install. Do you have any other Java virtual machines loaded on the machine.
    If you do a java -version
    what shows up? I kinda hope that nothing shows up or at worst case is is jdk.1.3.1
    This may be what is causing the problem. Also I believe that there was suppose to be system variables set in the shell you are installing from. Are those set? It has been a while since I installed 9i on RedHat.

  • Font specified in font.properties not found

    Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    This message gets printed around 3 dozen times on the screen every time I start a Swing app with JDK 1.3 on SuSE Linux 7.3.
    With J2SDK 1.4 this does not happen and the main font being used in the app is different.
    How do I solve this bug in JDK 1.3?

    How did you solve this? Could you please share your secret. I am facing the same problem on Solaris and would love to find a solution.

  • For xml reports in ebs, if default font is not found, what does OPP do?

    If the OPP is unable to locate a font file while merging an XML report in EBS R12.1.3 running on AIX (BI Version 5.6.3), what does it do?  Is there a default set somewhere, and if so, can it be changed?  Can it be changed only at the site level, or at the indvidual template level?  Is there just one default or can you specify a different default for each font?  Is there anyway to force the merge to error if the requested font is not found?

    it's very difficult to say
    you can seek some MOS for specific problem
    IMHO
    based on
    Specific Special Characters Are Not Getting Printed In Pdf Output Format From XML Publisher Reports (Doc ID 1283873.1)
    i try to suppose that some symbol will be incorrect without needed fonts and in OPP you can (may be) see some messages
    based on
    Slovak Characters Appear as Question Marks in XML Publisher PDF Output (Doc ID 1364992.1)
    you can see question marks instead of characters

  • When going from a Mac-based Ai to a PC based Ai, the documents "Font" are not found on the PC version?  (mostly Helvetica) where and how do I get those Fonts?  And/or, can I use the Mac version of these Fonts?

    When going from a Mac-based Ai to a PC based Ai, the documents "Font" are not found on the PC version?  (mostly Helvetica) where and how do I get those Fonts?  And/or, can I use the Mac version of these Fonts?
    Thanks, Rich

    In order to be cross platform you must be using the Open Type version of all fonts to cause the least disruption. Macs can read and process the Windows .ttf  type format but PCs can't process Mac formatted type. Most recent versions also cannot use the older PS Type 1 fonts.

  • JAXB 1.0 Final: jaxb.properties not found when using custom classloader

    JDK 1.3.1 is being used.
    The scenario:
    1) jaxb jar files, jaxb generated files and application files loaded in default class loader works, however
    2) jaxb jar files, jaxb generated files and application files loaded in a custom class loader generate the following exception:
    javax.xml.bind.JAXBException: Unable to locate jaxb.properties for package XXX
    To demonstrate here are two sample applications: a Launcher app whose job it is to start apps and a sample App1 application who needs JAXB.
    If launch is placed into a jar file named launch.jar and App1 is placed into a jar file named app1.jar (with a JAXB generated package), and both jar files are placed in a directory containing all the JAXB 1.0 jar files (dom, sax, namespace, etc) and the system is started with the following:
    jre\bin\java -cp launch.jar; testLaunch.launch
    the exception occurs.
    By way of comparison, if App1 is started directly with the following:
    jre\bin\java -cp app1.jar;jax-qname.jar;jaxb-xjc.jar;jaxb-ri.jar;jaxb-libs.jar;jaxb-api.jar;dom.jar;sax.jar;jaxp-api.jar;xercesImpl.jar;namespace.jar;ant.jar;xalan.jar testApp.app1
    the exception does not occur.
    Any help would be greatly appreciated.
    package testLaunch;
    import java.net.*;
    import java.io.*;
    public class launch extends javax.swing.JFrame
        private static URLClassLoader app1ClassLoader_; 
        private static Class  app1EntryClass_ = null;
        private static final String app1MainClassName_ = "testApp.app1";
        private Object appObj_ = null;
         static public void main(String args[])
              try {
                System.out.println("Launch Main");               
                new launch();          
                  System.exit(0);
              catch (Throwable t) {
                   t.printStackTrace();
                   System.exit(1);
         public launch()
            if (app1ClassLoader_== null)
                loadAppClassLoader();
            try{
                if (app1EntryClass_ == null)
                    app1EntryClass_ = app1ClassLoader_.loadClass(app1MainClassName_);
                if (app1EntryClass_ == null)
                    System.out.println(app1MainClassName_ + " was not found");
                else
                    appObj_ = app1EntryClass_.newInstance();
            catch(ClassNotFoundException x){
                x.printStackTrace();
            catch(Exception x){
                x.printStackTrace();
        private static void loadAppClassLoader()
            String jarPath = jarPath = System.getProperty("user.dir");
            System.out.println("jar path is: " + jarPath);
            try{
                File jarfile1 = new File(jarPath+File.separator+"app1.jar");
                File jarfile2 = new File(jarPath+File.separator+"dom.jar");
                File jarfile3 = new File(jarPath+File.separator+"jaxp-api.jar");
                File jarfile4 = new File(jarPath+File.separator+"jaxb-api.jar");
                File jarfile5 = new File(jarPath+File.separator+"jaxb-xjc.jar");
                File jarfile6 = new File(jarPath+File.separator+"jaxb-ri.jar");
                File jarfile7 = new File(jarPath+File.separator+"jaxb-libs.jar");
                File jarfile8 = new File(jarPath+File.separator+"jax-qname.jar");
                File jarfile9 = new File(jarPath+File.separator+"sax.jar");
                File jarfile10 = new File(jarPath+File.separator+"xercesImpl.jar");
                File jarfile11 = new File(jarPath+File.separator+"namespace.jar");
                File jarfile12 = new File(jarPath+File.separator+"xalan.jar");
                File jarfile13 = new File(jarPath+File.separator+"ant.jar");
                if (!jarfile1.exists())
                    System.out.println("**ERROR " + jarfile1 + " does not exist!");
                app1ClassLoader_ = new URLClassLoader( new URL[]{jarfile1.toURL(),
                                                                jarfile2.toURL(),
                                                                jarfile3.toURL(),
                                                                jarfile4.toURL(),
                                                                jarfile5.toURL(),
                                                                jarfile6.toURL(),
                                                                jarfile7.toURL(),
                                                                jarfile8.toURL(),
                                                                jarfile9.toURL(),
                                                                jarfile10.toURL(),
                                                                jarfile11.toURL(),
                                                                jarfile12.toURL(),
                                                                jarfile13.toURL()} );
            catch(Exception x){
                x.printStackTrace();
                return;
    package testApp;
    import javax.xml.bind.*; // JAXB classes
    import myGeneratedJAXBFiles;
    public class app1 extends javax.swing.JFrame
         static public void main(String args[])
              try {
                System.out.println("App1 Main");               
                new app1();           
                  System.exit(0);
              catch (Throwable t) {
                   t.printStackTrace();
                   System.exit(1);
         public app1()
            try
                JAXBContext jc_ = JAXBContext.newInstance( "myGeneratedJAXBFiles" );
                System.out.println("Successfully loaded JAXB Context");          
            catch (JAXBException jbe)
                jbe.printStackTrace();

    I'm doing something very similar. In fact my launcher is also stored in launcher.jar. It will start any application on the classpath and load dependencies jars located in the specified directory.
    The first thing you must do is specify the classloader when constructing the jaxb context:
    JAXBContext jc = JAXBContext.newInstance(xmlPackage, getClass().getClassLoader());
    After this I was still raning into the "jaxb.properties not found" exception in some situations. Basically if the class using the jaxb files is located in the same jar as jaxb.properties everything worked fine. However if the class using the jaxb objects was located in a different jar it did not work.
    I had to add the following early in the execution of the application that load the plugins to get things working correctly:
    Thread.currentThread().setContextClassLoader(jarDirClassLoader);
    As far as I can tell JAXB using the Context class loader to find the jaxb.properties file.
    I'm using JAXB 1.1
    I hope this helps!

  • Getting warning ApplicationResources_en_GB.properties not found

    I am using struts1.3 and JBoss4.0.3 as a server.
    I have declared ApplicationResources.propeties in struts-config.xml like
    <message-resources parameter="com.resources.ApplicationResources"/>
    If I see in the server.log I found the warning like below..
    WARN [org.apache.struts.util.PropertyMessageResources] Resource com/resources/ApplicationResources_en.properties Not Found.
    WARN [org.apache.struts.util.PropertyMessageResources] Resource com/resources/ApplicationResources_en_GB.properties Not Found.
    Could anybody tell the solutions to avoid the warning messages in the server.log
    (I dont want the warning messages like above-its a requirement)

    Add those properties files?
    That is the library using I18n, which looks for a version of the resource requested for the current language in the current country, first, then for the resource using the the current language, only, then using no extension. It's nothing to worry about unless you want to support that language with something other than the "default" entries.

  • Implfactory.properties not found error during application installation

    Hi,
    I am facing some problem during deployment of application on websphere in Linux machine.
    it says "implfactory.properties not found". However when i try to install the same application on some other linux machine. It goes fine.
    As this is happening during installation of kit. Can u please let me know which jar file is missing from the Websphere path.
    ~aman

    Hi !! Could you tell me where I might find this implfactory.jar file ?
    I've looked around several systems, but have yet to find this jar.
    Most systems work, and only one does not.
    thanks.......

  • WSRPService_Config.properties not found

    Hello Expoerts!
    I'm relatively a newbie with Oracle Portal. I have been trying to deploying JSR168 based portlets from documentum. I was trying to use Standalone OC4J container configured with WSRP. Per my undertstanding, only way Oracle Portal allows deploying such portlets is to deploy them using WSRP. Is this the only way? Or can I deploy those portlets as it is?
    Assuming I need to access those portlets through WSRP, I started using Oracle JDeveloper and successfully deployed those portlets onto Standalone OC4J. I was able to access the WSDL page and it appears fine. However, when I used to this WSDL URL to create a producer within JDeveloper, some errors were thrown in the application.log. The error is as below. I tried googling it but couldn't find any fix for this issue. Could some shed some light on why this error pops up?
    Appreciate your help and time.
    Thanks,
    Pavan
    Error Message from application.log ****** Thrown while creating a producer using Oracle JDeveloper.
    07/05/31 22:58:06.390 FirstDCTMPortlet: Servlet error
    javax.servlet.ServletException: config file: "/WEB-INF/WSRPService_Config.properties" not found
         at com.sun.xml.rpc.server.http.ea.JAXRPCServletDelegate.init(JAXRPCServletDelegate.java:57)
         at com.sun.xml.rpc.server.http.JAXRPCServlet.init(JAXRPCServlet.java:47)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2361)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4810)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4734)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2957)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    07/05/31 22:58:23.953 FirstDCTMPortlet: Servlet error
    javax.servlet.ServletException: config file: "/WEB-INF/WSRPService_Config.properties" not found
         at com.sun.xml.rpc.server.http.ea.JAXRPCServletDelegate.init(JAXRPCServletDelegate.java:57)
         at com.sun.xml.rpc.server.http.JAXRPCServlet.init(JAXRPCServlet.java:47)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2361)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4810)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.findServlet(HttpApplication.java:4734)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2957)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)

    They have to be made available to Java. Running from the commandline, add them to your classpath, preferably on the java command:
    java -classpath <your list of required directories and jars> yourClassOrJar
    In an IDE, you must accomplish the same thing using the facilities that are specific to the IDE that you are using. Refer to the IDE's Help pages or the IDE's website for the way that you add libraries to an IDE project, as each is different.

  • Adobe Acrobat Distiller Process. Issue with Font(L0420P not found, using courier)

    Hi Everybody,
    We are working for upgrade activities, which involves moving applications from Windows 2000 to Windows 2003 Servers.
    My applications uses Adobe Acrobat distiller, which is also getting upgraded along with the server from Adobe 4.0 to 5.0 (Installed licensed Adobe distiller).
    I have been using Adobe distiller to convert .PS files into .PDF files. The conversion process requires the PSFonts such as (MB006, L0B, L0420P etc..), each font got a separate PFB and PFM extension files, which are kept in the folder name called "Psfonts" and has been included in "Font location" under Distiller settings.
    Using Distiller( Adobe Acrobat distiller 4.0 ) in Windows 2000 didn't create any issues or error while converting .PS files into .PDF files, all the PDF files are generated by Distiller as expected and process without any Font issues.
    In Windows Server 2003, I installed Adobe Acrobat distiller 5.0 and moved the Font Folder "Psfonts" from older server(Windows 2000 server) to the new server(Windows 2003) and started Adobe Acrobat distiller process(5.0) to convert .PS to .PDF, most of the .PS files gets converted into .PDF files but when .PS files which require the Font L0420P comes in for Distilling, it displays an error message as "L0420P not found, using courier".
    I checked with the old Server's (Windows 2000) font folder (Psfonts), it has the same files(PFB and PFM) as present in the new Server(Windows 2003).
    I tried to check the Particular Font name(L0420P) in Distiller-->Setting-->Job options-->Font-->Embedding-->Psfonts, but L0420P font alone is missing in the List.
    Could you please help in resolving this Font issue.

    You may like to try deleting the PsFonts entry from distiller and closing it. Restart the machine, make the entry of PSFonts agina and try creating PDF.

  • Adobe Illustrator Font AdobePiStd not found

    I am using the programming language R to generate .eps files.
    For some reason Adobe Illustrator gets confused between Zapf Dingbats and AdobePiStd.
    When I open the file I get the following error:
    The font AdobePiStd is missing.  Affected text will be displayed using a substitute font.
    There is a workaround for this problem described here:
    http://stackoverflow.com/questions/9992275/ggplot2-pdf-import-in-adobe-illustrator-missing -font-adobepistd
    Unfortunately, I cannot find the AdobePiStd font within creative cloud, and with Adobe Illustrator CS the workaround they describe cannot be followed. When you click on Type->Find Font the AdobePiStd has already been removed from the list of fonts.
    InDesign correctly sees this font as Zapf Dingbats, but doesn't allow me to change the font and will not export to .pdf with the missing font.

    Moving your post to the Illustrator forum.
    -Dave

  • Sneak preview Installation error, file source.properties not found

    Hi all,
          I am trying to install sneak preview (SAPNW2004sJavaSP9_Trial) with j2sdk-1_4_2_09 and  jce_policy-1_4_2.zip as specified. The  Installation was success upto a while but when I pass parameters to "secure store settings" it says there is no source.properties file in sneakpreview\java\ like that. If somebody have met with a similar problem and could overcome please help. Helping answer rewarded.
    Thanks & Regards,
    Sai Krishna. K

    Hi Konchada,
    Pls tell how you solved this problem...
    I am in need of it... Thanks
    Regards/ Guru

  • Fonts not found when using Xvfb

    Hi all,
    I keep encountering "fonts specified in fonts.properties not found" whenever I execute rwserver.sh server=XXX.
    fyi, I'm running Solaris8 on Sun SPACE machine. I use Xvfb downloaded from Oracle to allow report server to run after I logoff from the session. I realised that the report sever I created manually will die prematurely if I log out from the session when I use the "default" Xserver provided by Solaris.
    And prior to running rwserver.sh I set the DISPLAY such DISPLAY=:1.0; export DISPLAY.
    pls advise.

    I get the same errors on my Solaris system with xvfb, but it doesn't keep anything from working. My reports server comes up and works fine.

  • Font not found when launching OEM

    Before the OEM window appears, messages apear saying:
    Font specified in font.properties not found [--system-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    There are 21 lines of the same text as indicated above.
    Any suggestions?

    Font specified in font.properties not found [--system-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
    I don't think the font cause functional problem. It just doesn't look good. Right this is just warning, you could save ignore that.

  • Some Font styles not available on solaris

    Hi,
    I am developing a Java application on windows with the plan of running it on solaris eventually. It is starting without error on windows but, when I ftp it to solaris and start the program from an xterm I get the following error which is repeated a number of times:
    'Font specified in font.properties not found [-urw-itc zapfdingbats-medium-r-normal--*-%d-*-*-p-*-sun-fontspecific]'
    The application runs fine but I am wondering how I can fix the error appearing in the xterm. I know there is a setFont function that I can set the Font to something like 'Dialog' that is common to both operating systemsbut I have tried this and the same message appears. I cannot setFont for the line 'JOptionPane.showMessageDialog(this, STRING, "Invalid entry", JOptionPane.OK_OPTION);' so this doesn't seem to be working, the error still appears. Can you offer any help? if not then can anyone suggest who or where I might try to get help from?
    Thanks
    Conor

    I don't have a good answer other than the typewriter functionality was for basic typing, not for fancy topography work. For the latter, you should go back to the original document and do it with a tool designed for that purpose.

Maybe you are looking for

  • Apple TV - Is it universal? If I buy it in Singapore will it work in the UK?

    Any help would be greatly appreciated

  • Need to know where to store  legacy data in CRM 5.0??

    Hi SAP Gurus, I need your valuable suggestions for the below requirement. Your suggestions and comments are highly appreciated. Currently we are maintaining customer licensing agreement master data in a home grown oracle legacy system. There are all

  • Logic required to for Report

    Hi BWers, We are looking for valuable suggestions for generating a query with actuals and target values for Distributors. We are getting Resale Quantity (Daily) from CRM for at for Every BP (Distributor) level.  And targets for those BP are maintaine

  • Using Quotation Mark in an Argument in Call Executable

    Hello all, I am trying to use Call Executable to do what I would normally do in CMD like this: C:\My Document\My_Prog.exe "C:\My Document\file1.tch" "C:\My Document\file2.tch" The two argument locations are stored in a locals.filename1 and locals.fil

  • Datamasking

    Hi all, I know that with ODI i can create modules to execute transformations to the data "simulating" a data masking... But is there some development already doing something like a data masking??? If i want to create a module to do that function, is