ERROR FOR GUI APPLICATION !

This is the code:
import ComplexNumbers;
import Poly;
import Quad;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.ArrayList;
public class QuadGUI
  private int WIDTH = 600;
  private int HEIGHT = 150;
  private JFrame frame;
  private JPanel panel;
  private JLabel in1,in2,in3,out1,out2,result1,result2;
  private JTextField a,b,c;
public  QuadGUI()
  frame = new JFrame("Complex Quadratic Calculator");
  in1 = new JLabel("Enter coefficient a:");
  in2 = new JLabel("Enter coefficient b:");
  in3 = new JLabel("Enter coefficient c:");
  out1 = new JLabel("Root1:");
result1  = new JLabel("---------------------------------------------");
  out2 = new JLabel("Root2:");
  result2  = new JLabel("---------------------------------------------");
  a = new JTextField(5);
  b = new JTextField(5);
  c = new JTextField(5);
  a.addActionListener(new QListener());
  b.addActionListener(new QListener());
  c.addActionListener(new QListener());
  panel = new JPanel();
  panel.setPreferredSize(new Dimension(WIDTH ,HEIGHT));
  panel.setBackground(Color.blue);
panel.add(in1);
  panel.add(in2);
  panel.add(in3);
  panel.add(a);
  panel.add(b);
  panel.add(c);
  panel.add(out1);
  panel.add(result1);
  panel.add(out2);
  panel.add(result2);
  frame.getContentPane().add(panel);
public void display()
  frame.pack();
  frame.show();
private class QListener implements ActionListener
  public void actionPerformed (ActionEvent event)
   double x,y,z;
   String text1,text2,text3;
   text1 = a.getText();
   text2 = a.getText();
   text3 = a.getText();
   x = Double.parseDouble(text1);
   y = Double.parseDouble(text2);
   z = Double.parseDouble(text3);
   ComplexNumbers A = new ComplexNumbers(x,0.0);
   ComplexNumbers B = new ComplexNumbers(y,0.0);
   ComplexNumbers C = new ComplexNumbers(z,0.0);
   ArrayList myList = new ArrayList();
   Quad Roots = new Quad(A,B,C);
   ArrayList Result = new ArrayList();
   myList.add(0,A);
   myList.add(1,B);
   myList.add(2,C);
   Result = Roots.findRoots(myList);
   result1.setText(ComplexNumbers.toString(Result.get(0)));
   result2.setText(ComplexNumbers.toString(Result.get(1)));
//THE ERROR IS:
QuadGUI.java:86: Wrong number of arguments in method.
   result1.setText(ComplexNumbers.toString(Result.get(0)));
                                          ^
QuadGUI.java:87: Wrong number of arguments in method.
   result2.setText(ComplexNumbers.toString(Result.get(1)));(in the library / JLabel (javax.swing)) public void setText(String text)
how come ?
thanks

well JAVAC don't lie, so the obvious answer is as stated
QuadGUI.java:86: Wrong number of arguments in method.
result1.setText(ComplexNumbers.toString(Result.get(0)));
QuadGUI.java:87: Wrong number of arguments in method.
result2.setText(ComplexNumbers.toString(Result.get(1)))
result2 is a JLabel, setText takes 1 parameter fine.
Result is an ArrayList, method here .get( int ) takes 1 parameter fine - returns an Object
ComplexNumbers.toString( Object )
So I'd look in ComplexNumbers.java or the DOcs for it and see what it expects, probbaly not just 1 Object
and as that's where the ^ is pointing thats a good place to look
if you have problems like this that you get stuck on:
Break up the code! it will instantly show you where your error is
Like this:
Object o = Result.get( 0 );
//System.out.println( o.toString() );
String S = ComplexNumbers.toString( o );
//System.out.println( S );
result1.setText( S );Now the 'wrong number of arguments will point to the use of the ComplexNumbers static Method toString() neh?
And possibly showing the Signature of toString() in ComplexNumbers
would have helped here too......
as in
public static returntype toString( Parameter List)

