Application quit working with jre1.6.0_13

An application I support has been working until someone installed jre1.6.0_13
on their desktop. Now part of the application works and part does not work.
The entire application works with jre1.6.0_11. With update 13, the application stops working when attempting to do a new on a class (ProjectInformationPanel) that
extends JPanel. I get my debug statement right before the 'new' is called but I don't get the debug statement that is in the constructor for ProjectInformationPanel. Has anybody encountered something similar or know of a fix? Thanks for your help.

asmita2005 wrote:
Thanks for that.
Does that mean it is a Tomcat issue and not a JSF issue?I can't say for sure but the fact it works in some versions of Tomcat but not others is a strong indicator.
Where can I find the Tomcat users mailing list?I don't know off the top of my head but doubt they are hiding it. Try the Tomcat website or the documentation that came with Tomcat.
How can I remain updated about the same?Typically there is a subscription process.

Similar Messages

  • Application developed using JDK1.2.2 not working with JRE1.3

    I am supporting and application developed using JDK1.2.2, it uses JDBC drivers from oracle(classes12.zip) to connect to an Oracle 8i database. This application is not working with JRE1.3. Can someone suggest any possible methods to make it work with JRE1.3?
    Thanks in advance,
    Anoop.

    well, Now the problem is partly solved. I was having problems in displaying a frame(derived from JInternalFrame), later I discovered that for JRE1.3, I have to explicitly set the setVisible option to true.
    I have a few more frames to correct. I hope after that it wil be alright..
    Thanks for the quick response.
    Anoop.

  • Why does Java Application not working with Macromedia Flash 5 or MX?

    Why does Java Application not working with Macromedia Flash 5 or MX?

    Who says they don't?
    Although I don't know much about those I'd think they should be able to talk to Java Aps using Sockets or request Servlets ...
    Spieler

  • Why did my email auto fill quit working with Yahoo mail?

    This week my e-mail address auto-fill quit working with AT&T Yahoo, but still works when using the Safari browser on my Mac. Actually found 22 posts dating back to a year ago for people having the same problem, so guess this is ongoing and happening randomly. Is there a fix, or do I have to abandon Firefox and go back to using Safari?

    I have this question too. My iphone 5 is new from t-mobile, and I restored it from my own backup on my factory-new laptop. I am curious who this person is, and whether my "new" iphone may actually be refurbushed?

  • Sound quit working with game apps?

    Sound quit working with my game apps and email.
    Radio, facetime & music work fine.
    Has anyone had this issue?
    I did not change any settings.
    It worked fine yesterday and today no sound.

    If you lost sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085

  • Password quit working with my i pad, any suggestions?

    password quit working with my i pad, any suggestions?

    What password - what do you use it for?

  • My westel modem (that I rent from my phone provider) quit working with the internet.  My airport extreme seems to be working from the dsl (phone) connection through the westel, then through the ethernet cabled to the airport extreme.  Do I need the modem?

    My westel modem (that I rent from my phone provider) quit working with the internet.  My airport extreme seems to be working from the dsl (phone) connection through the westel, then through the ethernet cabled to the airport extreme.  Do I need the modem?  Is the ethernet route less efficent that going throught the internet connection?  If I don't need the westel modem; how do I make the dsl conection to the pone port in the wall?  Thanks for help on this!

    Ok, so are you saying that your Internet is or isn't working?  Does it work if you plug your computer directly into your computer and bypass the router (make sure you power cycle the modem when you do this)?  If it is working this way, then a new modem isn't going to solve a problem with your Internet not working.  If it is going slow (try running a speedtest) then you need to call your phone company to have them take a look at why your Internet is slow.  If it runs fine this way and then slows back down when you go back through your router there is something else going on.  Try unplugging both the modem and the router, let the modem fully sign back in and connect to the Internet, after it gets signed in, plug your router in, and then after it boots up fully, try running the speedtest again...See if that helps any?  Sometimes it's just an IP conflict that happens when the dynamic IP that is assigned by your Internet Service Provider changes and the change doesn't flow smoothly.

  • Class loading works with jre1.3.1 but not with jre1.4.0

    Hello,
    My JWS application use the following line to create an XMLReader:
    XMLReader rdr = XMLReaderFactory.createXMLReader( "org.apache.xerces.parsers.SAXParser" );
    Everything works fine with jre1.3.1, but with jre1.4.0 or jre1.4.1 I experience a very strange behaviour:
    1) When my application is downloaded and executed for the first time, everthing works fine.
    2) When I quit the application and I launch it again, an Exception is thrown (the system in unable to load the Class org.apache.xerces.parsers.SAXParser).
    3) If I tell JWS to show the console, everthing works fine again. If I tell JWS not to show the console, the Class can't be loaded anymore.
    Any idea ?

    Hi.
    I have also been experiencing problems in using Java Web Start for my application. When i tried certain functions of my application like saving and updating, I will faced this problem:
    javax.xml.soap.SOAPException: Unable to create SOAP connection factory: Provider com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnectionFactory not found
    In the previous email in the forum, it was said that this problem was overcame, but I do not really know to how apply the solution given below:
    /* The following code is not used for now because
    * the code in createXMLReader() which dynamically          
    * allocates the class does not work the with          
    * Web Start class loader.          
    * This can be used again once Sun starts shipping          
    * Xerces 2.x with the JRE. They have already changed          
    * the XML development pack to use Xerces 2.x instead          
    * of Crimson, but as of 1.4.1, they are not updating          
    * the JRE distribution.           
    //String className = System.getProperty("org.xml.sax.parser");     
    //if (className == null) className = "org.apache.xerces.parsers.SAXParser";          
    //try {          
    //     tParser = XMLReaderFactory.createXMLReader(className);          
    //} catch (SAXException e) {          
    //     tParser = XMLReaderFactory.createXMLReader();          
    XMLReader tParser = new org.apache.xerces.parsers.SAXParser()
    Can anyone enlighten me on how to overcome the SOAP Factory problem? Thank you.

  • Application not working with MS ACCESS DB at runtime

    I have problem with my application that working properly at runtime( via visual studio ) and update data grid of windows form .net . But after publish the application and run this then , I am getting following error as shown in image. Please help me , how
    to solve it , I do a lot of search , not able to find any solution on that. Error come when running the application.
    Application coded in VB.NET, Visual Studio 2013, MS ACCESS 2013
    Connectionstring : Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\labprofiles.mdb;User Id=admin;Password=;
    [or Persist Security Info=True or Persist Security Info=false ]

    Hello,
    To set the path use
    SetData and GetData to retrieve the current path
    AppDomain.CurrentDomain.SetData("DataDirectory", "Your path")
    AppDomain.CurrentDomain.GetData("DataDirectory").ToString
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Macbook pro retina quit working with external displays

    Just got a new external display, and can't get it to work with my MBP. I tried it via the mini display port and also via the HDMI connection. Then I tried to use my flatscreen tv just to test things out via HDMI and now that doesn't work either, I've done that quite a bit in the past. The only thing thats changed is I updated to Yosemite. I even tried different cables.
    Thoughts?
    Txs,
    Jeff

    When I unplug the cable from the mac, the monitor does display this message:
    "No Display Port Cable"
    So it does seem like the display knows that its connected to a mac, just nothing shows up. Don't get anything in System Prefs > Displays either.

  • USB hubs quit working with 10.7.2

    I have a Mac Pro, dual quad-core 2.8GHz Xeon, 10GB ram. Three D-link DUB-H7 usb hubs. After the update to 10.7.2 and iTunes 5.0.1 (not sure exaclty when), my usb devices & hubs quit working properly. For a while they would work occasionally.
    I have a USB keyboard which works if it's plugged in directly when the computer boots. But other devices (external drives, flash card reader, iPod dock, USB display) don't work at all. I tested the hubs with another Lion system, and they work on that. iTunes wireless sync quit as well.
    I've tried resetting PRAM and SMC. Neither fixed the problem. Tried repairing permissions. No change. Rebooting (many times).
    Could it be a USB driver conflict? I removed VirtualBox usb drivers, as well as Parallels, but not vmware, which I also own.
    When I plug in a device, I get 'trouble enumerating' and then "The IOUSBFamily was not able to enumerate a device." in the system.log
    Any ideas? Is my motherboard dying? If so, why does the keyboard still work, and nothing else?

    Followup info. I reset the PRAM and booted into 10.5.1, on another drive.
    This time, similar behavior; HID devices (keyboard, mouse, bluetooth) work fine. Hubs (which work fine on another Lion computer!) generate a bunch of console errors:
    11/19/11 11:21:31 AM kernel USBF: 746.706 USB Device IOUSBHubDevice is violating Section 9.3.5 of the USB Specification -- Error in GetConfigDescriptor( wLength = 4)
    11/19/11 11:21:31 AM kernel USBF: 746.707 AppleUSBHub[0xf536000]::ConfigureHub No config descriptor
    11/19/11 11:21:31 AM kernel USBF: 746.707 AppleUSBHub[0xf536000]::start Aborting startup: error 0xe0004056
    11/19/11 11:21:31 AM kernel USBF: 746.707 IOUSBHubPolicyMaker[0xf536000]::start - ConfigureHubDriver returned false

  • IPlanet J2EE application not working with oracle 9i but working with 7.3

    We are in a process of upgrading database from oracle 7.3 to 9i.
    We have a working application running on iPlanet Application Server with oracle 7.3 as database. We are using iPlanet Application Server's connection pooling. Our JDBC driver is classes111.zip.
    After upgrading to 9i, our application doesnt work. When I try to run a test application that uses single select statement, this the error I get: java.sql.SQLException: Invalid URL: Driver type not specified
    SQL*PLUS works fine. I havent upgraded oracle client. Do I need to upgrade the JDBC driver or oracle client?
    Any suggestions? iAS version is 6.5.

    If you are new to JSF, then I'd try and simplify the environment in which you are working as the first step to achieving a successful outcome.
    JSF 1.2 is a certified and well tested component of WLS, so we know it works. I'm not sure of the effect of all those additional modules you are adding in there -- it appears as if you have gotten a Faces implementation instantiated, but there could be some form of version difference/conflict since it can't find a method its looking for.
    Using Oracle Enterprise Pack for Eclipse (http://www.oracle.com/technology/software/products/oepe/oepe_11115.html) you can build yourself out a pretty simple JSF application to get started from and deploy it to a WLS server. This would remove all the additional libraries you currently have, provide you with a bundled applicaton to deploy and give you a pretty good environment from which you can learn and experiment with JSF.
    -steve-

  • Best Practice to Setup an application to work with both oracle and db2 db

    Hi,
    We have an application that currently supports both oracle and db2 databases . It is currently using JPA with eclipselink as backend mechanism and we want to move to ADFBc as our backend . So what is best practice to do this?
    I came across an old post in https://groups.google.com/forum/#!topic/adf-methodology/UlJZSTu14Io that states to create two different model projects to support oracle and db2 .
    Is this still the standard ? Is there a way that we could work around rather than creating multiple projects?
    How do i get the view controller to work with multiple model projects if this is the case?
    Thank you.

    Thanks for the response .
    The problem is i would have the same schema on both the databases (both in oracle and db2) .
    I don't see a scenario where i want both the application model projects at the same time . What i meant is , Application will either be deployed with Oracle DB or DB2 but not with both on a production environment .
    So is there a way where i just change the connection parameters alone rather having two different models ?
    If i have to use two model projects ,  would it be possible say i built the view controller for Oracle , and use it for DB2 if i make sure the BC objects names are similar between model projects and switch just the model jar based on the deployment environment ?
    -Sam

  • Oracle Applications Adapter - working with EBS R12 (inbound/outbound)

    Hi,
    Need to integrate Siebel CRM 8.1.1.5, Oracle EBS 12.0.4, and few other third party systems.
    Planning to use Fusion middleware to integrate, and also use Oracle Applications Adapter.
    Query -
    We would like to know how EBS can work with Oracle Applications Adapter, best practices regarding this.
    We've inbound, and outbound from EBS, for multiple modules.
    Thanks,
    Meera

    You already got an answer by "X A H E E R" in your other thread, so why posting duplicate threads? -- Re: Oracle Jdeveloper Integration with EBS R12.1.3
    You have also posted the same question in "JDeveloper and ADF" forum! -- Re: Integrate Jdeveloper with Oracle E-Bussiness Suite for reporting

  • Application to work with oracle

    I was just wondering what application will be needful to work with oracle database apart from oracle forms

    Any application that is certified with the Oracle database
    Any application language that supports SQL, ODBC or JDBC, and Oracle network connections.

Maybe you are looking for

  • Error when select sheet for Excel file from Excel 2013 with visual basic

    Dim AppXL As Object Dim MyWorkBook as Object Set AppXL = CreateObject("Excel.Application") Set MyWorkBook = AppXL.Workbooks.Open("E:\MyFile.xls) AppXL.Sheets("Sheet1").Select The above code run with no problem when use in machines with Excel 2007 and

  • Purchasing department processing time

    Hi All, I am looking for a report to see the Procurement department turnaround time. i need the numbers of days from when the requisition was released to when the PO was created. I tried to use ME5A and I was going to do the calculation in excel but

  • ClassCastException X509CertificateImpl

    Hello all, I am getting a weird error in 9i release 2. I have a jsp page that calls a cold fusion web page over https, and reads the data found there. My code is as follows: String urlString = /*https URL here*/ java.security.Security.addProvider(new

  • Camera Raw 5.5 will not install?  And Camera calibration button question.

    I just built a new computer with 7 PRO and installed all my software. So when it comes time to instal 5.5 raw it goes about half way through and tells me to shut off Bridge.  As far as I know the bridge window and program are off and not running.  I

  • WEBLOGIC 6.0 10.5.1 500 Internal Server Error

    When trying to run servlets I a getting the error 10.5.1 500 Internal Server Error The server encountered an unexpected condition which prevented it from fulfilling the request.. Anyine familiar with this? How can I get around it![email protected]