This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi All,
Please help us in solving the problem.
I had modified applet.when compile and putting in to server screens is not loading and in console it shows following error in java console.
at scb.security.gui.event.TreeListener.actionCmd(TreeListener.java:335)
at scb.security.gui.event.TreeListener.mouseClicked(TreeListener.java:197)
at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
This is the important part:
Caused by: java.lang.NoSuchFieldError: conMasterNoTxt
at ecops.limits.gui.event.BusinessCreditApplicationApplet.addListener(BusinessCreditApplicationApplet.java:887)
at ecops.limits.gui.event.BusinessCreditApplicationApplet.<init>(BusinessCreditApplicationApplet.java:262)
You need to find out why the BusinessCreditApplicationApplet.addListener method is trying to access a non-existing field. Maybe a version mismatch between some of the involved libraries? Or a typo somewhere?