Similar Messages

  • When will Reader 9's Runtime error for redirected Application Data be fixed??

    Has anyone heard when Adobe will fix Reader 9's Runtime error for redirected Application Data??  It's still happening with 9.1.3 for only users who have their Application Data folder redirected via Group Policy.
    It's been going on for some time, as evidenced by the following link, and my own personal pain fighting this
    http://forums.adobe.com/thread/391738?start=100&tstart=0

    Also posted here: http://forums.adobe.com/thread/391738
    I haven't read through all of the posts, but the general consensus I have is that the issue is in fact related to the redir
    ection of the Application Data folder. The main issue being that the use of a UNC path causes the error described, with some mention to explicit user permissions on the root of the folder path.
    I was just recently made aware of this issue in our environment. Apparently we've held off upgrading to Adobe 9.x because of this issue. After a little research, it was apparent that simply modifying the default Folder Redirection policies is not possible because the use of a mapped drive is not supported.
    I haven't had a chance to test this yet, and may not be able to for some time, so I thought I would share this in case someone else might be able to test. The idea being to simply use a custom ADM file to force the redirection of certain profile folders. Again, I haven't tested this using a mapped drive in the path, but I have successfully used the same settings below to redirect other folders not available by default in Group Policy.
    1) Copy the text between ----- Start of ADM ------ and ----- End of ADM ------ and paste it into a text file.
    2) Rename the .txt to .adm.
    3) Load the ADM template into a GPO.
    4) Right click "USER Custom Settings", select "View", select "Filtering" and uncheck the option "Only show policy settings that can be fully managed".
    5) Configure the "Redirect Application Data" option as enabled, and enter a mapped drive path.
    6) Test.
    I'm interested to hear if this is a viable solution or not.
    ------ Start of ADM -----
    CLASS USER
          CATEGORY "USER Custom Settings"
                CATEGORY "Folder Redirection Settings"
                      POLICY "Redirect My Documents"
                      EXPLAIN "By default files are stored as part of the
    user's profile.\n\nConfigure alternative locations here."
                      KEYNAME
    "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
                      PART "Redirect to" EDITTEXT
                            VALUENAME "Personal"
                            MAXLEN 255
                            DEFAULT ""
                            EXPANDABLETEXT
                      END PART
                      END POLICY ; RedirectHistory
                      POLICY "Redirect Application Data"
                      KEYNAME
    "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
                      EXPLAIN "By default files are stored as part of the
    user's profile.\n\nConfigure alternative locations here."
                      PART "Redirect to" EDITTEXT
                            VALUENAME "AppData"
                            MAXLEN 255
                            DEFAULT ""
                            EXPANDABLETEXT
                      END PART
                      END POLICY ; RedirectHistory
                      POLICY "Redirect Cookies"
                      KEYNAME
    "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
                      EXPLAIN "By default files are stored as part of the
    user's profile.\n\nConfigure alternative locations here."
                      PART "Redirect to" EDITTEXT
                            VALUENAME "Cookies"
                            MAXLEN 255
                            DEFAULT ""
                            EXPANDABLETEXT
                      END PART
                      END POLICY ; RedirectCookies
                      POLICY "Redirect Favorites"
                      KEYNAME
    "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
                      EXPLAIN "By default files are stored as part of the
    user's profile.\n\nConfigure alternative locations here."
                      PART "Redirect to" EDITTEXT
                            VALUENAME "Favorites"
                            MAXLEN 255
                            DEFAULT ""
                            EXPANDABLETEXT
                      END PART
                      END POLICY ; RedirectFavorites
                      POLICY "Redirect History"
                      KEYNAME
    "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
                      EXPLAIN "By default files are stored as part of the
    user's profile.\n\nConfigure alternative locations here."
                      PART "Redirect to" EDITTEXT
                            VALUENAME "History"
                            MAXLEN 255
                            DEFAULT ""
                            EXPANDABLETEXT
                      END PART
                      END POLICY ; RedirectHistory
                      POLICY "Redirect Recent Documents"
                      KEYNAME
    "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
                      EXPLAIN "By default files are stored as part of the
    user's profile.\n\nConfigure alternative locations here."
                      PART "Redirect to" EDITTEXT
                            VALUENAME "Recent"
                            MAXLEN 255
                            DEFAULT ""
                            EXPANDABLETEXT
                      END PART
                      END POLICY ; RedirectRecent
                END CATEGORY
          END CATEGORY
    ------ END of ADM -----

  • 500 Internal Server error for WD applications

    Dear All
    I have a very strange situation and I don´t have any idea of what to do.
    Basis took the backend R/3 system down for some reasons and made it up again after some time. But now they have locked all users in our backend R/3 system as Basis is performing some task on the server.
    This has resulted in all web dynpro applications that are using RFC's throwing 500 Internal server error.
    All other web dynpro applications that are not dependent on R3 system are working fine.
    We also have restarted the EP server as we deployed one WD application.
    I'm not sure how the situation was before the restart of EP server.
    In NWA i can see many error for ACCESS.ERROR: Authorization check for caller assignment to J2EE security role service.jms.default.authorization : administrators referencing J2EE security role .
    Also
    application Processing HTTP request to servlet finished with error. The error is: com.sap.tc.webdynpro.services.exceptions.TypeNotFoundException: type is.eimskip.keywordsearchmodel.types.Zotkey could not be loaded: com.sap.dictionary.runtime.DdException: failed to create provider: User is locked. Please notify the person responsible
    at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getSimpleType(DataTypeBroker.java:250)
    at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getDataType(DataTypeBroker.java:213)
    at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.init(DataAttributeInfo.java:318)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initUnmappedAttributes(NodeInfo.java:687)
    at com.sap.tc.webdynpro.progmodel.context.DataNodeInfo.doInit(DataNodeInfo.java:238)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:671)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
    at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
    at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
    at com.sap.tc.webdynpro.progmodel.controller.Component.getCustomControllerInternal(Component.java:449)
    at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:387)
    at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:416)
    at com.sap.tc.webdynpro.progmodel.context.MappingInfo.getDataNode(MappingInfo.java:83)
    at com.sap.tc.webdynpro.progmodel.context.MappingInfo.initMapping(MappingInfo.java:125)
    at com.sap.tc.webdynpro.progmodel.context.MappingInfo.init(MappingInfo.java:121)
    at com.sap.tc.webdynpro.progmodel.context.MappedNodeInfo.doInit(MappedNodeInfo.java:215)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:671)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
    at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
    at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
    at com.sap.tc.webdynpro.progmodel.controller.Component.getCustomControllerInternal(Component.java:449)
    at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:387)
    at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:416)
    at com.sap.tc.webdynpro.progmodel.context.MappingInfo.getDataNode(MappingInfo.java:83)
    at com.sap.tc.webdynpro.progmodel.context.MappingInfo.initMapping(MappingInfo.java:125)
    at com.sap.tc.webdynpro.progmodel.context.MappingInfo.init(MappingInfo.java:121)
    at com.sap.tc.webdynpro.progmodel.context.MappedNodeInfo.doInit(MappedNodeInfo.java:215)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:671)
    at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
    at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
    at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
    at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
    at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:579)
    at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:155)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.doOpen(WebDynproWindow.java:295)
    at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.show(ApplicationWindow.java:183)
    at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.open(ApplicationWindow.java:178)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:364)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.dictionary.runtime.DdException: failed to create provider: User is locked. Please notify the person responsible
    at com.sap.dictionary.runtime.ProviderFactory.internalGetProvider(ProviderFactory.java:254)
    at com.sap.dictionary.runtime.ProviderFactory.getProvider(ProviderFactory.java:146)
    at com.sap.dictionary.runtime.DdDictionaryPool.getProvider(DdDictionaryPool.java:97)
    at com.sap.dictionary.runtime.DdDictionaryPool.getDictionary(DdDictionaryPool.java:79)
    at com.sap.dictionary.runtime.DdDictionaryPool.getDictionary(DdDictionaryPool.java:48)
    at com.sap.dictionary.runtime.DdBroker.getDataType(DdBroker.java:149)
    at com.sap.dictionary.runtime.DdBroker.getSimpleType(DdBroker.java:170)
    at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getSimpleType(DataTypeBroker.java:242)
    ... 61 more
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.GeneratedConstructorAccessor525.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at com.sap.dictionary.runtime.ProviderFactory.internalGetProvider(ProviderFactory.java:229)
    ... 68 more
    Caused by: com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: User is locked. Please notify the person responsible
    at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
    at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:1015)
    at com.sap.mw.jco.JCO$Client.connect(JCO.java:3255)
    at com.sap.dictionary.runtime.mdi.DataProvider.(DataProvider.java:123)
    ... 72 more
    I believe that error will get resolved once the users are unlocked in R/3 system.
    But the stituation is, we will get the system back on monday morning and I'll have no time to do anything as the business will be back in 1 hr when we get the system back.
    Can you please help me to identify the tasks that I can perform and be sure that all will be normal on Monday (and I'll still be in job.)
    Request your help and support.
    Thanks
    Vineet
    Edited by: vineet vikram on Apr 19, 2008 12:41 PM

    Hi vineet,
    Check the following things:
    (1) Specify the user names in Capital letters and try. This will help you.  (this could be the problem)
    (2) Test the RFC destination using the tCode SM59 and try to remote login from there.
    (3) If the user is locked, you can unlock using the tCode SU01.
    Regards
       Vinod V

  • 11.1.1.4 - MDS-00068 Error for the Application using user customization

    Hi All,
    I would like to check on this forum before I submit a SR. We have upgraded our ADF APP from 11.1.1.3 to 11.1.1.4. Many bugs are fixed, however while deploying the application we get following warning on integrated WLS Logs and application deployed successfully. The same app is working ok in 11.1.1.3. Also, if I deploy this application on Standalone WLS server and try to go to Enterprise Manager MDS configuration page for this Application it gives me a message - "MDS configuration information is not found. This application does not use MDS repository or MDS repository may not have been configured properly".
    Any help would be appreciable.
    - Chetan
    <ADFConfigLifeCycleCallBack> <contextInitialized> Failed to create config mbean.
    oracle.mds.exception.MDSRuntimeException: MDS-00068: Unable to find a type definition for: namespace = http://xmlns.oracle.com/adf/config, local name = caching-rules, file location = /META-INF/adf-config.xml
         at oracle.mds.core.MOTxnState.getMElemBean(MOTxnState.java:207)
         at oracle.mds.core.UpdateableMOContent.getMElemBean(UpdateableMOContent.java:611)
         at oracle.mds.core.MetadataObject.getContentWithRetry(MetadataObject.java:2039)
         at oracle.mds.core.BeanMetadataObject.getBean(BeanMetadataObject.java:89)
         at oracle.adf.share.jndi.MDSBackingStore.getMOBean(MDSBackingStore.java:570)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.init(RuntimeMXBeanImpl.java:169)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:159)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:151)
         at oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack.contextInitialized(ADFConfigLifeCycleCallBack.java:127)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: oracle.mds.exception.MDSRuntimeException: MDS-00068: Unable to find a type definition for: namespace = http://xmlns.oracle.com/adf/config, local name = caching-rules, file location = /META-INF/adf-config.xml
         at oracle.mds.internal.model.parse.MDSNodeParser.findMMElement(MDSNodeParser.java:322)
         at oracle.mds.internal.model.parse.MDSNodeParser.createModelNode(MDSNodeParser.java:603)
         at oracle.mds.internal.model.parse.MDSNodeParser.startElement(MDSNodeParser.java:240)
         at oracle.mds.internal.parsefwk.TreeBuilder$Handler.startElement(TreeBuilder.java:298)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1329)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:376)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:322)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:226)
         at oracle.mds.internal.parsefwk.TreeBuilder.parse(TreeBuilder.java:143)
         at oracle.mds.internal.parsefwk.TreeBuilder.parse(TreeBuilder.java:105)
         at oracle.mds.internal.model.parse.SAXParserUtils.parse(SAXParserUtils.java:479)
         at oracle.mds.internal.model.parse.SAXParserUtils.parse(SAXParserUtils.java:419)
         at oracle.mds.internal.model.parse.SAXParserUtils.parseBaseDocument(SAXParserUtils.java:114)
         at oracle.mds.internal.model.BaseDocBuilder.executeInternal(BaseDocBuilder.java:336)
         at oracle.mds.internal.model.BaseDocBuilder.execute(BaseDocBuilder.java:172)
         at oracle.mds.internal.model.ContentModelPipeline.processPipeline(ContentModelPipeline.java:265)
         at oracle.mds.core.MOContent.fetchContent(MOContent.java:510)
         at oracle.mds.core.CachedMOContent.fetchContent(CachedMOContent.java:253)
         at oracle.mds.core.MOContent.getMElemBean(MOContent.java:688)
         at oracle.mds.core.UpdateableChainedMOContent.getPriorModelDocument(UpdateableChainedMOContent.java:322)
         at oracle.mds.core.UpdateableChainedMOContent.fetchContent(UpdateableChainedMOContent.java:266)
         at oracle.mds.core.MOContent.getMElemBean(MOContent.java:688)
         at oracle.mds.core.MOSharedState.getMElemBean(MOSharedState.java:124)
         at oracle.mds.core.MOTxnState.getMDocumentInternal(MOTxnState.java:384)
         at oracle.mds.core.MOTxnState.getMElemBean(MOTxnState.java:200)
         ... 45 more

    Hi Frank,
    I was able to solve the issue after isolating it to ADF faces caching filter. We are using ADF faces caching filter for our application and we have defined <caching-rules> tag in adf-config.xml file. I found that <caching-rules> was part of the schema definition of namespace "http://xmlns.oracle.com/adf/config" till 11.1.1.3 and now in 11.1.1.4 it is not anymore and that's why just specifying <caching-rules> tag was working in 11.1.1.3.
    To solve the error I changed caching-rules to read from http://xmlns.oracle.com/adf/faces/rich/acf namespace. Now my caching rule tag in adf-config.xml looks like given below.
    <caching-rules xmlns="http://xmlns.oracle.com/adf/faces/rich/acf">
    <caching-rule id="cache-js">
    <cache>true</cache>
    <compress>true</compress>
    <duration>99999</duration>
    <agent-caching>true</agent-caching>
    <cache-key-pattern>*.js</cache-key-pattern>
    </caching-rule>
    <caching-rule id="cache-png">
    <cache>true</cache>
    <compress>true</compress>
    <duration>99999</duration>
    <agent-caching>true</agent-caching>
    <cache-key-pattern>*.png</cache-key-pattern>
    </caching-rule>
    <caching-rule id="cache-css">
    <cache>true</cache>
    <compress>true</compress>
    <duration>99999</duration>
    <agent-caching>true</agent-caching>
    <cache-key-pattern>*.css</cache-key-pattern>
    </caching-rule>
    </caching-rules>
    - Chetan

  • Automatic Documentation for GUI-Application

    I have to evaluate the use of Eclipse for our company.
    One topic is, whether there is a tool which helps to generate a first User-Documentation for Java-GUI-Applications. Does anybody whether there
    exists such a tool for Eclipse or maybe a plugin.
    Many thanks in advance
    Helmut

    Have a look at the weblog
    /people/vijaya.kumar/blog/2005/06/10/people-centric-user-interface-pcui--getting-started
    Hope this is what you are looking for.
    regards
    johnson zavier

  • Access denied error for Java application on 2630

    Hello!
    I have bought a 2630 recently. Now I have installed a small Java application that tries to store some data in the phones memory. However, each time the application tries to do so, I get a "java.lang.SecurityException Access denied" message and the application states that it could no save its data. I have set the security settings for that particular application so that the phone should ask before each access to the file system. In fact, before I get the error message, the phone asks whether the application may write data to the file system. But still answering that question with "yes" I get the Access denied error message. Now I am puzzled. By the way, the application uses JSR-75 which the 2630 should support.
    Anybody any ideas?
    Regards,
    Volker

    RESOLVED!
    I was able to create file from java application on Nokia 2630. Here is how:
    1. root C:/ is mapped to folder "Downloads"
    2. The folders does not show with their names
    3. there are 2 folders in C:/ predefgallery and predefjava
    4. in predefgallery there are several predefined folders e.g. predefrecordings is one of them
    5. I am able to create file inside predefrecordings, creating file in upper folders is denied
    6. user created folders aro NOT shown at all
    7. I had to manualy confirm reading of data many times and writing data once.
    I hope this can help to other Nokia users since I did not find this anywhere.
    Luke

  • Project creation error for ess application

    Hi All
    I am trying to customize an ess application(skills profile ) for the first time . we are encountoring the following error when we try to Create Project (ess/skl) from inactive DC,s: (Build Failed)
    I tried to sync sources but was of no help.
    Kindly help.
    [System.err] [Invoked from  com.sap.ide.generationfwk.task.GenerationTaskJavaMethod.executePersistent(GenerationTaskJavaMethod.java:153)]
    [System.err] com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Generic Exception:
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:178)
    [System.err] Caused by: com.sap.engine.lib.xml.parser.NestedSAXParserException: Generic Exception:  -> java.lang.NullPointerException
    [System.err]      at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:155)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:166)
    [System.err]      ... 59 more
    [System.err] Caused by: java.lang.NullPointerException
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.setAttributeValue(RepositoryPersistence.java:185)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter$ParsingHandler.parseRepositoryModelClass(XMLConfigurationParserWriter.java:970)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter$ParsingHandler.startElement(XMLConfigurationParserWriter.java:716)
    [System.err]      at com.sap.engine.lib.xml.parser.handlers.SAXDocHandler.startElementEnd(SAXDocHandler.java:146)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1814)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanContent(XMLParser.java:2440)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1841)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2843)
    [[System.err]      at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:280)
    [System.err]      at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:342)
    [System.err]      at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:125)
    [System.err]      ... 60 more
    [System.err]
    [System.err] [Invoked from  com.sap.ide.generationfwk.GenerationBase.doPersistentGeneration(GenerationBase.java:225)]
    [System.err] com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Generic Exception:
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:178)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLPersistence.doReadVMO(XMLPersistence.java:126)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.readVMO(RepositoryPersistence.java:356)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.doFindRepositoryObject(RepositoryPersistence.java:598)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.findRepositoryObject(RepositoryPersistence.java:170)
    [System.err]      at com.sap.tc.webdynpro.repository.model.Repository.findRepositoryObjectInternal(Repository.java:590)
    [System.err]      at com.sap.tc.webdynpro.repository.model.Repository.findRepositoryObject(Repository.java:555)
    [System.err]      at com.sap.tc.webdynpro.repository.conversion.RuntimeRepositoryGenerator.findCorrespondingTargetObject(RuntimeRepositoryGenerator.java:333)
    [System.err]      at com.sap.tc.webdynpro.repository.conversion.RuntimeRepositoryGenerator.findCorrespondingTargetObject(RuntimeRepositoryGenerator.java:305)
    [System.err]      at com.sap.tc.webdynpro.repository.conversion.RuntimeRepositoryGenerator.findCorrespondingTargetObject(RuntimeRepositoryGenerator.java:305)
    [System.err]      at com.sap.tc.webdynpro.repository.conversion.RuntimeRepositoryGenerator.findCorrespondingTargetObject(RuntimeRepositoryGenerator.java:305)
    [System.err]      at com.sap.tc.webdynpro.repository.conversion.RuntimeRepositoryGenerator.fillAssociation(RuntimeRepositoryGenerator.java:242)
    [System.err]      at com.sap.tc.webdynpro.repository.conversion.RuntimeRepositoryGenerator.copyAggregationTree(RuntimeRepositoryGenerator.java:144)
    [System.err]      at com.sap.tc.webdynpro.repository.conversion.RuntimeRepositoryGenerator.copy(RuntimeRepositoryGenerator.java:67)
    [System.err]      at com.sap.tc.webdynpro.repository.generation.ProgmodelRepositoryGenerator.doGenerate(ProgmodelRepositoryGenerator.java:168)
    [System.err]      at com.sap.tc.webdynpro.repository.generation.ProgmodelRepositoryGenerator.generate(ProgmodelRepositoryGenerator.java:80)
    [System.err]      at com.sap.ide.webdynpro.generation.runtime.RRApplicationGenerator.generate(RRApplicationGenerator.java:21)
    [System.err]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [System.err]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [System.err]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [System.err]      at java.lang.reflect.Method.invoke(Method.java:585)
    [System.err]      at com.sap.ide.generationfwk.task.GenerationTaskJavaMethod.executePersistent(GenerationTaskJavaMethod.java:147)
    [System.err]      at com.sap.ide.generationfwk.GenerationBase.doPersistentGeneration(GenerationBase.java:219)
    [System.err]      at com.sap.ide.generationfwk.GenerationBase.doPersistentGeneration(GenerationBase.java:175)
    [System.err]      at com.sap.ide.webdynpro.generation.Generation.doPersistentGenerationForApplicationRuntimeRepository(Generation.java:182)
    [System.err]      at com.sap.ide.webdynpro.generation.Generation.generatePersistentArchive(Generation.java:1616)
    [System.err]      at com.sap.ide.webdynpro.generation.console.GenerationConsole.generate(GenerationConsole.java:215)
    .reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [System.err]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [System.err]      at java.lang.reflect.Method.invoke(Method.java:585)
    [System.err]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.maybeInvoke(PluginHandler2.java:347)
    [System.err]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.request(PluginHandler2.java:99)
    [System.err]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.build(PluginHandler2.java:73)
    [System.err]      at com.sap.tc.buildtool.PluginHandler2Wrapper.execute(PluginHandler2Wrapper.java:58)
    [System.err]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1723)
    [System.err]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:5633)
    [System.err]      at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction.buildDCs(DcCreateProjectAction.java:1027)
    [System.err]      at com.sap.ide.eclipse.component.provider.actions.dc.DcCreateProjectAction$1.execute(DcCreateProjectAction.java:299)
    [System.err]      at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:71)
    [System.err]      at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
    [System.err]      at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:85)
    [System.err]      at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
    [System.err] Caused by: com.sap.engine.lib.xml.parser.NestedSAXParserException: Generic Exception:  -> java.lang.NullPointerException
    [System.err]      at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:155)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter.startParsing(XMLConfigurationParserWriter.java:166)
    [System.err]      ... 59 more
    [System.err] Caused by: java.lang.NullPointerException
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.RepositoryPersistence.setAttributeValue(RepositoryPersistence.java:185)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter$ParsingHandler.parseRepositoryModelClass(XMLConfigurationParserWriter.java:970)
    [System.err]      at com.sap.tc.webdynpro.repository.persistence.xml.XMLConfigurationParserWriter$ParsingHandler.startElement(XMLConfigurationParserWriter.java:716)
    [System.err]      at com.sap.engine.lib.xml.parser.handlers.SAXDocHandler.startElementEnd(SAXDocHandler.java:146)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1814)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanContent(XMLParser.java:2440)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1841)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2843)
    [System.err]      at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:229)
    [System.err]      at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145)
    [System.err]      at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160)
    [System.err]      at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261)
    [System.err]      at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:280)
    [System.err]      at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:342)
    [System.err]      at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:125)
    [System.err]      ... 60 more
         [wdgen] ERROR: com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Generic Exception: , F:/Template/.dtc/0/t/7B4ED0BE027871726CD7928188870BCC/gen_wdp/configuration/Applications/com.sap.xss.hr.skl.SkillsApplication/SkillsApplication.xml
         [wdgen] [Info]    Catching throwable null
         [wdgen] [Info]    com.sap.webdynpro.generation.ant.GenerationAntTaskError
         [wdgen]      at com.sap.webdynpro.generation.ant.GenerationAnt.printMessage(GenerationAnt.java:123)
         [wdgen] ERROR: Unknown exception during generation null (com.sap.webdynpro.generation.ant.GenerationAntTaskError)
         [wdgen] ERROR: Generation failed due to errors (77 seconds)
    Error: F:\Template\.dtc\0\DCs\sap.com\ess\skl\_comp\gen\default\logs\build.xml:102: [Error]   Generation failed!
         at com.sap.webdynpro.generation.ant.WDGenAntTask.execute(WDGenAntTask.java:254)
    Ant runtime 1 minute 49.937 seconds
    Ant build finished with ERRORS
    [Error]   Generation failed!
    Error: Build stopped due to an error: [Error]   Generation failed!
    Build plugin finished at 2009-03-30 10:17:08 GMT-05:00 (ACT)
    Total build plugin runtime: 2 minutes 23.609 seconds
    Build finished with ERROR
    Edited by: purav mehta on Mar 30, 2009 5:35 PM

    Hi
    Check whether all the required DC's are there in track or not. first create independent DC and then move to other.
    Best Regards
    Satish Kumar

  • Shows error for updating applications

    Under Apps in creative cloud , shows Error downloading message, I have a creative cloud membership.

    Simi266 for information on how to resolve download errors please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html.

  • OID connection error for partner application

    Hello All
    I have registered a partner application which run from Oracle application server OC4J and when i login via URL, I get following error below, any suggestions?. All parameters are correctly specified.
    AJPRequestHandler-ApplicationServerThread-458 Communication Exception received. Cleaning up the stale
    connection
    oracle.ldap.util.CommunicationErrorException: Unable to establish connection to directory. Please verify the input parameters: host, port,
    dn &' password connection closed
    at oracle.ldap.util.Subscriber.getUser_NICKNAME(Subscriber.java:1214)
    at oracle.ldap.util.Subscriber.getUser(Subscriber.java:913)
    at oracle.ldap.util.Subscriber.getUser(Subscriber.java:860)
    at oracle.security.sso.server.ldap.OIDUserRepository.getUserProperties(OIDUserRepository.java:495)
    at oracle.security.sso.server.auth.SSOServerAuth.authenticate(SSOServerAuth.java:485)
    at oracle.security.sso.server.ui.SSOLoginServlet.processSSOPartnerRequest(SSOLoginServlet.java:1058)
    at oracle.security.sso.server.ui.SSOLoginServlet.doPost(SSOLoginServlet.java:350)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:835)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:341)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:816)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:231)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:136)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Thanks
    Amit

    Hi Amit,
    I am also facing the same issue. Could you please share the work around you around to get rid of this issue?
    Mahendra.

  • Resource not available error for JSP application

    Hi
    i have developed J2EE - Web Module DC with JSP pages. I built the .WAR file of this application. Now I created J2ee - Enterprise application DC which references above WAR file and created EAR file. This EAR was then deployed on the server and RC was 0. but when i try to access the JSP page, it is giving me "The Requested Resource is not available".
    this error comes only when i deploy the DC thru NWDI. if I deploy it directly from NWDS, i can access the JSP.
    Please guide.
    Deepak

    The Deployment is not successful, the activity associated with the deployment is still in import queue.
    Check in http://<hostname>:<port>/TCS/Deployer and check in <namespace>_<trackname>_D and see if the activity is in import queue.
    Trigger the deployment manually.
    Hope this helps.
    Cheers-
    Pramod

  • HTTP Status 404 error for FIORI Application deployed on HCP

    Hello Experts,
    I have created a Fiori App using Web IDE and deployed it on my trial account of HCP .
    The Gateway service used is from On Premise system. I have used SAP Cloud Connector to connect Hana cloud Platform and on premise system.
    In Web IDE test application works fine. However, when I deploy it and access the application URL I am getting the error "HTTP Status 404" as shown in the screenshot.
    In Chrome  Developer Console shows below error
    "Failed to load resource: the server responded with a status of 404 (Not Found)".  I have checked many threads but could not find the solutions.
    Thanks and Regards,
    Ashik

    Does your firoi app have index.html file ? If yes, is it placed in the root folder of your app ?
    I guess you're missing out the index.html in your fiori app. You may be having Component.js as the entry point which will run only with Fiori launchpad. But to run fiori app as standalone, you need to create the index.html file.
    You can try accessing your component.js file by adding a '/Component.js' at the end of the url to know if you're app has been deployed properly as of now.
    -Sakthivel

  • Communication error for HFM Application

    Hi all,
    We seem to be able to log on to an application via HFM Client, but not workspace. We have checked the log file there is no error, It has been fixed by restarting the services. But again we are facing the same issue, Is there are solution to fix this issue permanently.
    Thanks in Advance,
    sanjeev
    Edited by: us**** on Oct 21, 2010 10:10 PM

    am connected via AirPort to a Netgear WGT624 v.2 802/11g wireless router that is connected to a Road Runner cable modem.
    Which of these devices is doing DHCP ?
    I hope the modem is in Bridge Mode and the Airport is Wireless Access Mode and NOT Sharing an IP.
    That should leave the Netgear to do UPnP.
    Following that have you disabled the SPI or DOS firewall in the WAN Settings and Let it Respond to Internet Pings ?
    10:46 PM Sunday; March 30, 2008

  • How do i get around the A12E1 error for installing application mgr

    how do I get around the A12E1 error

    Which operating system are you using?  Do you have any other Adobe Creative software installed?

  • [solved] Interpreting gdb errors for bin32 application

    Hi all,
    I have a 32-bit app which I've happily run till about 2 weeks back on 64-bit Arch, called OpenSong. Its open source but uses RealBasic to compile cross-architecture, and realbasic doesn't support 64-bit on Linux.
    Anyway, I started getting segfaults after moving to the new [multilib] architecture. A quick gdb shows that the problem comes from /usr/lib32/libz.so.1
    Starting program: /opt/OpenSong/opensong
    [Thread debugging using libthread_db enabled]
    (opensong:28357): Gtk-WARNING **: Unable to locate theme engine in module_path: "ubuntulooks",
    (opensong:28357): Gtk-WARNING **: Unable to locate theme engine in module_path: "crux-engine",
    Gtk-Message: Failed to load module "gnomebreakpad": libgnomebreakpad.so: cannot open shared object file: No such file or directory
    [OpenSong] -------------------- Begin Run ----------------------
    [OpenSong] 2010-08-28 09:45:56
    [OpenSong] Translator.GetNode: language/style_preview
    [OpenSong] Translator.GetNode: language/tempo_list
    [OpenSong] Translator.GetNode: language/theme_list
    [OpenSong] Translator.GetNode: language/time_sig_list
    [OpenSong] Translator.GetNode: language/transition_list
    [OpenSong] Translator.GetNode: language/imagequality_list
    [New Thread 0xf2bb2b70 (LWP 28360)]
    [New Thread 0xf23b1b70 (LWP 28361)]
    Program received signal SIGSEGV, Segmentation fault.
    0xf7331163 in inflate_table () from /usr/lib32/libz.so.1
    (gdb) run
    The program being debugged has been started already.
    Start it from the beginning? (y or n) y
    Starting program: /opt/OpenSong/opensong
    [Thread debugging using libthread_db enabled]
    (opensong:29589): Gtk-WARNING **: Unable to locate theme engine in module_path: "ubuntulooks",
    (opensong:29589): Gtk-WARNING **: Unable to locate theme engine in module_path: "crux-engine",
    Gtk-Message: Failed to load module "gnomebreakpad": libgnomebreakpad.so: cannot open shared object file: No such file or directory
    [OpenSong] -------------------- Begin Run ----------------------
    [OpenSong] 2010-08-28 09:47:35
    [OpenSong] Translator.GetNode: language/style_preview
    [OpenSong] Translator.GetNode: language/tempo_list
    [OpenSong] Translator.GetNode: language/theme_list
    [OpenSong] Translator.GetNode: language/time_sig_list
    [OpenSong] Translator.GetNode: language/transition_list
    [OpenSong] Translator.GetNode: language/imagequality_list
    [New Thread 0xf2bb2b70 (LWP 29606)]
    [New Thread 0xf23b1b70 (LWP 29607)]
    Program received signal SIGSEGV, Segmentation fault.
    0xf7331163 in inflate_table () from /usr/lib32/libz.so.1
    When I first made this package, namcap indicated I had dependencies on lib32-gtk, and it worked till now. I'm quite stumped as to how to proceed, I tried symlinking /usr/lib32 to /opt/lib32/usr/lib (obviously doesn't work). I'd like to try preloading, but I don't think it'll help since it DOES reach /usr/lib32/libz after all.
    Ideas please?
    Oh, and the program itself contains a single executable and 7 dynamic libraries, all of them in /opt/OpenSong (taken directly from the .deb file they provide).
    Last edited by ngoonee (2010-08-28 05:35:31)

    Hmm, some more experimentation shows that excluding -march=x86_64 from makepkg.conf prevents the segfault. I wonder whether any other apps are affected. Will bring this up on the ML.
    EDIT: Ah, a bit more experimentation shows that the problem was -O2 and -O3, not -march=x86_64. On to the bugtracker, the ML isn't required now.
    Last edited by ngoonee (2010-08-28 05:45:19)

  • Unable to load Database Error for one of the BSO Application.

    Hello Everyone,
    We have one Production Issue like suddenly the an Application Fiji while should be running was stopped. When i tried to restart it its showing Error.
    gvw3086-v.atlanta.hp.com:1423.Fiji    Start  application    August 28, 2013 8:32:24 PM SGT    Failed
    Error: 1002141 Unable to load database [Arirang], error code [1019038]
    gvw3086-v.atlanta.hp.com:1423.Fiji.Consol    Start database    August 28, 2013 8:33:30 PM SGT    Failed
    Error: 1002141 Unable to load database [Arirang], error code [1019038].
    I checked the Log but not sure it correct or not i see this Error message.
    [Wed Aug 28 11:33:48 2013]Local/Fiji///7944/Info(1002089)
    RECEIVED ABNORMAL SHUTDOWN COMMAND - APPLICATION TERMINATING
    But i also saw this error before but the application use to start automatically but this time it did not.
    can anyone help me on this.
    Regards,
    Naveen

    Hi,
    As i mentioned above its only for one Application Fiji. For a temporary Solution we tried to restart the Hyperion Services. But this did not work. One of the the Hyperion Service HyPService(not sure of the exact name). did not restart. So we have done a a fail over to other node and now the Fiji apps is running. But i don't think so what we have done is the correct fix for the solution. Have any one faced this problem.
    Hi John,
    Which Doc ID you mean to refer me is that the doc which comes with the Essbase Software.
    Regards,
    Naveen

Maybe you are looking for

  • How to clear balance qty pending at vendor end

    Hi Gurus, I have checked the report MBLB there is lot of unrestricted material. This is actually losted material, Kindly let me know how i can clear this pending material. The SAP shows this material but actually material does not exist physical. Reg

  • Weird ML issues

    Switched on my mac this AM, desktop pic had changed, then itunes started up and began playing. Things have not been great since ML upgrade from SL. Any thoughts? 27" imac 3.06 Core 2 4GB Ram

  • Payment advise on Check

    Hi Friends, My client is currently printing check,payment advise and payment summary separately, they want to change current business process and want to print payment advise on the same page as check. Where do I do that configuration. Moreover, what

  • Not Ready Agents Receive Internal Cals

    Hi just wondering about something. I have agents logged in but they are not in a READY state. When they are in a NOT READY state they can still receive internal calls from an internal extension. Is there any way to prevent this. Thanks Michael

  • Restoring a Blank HD to factory defaults (including the hidden partition) [T400, Vista x64]

    Hi, Background info: I'm installing linux, and instead of asking about everything at once, I'm separating my problems into multiple questions. I plan to remove all partitions, make new ones (adding an extra one for linux) and then use the recover stu