Could not find javax and media?

Hi... I was trying to put the jmf.jar and other core jar files into a single clientApplet.jar file. The purpose is to enable a client to play the web cam without the requirement of installing jmf. Is this making sense?
Next, i got error as following:
File does not exist: C:/Apache/htdocs/mystuff/jmfsample
File does not exist: C:/Apache/htdocs/mystuff/javax
File does not exist: C:/Apache/htdocs/mystuff/media
May i know why? Aren't these files are in the jmf.jar file?
Thanks.

Yes they are, however you need to call the import command to access them within you program. If you just call them explictly in your program the JVM will only search its current directory, it will not search the jar file.
import clientApplet.*;

Similar Messages

  • Could not find bridge, and none was specified,

    Starting operation 'Virtual Machine Start' on object '0004fb0000060000a635ac3c095007e4 (DB10g)'
    Job Internal Error (Operation)com.oracle.ovm.mgr.api.exception.FailedOperationException: OVMAPI_4010E Attempt to send command: start_vm to server: host1.example.com failed.
    OVMAPI_4004E Server Failed Command: start_vm 0004fb0000030000310e084b4724b622 0004fb0000060000a635ac3c095007e4,
    Status: org.apache.xmlrpc.XmlRpcException: exceptions.RuntimeError:Command ['xm', 'create', '/OVS/Repositories/0004fb0000030000310e084b4724b622/VirtualMachines/0004fb0000060000a635ac3c095007e4/vm.cfg']
    failed (1): stderr: Error: Device 0 (vif) could not be connected.
    Could not find bridge, and none was specified,
    stdout: Using config file "/OVS/Repositories/0004fb0000030000310e084b4724b622/VirtualMachines/0004fb0000060000a635ac3c095007e4/vm.cfg".

    Hi,
    there seems to be something wrong with your network configuration (either on server, or in the vm configuration).
    Pls. also next time update what version you are using. Based on the path to the repository I believe it is 3.0.X
    Easiest will probably be to simply use the manager and edit the network setting of the VM (network device/bridge) there.
    If error continues to exists, please post your network setup of the server (ifcfongi -a and brctl show) and post the vm.cfg
    Regards
    Sebastian

  • Could not find .java and .class files...

    I am working on Windows Vista operating system.
    I am able to access the .java which I created and also .class files from the command prompt.
    But I am not able to find those files in the bin folder in Windows Explorer.
    I want to delete some .java and .class files. When I use the delete command on the command prompt , I am getting ---- could not find the file.
    Can anyone help me...

    Hey everyone,
    I found the answer!
    If the command prompt application is run as administrator(since it is windows vista), the created .java files as well as .class files will be stored and can be seen in the bin folder.
    However, I could not locate the .java files (and also corresponding .class files) which I created previously.

  • Could not find Order and Quote objects in Record Type Access window

    Hi All,
    We are using the CRM OD (not sure about the version).
    I am trying to enable the Order or Quote Object in CRM On Demand.
    But I cannot find Order and Quote records in "Record Type Access window". Do I need to enable it form any where else first ?
    Thanks
    Sai

    Thanks for the reply Naren.
    I am implementing the "Lead to Order Integration Pack for Oracle CRM On Demand and Oracle E-Business Suite 2.5".
    As part of it I am trying to enable the Order or Quote objects from the section "Enabling the Order or Quote Object in CRM On Demand" of the document: Part No. E15784-01.
    I see the following steps in that section:
    To enable the Order or Quote objects in CRM On Demand:
    1. Sign in to the CRM On Demand system.
    2. On the welcome page, click the Admin link.
    3. On the Admin Homepage, navigate to Role Management & Access Profiles, and then Role Management.
    4. In the Role Management wizard, perform the following steps:
    a. Select the role name for which you want to enable the Quote or Order objects.
    b. In Step 2, Record Type Access, select the Can Access, Can Read, and Can Create check boxes for the Order or Quote objects.
    c. In Step 5, Tab Access & Order, move the Order or Quote items from the Not Available to the Selected Tab section.
    d. Click Finish.
    5. Click Admin, User Management and Access Controls, Access Profiles.
    6. In the Access Profiles wizard, perform the following steps:
    a. Click Edit Link beside the role name for which you want to enable the Quote or Order objects.
    b. For Step 2, Specify Access Levels, change the value of the Default Access field for the Order or Quote objects from No Access to Read/Edit for Sales Users. Set to Read/Edit/Delete for the appropriate administrative users.
    7. Click Finish.

  • I purchased field runners for iPad, but after I backed up and updated to ios5, I could not find it

    I purchased field runners for iPad, but after I backed up and updated to ios5.01, I could not find it and when I went to the apps store, it shows that I have to purchase it.  What do I do?  Tks

    Contact iTunes
    http://www.apple.com/support/itunes/contact/

  • The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

  • Could not find Factory: javax.faces.context.FacesContextFactory

    I'm trying to start a new JSF with facelets app from scratch using JSF 1.2.06 on Tomcat 6.0.10 but I can't even get the app to start.
    I get this when I try to start the app:
    java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory
         javax.faces.FactoryFinder.getFactory(FactoryFinder.java:263)
         javax.faces.webapp.FacesServlet.init(FacesServlet.java:142)
         org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:699)
         org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:670)
         org.apache.jsp.index_jsp._jspService(index_jsp.java:59)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:384)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    I've seen a few contradictory pieces of advice on how to resolve but none seem very promising.
    What are the basic requirements for a JSF 1.2 application, especially regarding entries required in web.xml and faces-config.xml? I don't see this clearly documented anywhere on Sun's JSF site.
    Thanks!

    I think I found the reason for this problem.
    I should have also mentioned that my app contained a welcome page (index.jsp) that contained only a forward to my Facelet-based home page via:
    <jsp:forward page="pages/stm/StmHome.jsf" />
    My home page was named: StmHome.xhtml
    I mapped the FacesServlet to handle all requests with a *.jsf extension
    But I set the javax.faces.DEFAULT_SUFFIX context parameter to: .xhtml
    When I changed the value for the forward tag in the index.jsp to "StmHome.xhtml" the app started ok and the home page displayed without error.
    So it looks like this problem was caused by a mismatch between the value I set for the javax.faces.DEFAULT_SUFFIX context parameter and the value I set for the URL pattern in the FacesServlet mapping, correct ?
    Which brings me to my next question: should the values for the javax.faces.DEFAULT_SUFFIX and the FacesServlet URL pattern always match?
    Thanks!

  • Adobe Premiere Pro could not find any capable video play modules. Please update your video display drivers and start again.

    I have administrator rights to the computer. The drivers are up to date. But I am still getting the error message "Adobe Premiere Pro could not find any capable video play modules. Please update your video display drivers and start again"  when opening Premier Pro CS5.5. This appears to have happed after I upgraded to Mac OS 10.10.2.
    Anyone?
    Thanks

    Hi Stan.
    I had the same problem as you did though I am using Adobe CC.  I saw nobody replied to you so perhaps my eventual success on my later version may have applications to the error on your version. 
    Anyhow, I did all the suggestions found here (Error "Premiere Pro could not find any capable video play modules" | Startup )  first and updated my NVidea card to no avail.  Eventually what did the trick was this...
    After mucking about with the video card, I said "OK lets just have a go at Premiere itself." So I uninstalled Premiere CC and reinstalled it.  Now for some reason it didn't give me the latest patch but a slightly earlier version than the current one but lo and behold it was fine with the video card again.  I was able to get my friend's video imported and quickly edited but then was having some issues with exporting where it would hang up but I went into Adobe Media Encoder and exported it there without a care.  That task out of the way, I then went and made the update to the latest patch and it works perfectly fine - no video driver issues.
    So short of it is this - if you've updated your drivers, perhaps what you could try uninstalling and reinstalling Premiere.
    Let me know if this works.
    Cheers and good luck

  • Error: Premiere Pro and Encore: Could not find video play modules

    Please help! I am ripping my hair out!
    I have CS3 Master suite and just reciently started having proiblems with Premiere Pro and Encode where I get an error: "Could not find video play modules, please reinstall and try again"
    I HAVE reinstalled, and still no luck! I have even used the CS3 clean utility, blew away everything ADOBE I could think of, reinstalled -  and that hasn't helped.
    I have a Windows XP (32 bit) SP3 box
    4 GB Ram
    3.167 Ghz Intel Core 2 Duo processor
    Nvidia GeForce GTX 285 video card.
    All drivers are up to date.
    I heard it could be a CODEC problem, but I do not know where or how to get the correct or missing CODECs.   I also have AVID Media Composer 3.5 insalled on the box, but I'm not sure if that is creating conflict (it used to work before - not sure what happened).
    Any help would be appreciated!
    Thanks
    Ryan

    Ryan,
    Could be a CODEC issue. First, get G-Spot and install/run it on your files. It will tell you exactly what they are, and what you need, if it shows them as not being installed.
    Might be as simple as going to, say MainConcept's site, downloading and installing just the right CODEC. Without the info from G-Spot, we'd only be guessing.
    Good luck,
    Hunt
    Tip: always install JUST the CODEC's that are required. Do not install any CODEC "packs." They will most likely give you problems someplace.

  • It says "can not install the driver: could not find media for this driver"

    I am havin problem with sound in my Compaq presario V6406TU. When i try to install, it says  "can not install the driver: could not find media for this driver", how ever i get a beep for every error message.  In my device manager there is no UAA and in services.msc windows audio is started.
    I have tried almost everything on net but not able to solve this, plz help.

    vendor wrote:
    = No SB0220 support available? SO, IS THERE exactly a model numbered as SB0220 AT ALL?
    I think there is not.
    Yes My Sound Card is exaclty SB0220. I have downloaded the patch and start it. After that I configured the installer and now I have creative drivers. But are they the best for my sound card? After all I`ve pathed the installer and some sort lied it. If the drivers are for my model, why should I path it's
    Yes, I've seen a true SB0220 too on a picture after writing that comment so there is true SB0220 model. But, are you sure your card is SB0220? Did you look the number from a sticker on card board w/ serial number lik MSB022xxxxxxxxxxx where the SB022x is the true model number for your card.
    Why you didn't got drivers installed for your card is, because the installer doesn't support the model SB0220 (supported cards are listed in ctcomp.dat -> this is the file ctcomp.exe patches).
    IIrc, those drivers are the latest ones for your card. If you like to, you can try soft-mod your card the way, you can use Audigy series drivers (which are a bit newer) -> http://www.tech-pc.co.uk/audigy-2.php (i.e. you just use ctcomp.exe utility to patch the installer for Audigy drivers (use these drivers st - http://www.station-drivers.com/telechargement/creative/%20audigy%205.2.0.042.exe) (newer installer maybe can't be patched w/ ctcomp).
    jutapa

  • Error: could not find Factory: javax.faces.render.RenderKitFactory

    Need help!
    I'm running into this same error every time I try to view a BIRT report in a JSF. I'm running Tomcat 6, with JSF 1.2 and BIRT 2.2.1.
    When I try to view the page in the browser I get the following error:
    javax.servlet.ServletException: Application was not properly initialized at startup, could not find Factory: javax.faces.render.RenderKitFactory
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:256)
    root cause
    java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.render.RenderKitFactory
         javax.faces.FactoryFinder.getFactory(FactoryFinder.java:256)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:136)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    Anyone had this happen? If so, any ideas on how to get around it?

    I'd recommend checking the logs for any errors that may have happened during the initialization of the app.

  • Motion 2 Log Errors "invalid drawable" and "Could not find shader normal"

    Hi All,
    I've encountered a problem with Motion 2, that I hope can be fixed using this info from my log file:
    2005-12-15 09:30:56.772 Motion[281] invalid drawable
    2005-12-15 09:30:58.195 Motion[281] invalid drawable
    2005-12-15 09:31:12.062 Motion[281] invalid drawable
    2005-12-15 09:31:21.780 Motion[281] invalid drawable
    2005-12-15 09:31:23.803 Motion[281] invalid drawable
    2005-12-15 09:31:47.349 Motion[281] invalid drawable
    2005-12-15 09:32:05.697 Motion[281] invalid drawable
    2005-12-15 09:32:12.018 Motion[281] invalid drawable
    2005-12-15 09:32:13.697 Motion[281] invalid drawable
    2005-12-15 09:32:15.336 Motion[281] invalid drawable
    2005-12-15 09:32:26.878 Motion[281] invalid drawable
    2005-12-15 09:32:32.641 Motion[281] invalid drawable
    2005-12-15 09:32:34.050 Motion[281] invalid drawable
    2005-12-15 09:35:31.921 Motion[281] invalid drawable
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Warning: Could not find shader normal
    Since Motion 2 can't find "shader normal", it endlessly writes this error to a log file and in the process SLOWS the program down considerably.
    I'm using a dual 2.5 G5, Motion 2, ATI 9800 Pro video card, 4GB RAM.
    It seems like this might be a video card problem since that's what the error log may refer to (could not find normal shader).
    Has anyone else encountered this issue, or know of a fix?
    Thanks All,
    Kevin
    2.5 G5   Mac OS X (10.3.9)  

    Haven't seen it before but you'd have to give us some additional information. Most, not all, Motion errors are caused by bad media files or the user attempting to perform an illegal operation like dividing by zero.
    But yea, these look like OpenGL or GPU errors. Try dropping by the mfr's site to see if there are new drivers, a reset application or a user forum?
    bogiesan

  • JSF IllegalStateException:  could not find Factory: javax.faces.context....

    Dear all,
    I am trying to deploy a JSF page on the following system:
    Tomcat 5.5
    JSF 1.3
    JDK 1.5
    But keep getting the following exception:
    java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory (the full error is attached below).
    However, I have double checked that I have already placed all the neccessary .jar in <TOMCAT>/common/lib (e.g. jsf-api.jar, jsf-impl.jar, etc.) and also the WEB-INF/lib folder under my specific webapp (just make sure that the app should be able to retrieve it).
    I googled around and found that many people suggested to add a listener tag to the web.xml:
    <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    I also tried this but then I got 404.
    What could I have done wrong? Why can't Tomcat see the jsf-api.jar (which is where javax.faces.context.FacesContextFactory should be located)?
    Thanks very much in advance.
    Regards,
    Robert
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet Faces Servlet threw exception
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:837)
         org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
         org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
         java.lang.Thread.run(Unknown Source)
    root cause
    java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory
         javax.faces.FactoryFinder$FactoryManager.getFactory(FactoryFinder.java:725)
         javax.faces.FactoryFinder.getFactory(FactoryFinder.java:239)
         javax.faces.webapp.FacesServlet.init(FacesServlet.java:164)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:837)
         org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
         org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
         java.lang.Thread.run(Unknown Source)

    Dear all,
    I am trying to deploy a JSF page on the following system:
    Tomcat 5.5
    JSF 1.3
    JDK 1.5
    But keep getting the following exception:
    java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory (the full error is attached below).
    However, I have double checked that I have already placed all the neccessary .jar in <TOMCAT>/common/lib (e.g. jsf-api.jar, jsf-impl.jar, etc.) and also the WEB-INF/lib folder under my specific webapp (just make sure that the app should be able to retrieve it).
    I googled around and found that many people suggested to add a listener tag to the web.xml:
    <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    I also tried this but then I got 404.
    What could I have done wrong? Why can't Tomcat see the jsf-api.jar (which is where javax.faces.context.FacesContextFactory should be located)?
    Thanks very much in advance.
    Regards,
    Robert
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet Faces Servlet threw exception
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:837)
         org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
         org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
         java.lang.Thread.run(Unknown Source)
    root cause
    java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory
         javax.faces.FactoryFinder$FactoryManager.getFactory(FactoryFinder.java:725)
         javax.faces.FactoryFinder.getFactory(FactoryFinder.java:239)
         javax.faces.webapp.FacesServlet.init(FacesServlet.java:164)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:837)
         org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
         org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
         java.lang.Thread.run(Unknown Source)

  • "Could not find Matching Media Query style sheet" [was: Dreamweaver Creative Cloud]

    I have an error message at the top left of my document saying "Could not find matching Media Query style sheet. Nothing happens when I alter the CSS so I'm guessing that is not linked somewhere. I also have made certain that all my .css and .js files are linked.
    Subject line edited by moderator for clarity

    HI tkennedys,
    I found a similar thread with a solution that could help you.
    http://forums.adobe.com/thread/1014094
    Thanks,
    Preran

  • I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I have tried a lot to find an app or some way in email to attach multiple of pdf files in one email. I could not find anything that sends multiple pdf file in one email and still keeping the file in simple pdf format for the recipient.

    I am not aware of a way except for photos that allows you to select multiple files in an email. I even checked settings in the Adobe Reader app, and it does not show that ability.

Maybe you are looking for

  • Error in CRM box after executing client proxy

    Hi , I am executing client proxy program from CRM box. It is getting the following error in CRM sxmb_moni I checked the sm59 in CRM box. the  RFC connection ( type 3) is configured for XI box (XI1CLNT100_RFC). In SXMB_ADM of CRM box the correspoindin

  • Return to vendot fron SAP opening stock

    Hi Friends, We want to return few raw material with excise to the vendor, the problem is the receipts are made before the go-live and shown as opening stock in SAP. What will be the procedure to return to vendor and how to nullify the cenvat credits

  • Installing Drivers from Leopard disk

    I installed windows and got myself through to the os seemingly ok. I popped in the leopard disk to install the drivers. From here it goes through the autorun process alright and then restarts on its own like it should. When windows loads back up I ge

  • How can I get Tiger OS disk

    A friend gave me an iMac G4.  70 HD & 768MB Ram. I tried loading Leopard 10.5 but after erasing the HD for a clean install, a message shows that 10.5 cannot be installed.  The drive won't open so I have this iMac G4 with an erased disk and my copy of

  • Best webcam for stop motion in Premiere Elements 7

    The Gear Head usb webcam my son has been using for stop motion does not seem to work with Premiere Elements 7. Adobe used to have a list of compatible cameras, but the link is dead. Anyone have any suggestions for a usb webcam you know works with PRE