JDeveloper  ADF Mobile - JAVA HOME location

Hi,
What will be the java_home variable for the ADF Mobile JVM when it gets deployed in Android. Because based on this location only cipher will take the location to look for policy files. I am getting an error unable to locate policy files. But, the same is working in iOS.
I saw that the lib/security is present in \assets\storage\jvm of the application. Do we need to change that location of lib/security
Any help to resolve this issue is greatly appreciated.
Regards,
Pavani Akella

Hi,
In my application I need to encrypt data what ever I send to server.
For that I am creating a cipher object like this. Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
I am getting the following error
java.lang.ExceptionInInitializerError
at java.lang.Class.runStaticInitializers(Unknown Source)
at javax.crypto.Cipher.a(Unknown Source)
at javax.crypto.Cipher.getInstance(Unknown Source)
Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
01-08 16:10:19.758: D/CVM(769): at javax.crypto.SunJCE_b.<clinit>(Unknown Source)
01-08 16:10:19.768: D/CVM(769): ... 14 more
01-08 16:10:19.768: D/CVM(769): Caused by: java.lang.SecurityException: Cannot locate policy or framework files!
01-08 16:10:19.768: D/CVM(769): at javax.crypto.SunJCE_b.g(Unknown Source)
01-08 16:10:19.768: D/CVM(769): at javax.crypto.SunJCE_b.f(Unknown Source)
01-08 16:10:19.768: D/CVM(769): at javax.crypto.SunJCE_t.run(Unknown Source
when I deploy in android at the above line of code . ( which says unable to find policy files)
But same code is working in ios.
Any help is greatly appreciated.
Regards,
Pavani Akella
Edited by: Pavani Akella on 09-Jan-2013 18:14

Similar Messages

  • JDeveloper - ADF Mobile - Web Services Data Control

    Hello,
    I'm new to ADF mobile (newer than ADF mobile itself :) I watched Shay's excellent you tube videos which makes it look really easy to create a mobile projects. I was successfully able to create a simple project and deploy it on my iphone and ipad. The next step is to get data from a web service. I am trying to create web service data control from this wsdl: http://msrmaps.com/TerraService2.asmx?wsdl.
    However I keep getting an unusual error with a dialog of heading: "Invalid WSDL URL" and the dialog says: "oracle/adfinternal/model/adapter/webservice/utils/WSUtils$DefaultAuthPrompter" with an OK button. I tried quite a few things and other applications like Flex Builder and Soap UI and was able to successfully use this wsdl: http://msrmaps.com/TerraService2.asmx?wsdl.
    A few things about my environment:
    I am working on mac OS X 10.8.2
    I have JDeveloper Studio Edition Version 11.1.2.3.0 (Build JDEVADF_11.1.2.3.0_GENERIC_120914.0223.6276.1)
    Java version installed: 1.6.0_37
    I'm at a loss here and not sure what am I missing? I tried googling "DefaultAuthPrompter" and nothing shows up.
    Any help is much appreciated.
    thanks,
    Rahul

    Hi Arun,
    I'm not behind a firewall and access the wsdl directly. I can also use other applications to generate proxy classes from this wsdl url.
    I am starting to wonder if there is missing library on my mac installation of Jdeveloper?
    Rahul

  • ADF Mobile - Get network status

    OS: OSX 10.8.5
    JDEV: 11.1.2.4
    ADF Mobile Extension version: 11.1.2.4.39.64.51
    HI All,
    I'm currently in the middle of developing an ADF Mobile application and exploring the offline/online capabilities and have run into an issue where i'm trying to determine if the user has network connectivity, but its not working properly. I'm trying to make the app as dynamic as possible such that, for every transaction that requires network access, the app will check beforehand whether it is "connected" or "disconnected".  I've tried the following but not quite got there..
    1) From the link below, Joe does make note that the EL Expression "#{deviceScope.hardware.networkStatus}" to resolve the network status is only evaluated at start up, which is good for when the app opens.. but not good when the user loses network connectivity.
    Re: JDeveloper  ADF Mobile -- Android Context
    2) The link below uses javascript to evaluate the network connectivity. This works first time and every subsequent time afterwards, however, I would like the javascript to ONLY evaluate the network status and then populate a pageFlowScope variable with true or false. This bit also works fine. From here, it may seem that the pageFlowScope variable has been populated, but if the java method (which calls the javascript function to check the network connectivity) also includes code that reference the pageFlowScope variable that the javascript has just populated, it is not evaluated properly.
    Example:
        public void checkConnection(ActionEvent actionEvent) {
            // This works fine and populates the PageFlowScope variable fine
            AdfmfContainerUtilities.invokeContainerJavaScriptFunction("feature1", "application.checkConnection",
                                                                              new Object[] { });
            // The two lines below do not work properly, as if its retained the old value of the pageFlowScope.
            ValueExpression ve = AdfmfJavaUtilities.getValueExpression("#{pageFlowScope.isConnected}", String.class);
            throw new AdfException("isConnected: " + (String)ve.getValue(AdfmfJavaUtilities.getAdfELContext()), AdfException.INFO);
    Unwinding ADF: Offline Data Synchronization for ADF Mobile
    Below is a link to a sample app that i made and the steps to reproduce:
    https://app.box.com/s/ng5n362unttu7b88i42b
    - Have network connectivity
    - Click on the "Check connection via JS' button the first time
    - The popup in the foreground is the javascript showing the connectivity, which is correct
    - The popup in the background is an INFO AdfExpection showing the connectivity, which is INCORRECT
    - Click OK twice
    - Click on the "Check connection via JS' button the second time
    - The popup in the foreground is the javascript showing the connectivity, which is correct
    - The popup in the background is an INFO AdfExpection showing the connectivity, which is CORRECT
    - Click OK twice
    - disconnect your computer from the network/internet
    - Click on the "Check connection via JS' button the third time
    - The popup in the foreground is the javascript showing the connectivity, which is correct
    - The popup in the background is an INFO AdfExpection showing the connectivity, which is INCORRECT
    Has anyone has similar use case has have a work around/solution? This is driving me nuts!
    Cheers,
    Eddie

    Hi Frank,
    Thanks for the quick reply.
    That's exactly what i've used in my javascript function in my demo app and that link is the resource i used as well, however, that javascript code does populate the pageFlowScope variable fine, however, if i make reference to that pageFlowScope variable from within the same java method that includes the call to the javascript function, it does not get the updated pageFlowScope value. Only after the transaction has fully completed and i then [for example] click on a button on the screen to evaluate the pageFlowScope variable again, do i get the updated value.
    Having a stab in the dark, could it be something to do with the way the javascript is executed when updating the pageFlowScope variable and lifecycle of that transaction
    I've also tried this under the code where it populates the pageFlowScope, but it can't resolve the expression, seems like i'm doing something wrong..
    navigator.notification.alert('pageFlowScope value: ' + adf.mf.el.getValue("#{pageFlowScope.isConnected}", onSuccess, onFail), alertDismissed, 'Connected', 'OK');

  • While consuming Fusion CRM web service in ADF mobile throwing an error

    Hi,
    I am developing ADF Mobile using JDeveloper
    11.1.2.3 and consuming Fusion CRM ADF Web Services.
    While executing CRUD operations with these web services
    in ADF mobile app, I am getting SOAP response as *Error in getting response
    and got result nothing *.
    And also noticed as using JDeveloper ADF mobile App, unable to create URL service
    Data Control - REST based for FUsion CRM web services. Where as I am able to
    create SOAP based web services data control. It' strange or surprise.
    Did anyone face the above problems. Kindly let me know any suggestions or
    samples to the below contacts
    Regards
    Bhaskara Reddy S
    00919008466722
    bhaskara.sannapureddy at Crmit.com

    Dear Frank,
    Based on below links, Fusion CRM also supports REST also apart from regular SOAP Web Services.
    http://niallcblogs.blogspot.in/2012/10/204-calling-rest-service-from-fusion-crm.html AND
    http://docs.oracle.com/cd/E15586_01/fusionapps.1111/e20388/F412758AN17B21.htm
    (For e.g one of linked in profile :http://www.linkedin.com/in/minalkhodani , many teams are developing using SOAP & REST)
    Designed and developed integration services using SOAP and REST web services for Oracle Fusion CRM Marketing Modules.)
    When creating URL based data control, getting an Error as "Forbidden" , (Does it mean NOT SUPPORTED??) . Kindly advice.
    I am calling WEB SERVICE thru SOAP in AMX PAGE code as below after creating Web Services Data Control from ADF Mobile UI thru JDeveloper IDE.
    == CODE SNIPPET OF AMX PAGE CALLING SOAP FUSION CRM WEB SERVICE =======
    <?xml version="1.0" encoding="UTF-8" ?>
    <amx:view xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:amx="http://xmlns.oracle.com/adf/mf/amx"
    xmlns:dvtm="http://xmlns.oracle.com/adf/mf/amx/dvt">
    <amx:panelPage id="pp1">
    <amx:panelFormLayout id="pfl2">
    <amx:inputText value="#{bindings.name.inputValue}" label="Person First Name" id="it1"/>
    <amx:inputText value="300000001210220" label="Person Object Id" id="it2"/>
    </amx:panelFormLayout>
    <amx:facet name="header">
    <amx:outputText value="Create Person in Fusion CRM" id="ot1"/>
    </amx:facet>
    <amx:facet name="primary">
    <amx:commandButton id="cb1" text="Back" action="__back"/>
    </amx:facet>
    <amx:facet name="secondary">
    <amx:commandButton id="cb2"/>
    </amx:facet>
    <amx:panelFormLayout id="pfl1">
    </amx:panelFormLayout>
    <amx:outputText value="#{bindings.message.inputValue}" id="ot2"/>
    <amx:outputText value="#{bindings.code.inputValue}" id="ot3"/>
    *<amx:commandButton actionListener="#{bindings.createPerson.execute}" text="createPerson"*
    *disabled="#{!bindings.createPerson.enabled}" id="cb3"/>*
    <amx:iterator var="row" value="#{bindings.personParty1.collectionModel}" id="i1">
    <amx:panelLabelAndMessage label=" 300000001210220" id="plam2">
    <amx:outputText value="#{row.PartyId}" id="ot5">
    <amx:convertNumber groupingUsed="false"/>
    </amx:outputText>
    </amx:panelLabelAndMessage>
    <amx:panelLabelAndMessage label="#{bindings.name.inputValue}" id="plam1">
    <amx:outputText value="#{row.PersonFirstName}" id="ot4"/>
    </amx:panelLabelAndMessage>
    </amx:iterator>
    </amx:panelPage>
    </amx:view>
    Regards
    Bhaskara Reddy

  • ADF mobile: How to pack a third party jars into apk

    Hi Expert,
    I am using Jdeveloper + ADF mobile 11.1.2.4 to develop an android application. In this application, I need to call some functions in the third party jar files.  I need to add the third party jars into my apk so that those classes can be found during runtime.
    I followed section 17.1.1.1 to add the libraries into my project. However, after I deployed my app to the emulator and tried to run it, it reported "encountered error: classes not found". And I also found that the third party jars don't exist in libs/ directory of the apk. Do you know how to solve the problem: How to reference a third party jar files in my app and make sure it works?
    Thanks,
    Yan

    Create a /libs directory within  Android project directory and copy the JAR files to /libs.
    To build.properties add
    external.libs.dir=libs

  • How to install ADF Mobile extension to JDeveloper on OSX 10.8.2

    Using the info from the following discussion thread it was pretty straightforward to install jdeveloper to OSX 10.8.2.
    Re: Jdeveloper install on os x lion (10.7.5)
    as well as the blog posts
    http://adf4beginners.blogspot.be/2012/10/installing-jdeveloper-on-mac-osx-108.html
    https://blogs.oracle.com/shay/entry/installing_jdeveloper_on_mac_os
    Now the issue is that when I try to install the ADF Mobile extension I run into problems:
    I tried installing both directly from the update centres as well as from local file, but the
    only extension available after restart is the "ADF Mobile Help" (oracle.adf.mobile.doc).
    I can also see from the startup console a lot of warning messages of type as indicated below.
    Oracle JDeveloper 11g Release 2 (11.1.2.3.0)
    Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
    Installing updates...
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/iOS/juel-api-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/iOS/juel-impl-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/iOS/jvmti/jar/juel-api-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/iOS/jvmti/jar/juel-impl-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/iOS/release/jar/juel-api-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/iOS/release/jar/juel-impl-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/lib/juel-api-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:47 PM oracle.ideimpl.deferredupdate.task.BundleDetails getOsgiBundleDetails
    WARNING: Bundle: /Users/gwr/Downloads/jdeveloper/../jdeveloper/jdev/extensions/oracle.adf.mobile/lib/juel-impl-2.2.4-SNAPSHOT.jar has an invalid version number 2.2.4-SNAPSHOT
    Jan 10, 2013 9:36:55 PM org.netbeans.core.startup.NbEvents logged
    INFO: Turning on modules:
    Jan 10, 2013 9:36:55 PM org.netbeans.core.startup.NbEvents dumpModulesList
    INFO:      org.openide.util.lookup [8.3.1 201007282301]
         org.openide.util [8.6.2 201103231602]
         org.openide.modules [7.17.2 201008301741]
         org.openide.filesystems [7.38.2 201007282301]
         org.netbeans.core.dynamicconfig [1.0 120919]
         org.netbeans.libs.osgi [1.1.1 201007282301]
         org.netbeans.bootstrap/1 [2.33.5 201104201301]
         org.netbeans.core.startup/1 [1.25.5 201103231602]
         org.netbeans.core.netigso [1.4.5 201011191627]
         org.apidesign.netbinox [1.16.10 110502]
         oracle.ide_osgi [11.1.2 11.1.2]
         com.oracle.jdeveloper.nbbridge [1.1 120919]

    thanks,
    you gave me the courage to move along, and I stumbled across some info
    (should have given a link here, but not able to find the most correct one right now)
    As a matter of fact it seems like several postings in blogs and discussion forums touch this area.
    Just wonder if we could smooth this process a bit.
    issuing this command sequence, did the trick:
    sudo mkdir -p /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/jre/lib
    cd /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/jre/lib
    sudo ln -s /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/classes/classes.jar rt.jar
    Then for jdk location I selected
    /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Contents/Home

  • Deploying ADF Mobile Browser Sample App in JDeveloper 11.1.2.3

    Hi,
    I had problem in deploying the sample app for ADF Mobile Browser in JDeveloper 11.1.2.3.
    I had tried every solution such as replacing web.xml for the Sample App with web.xml created in JDeveloper 11.1.2.3.
    I could not find the Jar file for the oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler in the web also.
    Please help to solve this problem as I had tried for many days.
    Thank you very much! =)
    ADF Mobile Browser Sample App URL:
    [ADF Mobile Browser Sample App|http://www.oracle.com/technetwork/developer-tools/adf/adf-mobile-browser-1864237.html]
    Error Log:_
    *<ConfigureListener> <contextInitialized> Critical error during deployment:*
    com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:357)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:226)
         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:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:43)
         at com.sun.faces.util.Util.loadClass(Util.java:303)
         at com.sun.faces.config.processor.AbstractConfigProcessor.loadClass(AbstractConfigProcessor.java:311)
         at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processHandlerClass(FaceletTaglibConfigProcessor.java:420)
         at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTags(FaceletTaglibConfigProcessor.java:371)
         at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTagLibrary(FaceletTaglibConfigProcessor.java:314)
         at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.process(FaceletTaglibConfigProcessor.java:263)
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:340)
         ... 38 more
    <Dec 10, 2012 12:20:15 PM IST> <Warning> <HTTP> <BEA-101162> <User defined listener com.sun.faces.config.ConfigureListener failed: java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler.
    java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:293)
         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)
         Truncated. see log file for complete stacktrace
    Caused By: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:357)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:226)
         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)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         Truncated. see log file for complete stacktrace
    >
    <FactoryFinder$FactoryManager> <getFactory> Application was not properly initialized at startup, could not find Factory: javax.faces.application.ApplicationFactory. Attempting to find backup.
    <ConfigureListener> <contextDestroyed> Unexpected exception when attempting to tear down the Mojarra runtime
    java.lang.IllegalStateException: Could not find backup for factory javax.faces.application.ApplicationFactory.
         at javax.faces.FactoryFinder$FactoryManager.getFactory(FactoryFinder.java:996)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:331)
         at com.sun.faces.config.InitFacesContext.getApplication(InitFacesContext.java:131)
         at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListener.java:329)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:482)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextDestroyedEvent(EventsManager.java:200)
         at weblogic.servlet.internal.WebAppServletContext.destroy(WebAppServletContext.java:3224)
         at weblogic.servlet.internal.ServletContextManager.destroyContext(ServletContextManager.java:247)
         at weblogic.servlet.internal.HttpServer.unloadWebApp(HttpServer.java:461)
         at weblogic.servlet.internal.WebAppModule.destroyContexts(WebAppModule.java:1535)
         at weblogic.servlet.internal.WebAppModule.deactivate(WebAppModule.java:507)
         at weblogic.application.internal.flow.ModuleStateDriver$2.previous(ModuleStateDriver.java:387)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:215)
         at weblogic.application.internal.flow.ModuleStateDriver.deactivate(ModuleStateDriver.java:141)
         at weblogic.application.internal.flow.ScopedModuleDriver.deactivate(ScopedModuleDriver.java:206)
         at weblogic.application.internal.flow.ModuleListenerInvoker.deactivate(ModuleListenerInvoker.java:261)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$2.previous(DeploymentCallbackFlow.java:547)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:215)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.deactivate(DeploymentCallbackFlow.java:192)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.deactivate(DeploymentCallbackFlow.java:184)
         at weblogic.application.internal.BaseDeployment$2.previous(BaseDeployment.java:642)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:63)
         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:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    <Dec 10, 2012 12:20:15 PM IST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1355122207762' for task '3'. Error is: 'weblogic.application.ModuleException: '
    weblogic.application.ModuleException:
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1510)
         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)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.adfinternal.view.faces.bi.facelets.graph.RichSeriesSetHandler
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         Truncated. see log file for complete stacktrace
    >
    Edited by: 975879 on Dec 9, 2012 10:56 PM

    Hi Frank,
    Thanks for the fast response.
    Based on your advice, I had try to comment out all usage of graph in jsp, web.xml, and data binding file.
    But even after perform these, I still facing the same problem.
    For your information, RichSeriesSetHandler does not exist in the oracle.adfinternal.view.faces.bi.facelets.
    I suspecting RichSeriesSetHandler is configured in the app and it occur this error as it could not find the class.
    I had try to search this usage of this class in the app but there is no results found.

  • "Invalid Java Home ...." .Installing the JDeveloper  Studio Edition ---Mac

    I have try every Path OR"JDK Path",and jdev told me: "Invalid Java Home ......" .
    I cannot understand this: Ref: http://download.oracle.com/docs/cd/E12839_01/install.1111/e13666/toc.htm
    6.2 Specifying the JDK location on Mac OS X Systems
    Note: This section is not applicable to the Studio edition.
    When you start JDeveloper for the first time, the jdev script prompts you to provide the location of your JDK installation if it cannot locate it. You will need to enter the path to java.exe.
    Edited by: user4527807 on 2008/11/28 下午 11:11

    A quick search on this forum for Mac would have shown you that there are some extra steps mentioned in the release notes for Mac:
    http://www.oracle.com/technology/products/jdev/htdocs/11/knownissues.html#install4

  • Oracle ADF Mobile Client extension not found in JDeveloper 11.1..2.2?

    Hi. I was trying to install the extension for mobile development in ADF but unfortunately I could not find the extension.
    I went to Help -> Check for Updates -> Official Oracle Extensions and Updates. Yet i did not find the "Oracle ADF Mobile Client extension" there.
    I am running Jdeveloper 11.1.2.2.
    Is the Oracle ADF Mobile Client framework compatible for 11.1.2.2? Or is it no available anymore? Can someone please enlighten me? Thanks!

    Re: How to get the ADF Mobile Client extension

  • Oracle Fusion Middleware Java API Reference for Oracle ADF Mobile

    Where can I find "Oracle Fusion Middleware Java API Reference for Oracle ADF Mobile"?
    Thanks a lot for your time.

    Hi, this is referring to the JavaDocs for Java methods/classes supported by ADF Mobile. You can typically right (or ctrl) click on any ADF Mobile specific Java method and select "JavaDoc". You can open up a sample app that contains any Java class - for example the HR sample app, and find any method with name "adfmf*". You should be able to see the Java doc for the ADF Mobile related methods/classes.
    Thanks,
    Joe Huang

  • How to call java function with parameter from javascript in adf mobile?

    how to call java function with parameter from javascript in adf mobile?

    The ADF Mobile Container Utilities API may be used from JavaScript or Java.
    Application Container APIs - 11g Release 2 (11.1.2.4.0)

  • ADF Mobile : Could not find property inputvalue in class java.math.BigDecimal

    I tried to add an input text item to the list view like below and received an error message while navigating out of the input text field.
    "Could not find property inputvalue in class java.math.BigDecimal".
    Can someone show me some pointers about what is wrong with the below code.
    JDEV Version : 11.1.2.4
    <amx:listView var="row" value="#{bindings.Empdtls.collectionModel}"
                            fetchSize="#{bindings.Empdtls.rangeSize}" styleClass="adfmf-listView-insetList"
                            id="lv1" editMode="true">
                <amx:listItem id="li1">
                  <amx:tableLayout width="100%" id="tl1">
                    <amx:rowLayout id="rl1">
                      <amx:cellFormat width="10px" id="cf3"/>
                      <amx:cellFormat width="60%" height="43px" id="cf2">
                        <amx:outputText value="#{row.ClassCode}" id="ot3"/>
                      </amx:cellFormat>
                      <amx:cellFormat width="10px" id="cf4"/>
                      <amx:cellFormat width="40%" halign="end" id="cf1">
                        <amx:inputText value="#{row.bindings.Salary.inputValue}" simple="true" id="it41"/>
                      </amx:cellFormat>
                    </amx:rowLayout>
                  </amx:tableLayout>
                </amx:listItem>
              </amx:listView>

    Hi,
    #{row.bindings.Salary.inputValue) doesn't access a binding in ADF Mobile. Use #{row.Salary} instead.
    Frank

  • [Newbie] Which JDeveloper version for latest ADF Mobile?

    Hi.
    I was going to upgrade to JDeveloper 12c, but the download page says "Download JDeveloper 11.1.2.4 to leverage ADF Mobile".
    Does that mean that for the purpose of using ADF Mobile - which is indeed my intension - I should use 11.1.2.4 instead of the latest 12c? Or should I install 12c and will I still have full use of ADF Mobile?
    Thanks.
    Joseph

    Yes, this is correct. At the moment ADF Mobile development is done using 11.1.2.4.0 instead of 12c.
    With the next release of 12c (12.1.3)  we should see adf mobile in 12c version. However, as I'm not an Oracle employee, I can't guarantee this. We have to wait and see what we get.
    Doing your development in 11.1.2.4.0 is already using some features of 12c and an later upgrade to 12c should not be painful.
    Timo

  • Need Oracle JDeveloper extension for ADF Mobile

    Hi Expertises,
    I am doing internal task for demo purpose, so needed Oracle JDeveloper extension for ADF Mobile.
    Could you provide me,
    if i get this by tomorrow that would be a great help from you.
    Thanks
    Jyothi.Y

    Hi,
    the ADF Mobile framework extension is not available for public consumption at this point in time.
    Frank

  • No ADF Mobile Extension for JDeveloper 11.1.1.4.0?

    Hi,
    I have recently upgraded from jdev 11.1.1.3 to 11.1.1.4.0, and when checking for extension, can no longer find the one for ADF Mobile Client extension.
    But the tutorial at : http://www.oracle.com/webfolder/technetwork/tutorials/obe/jdev/obe11jdev/ps3/adf_mobile_top/adf_mobile/jdtut_11r2_54_1.html, says that its available.
    Can someone please clarify if its available for 11.1.1.4.0 and if so, how to get it?
    If not, how do I build mobile adf projects using this version? Or do I need to roll-back 11.1.1.3 if I want to build mobile client apps? And guess that would apply to mobile browser apps too?
    Regards,
    Hemant
    Edited by: HVT on Mar 2, 2011 2:55 AM

    Hi Joe,
    Thanks a bunch for that quick and comprehensive reply, and sorry for not replying earlier!
    The reason why I was delaying your response was since our team was having some discussions around the mobile platform with a few leading analyst firms, and we wanted to get their inputs too about what kind of future are they seeing for such apps.
    Having got their inputs now, we are happy to note that Android and iOS support is coming soon, looking forward to Windows 7 support too, and in agreement with your views about J2SE/Windows, Palm/WebOS and Symbian.
    However, we are seeing a lot of queries from our clients, especially from ASIA-PAC region where they are asking for either platform-agnostic support ("the app should work on any phone!") or specifically for J2ME / consumer-phone devices.
    Given that you have not thought about targeting those yet, can we look forward to engaging with you about the same?
    Do please let me know.
    PS: By the way, we did get the Mobile ADF Client extension last week for JDev 11.1.1.4.0, but when trying to create a deployment profile for the mobile client app for blackberry, the BB and WinMobile deployment profile options are coming disabled. Can you please help us as to how to enable those?
    We have installed the blackberry JDE and 9700 simulators both, and also provided their path in the Tools->Preferences in JDev.
    Regards,
    Hemant

Maybe you are looking for

  • IMovie 6 HD Expanded Text Options Plugin

    I would like to have more flexibility in the use of text in titles in iMovie 6 HD.  I'm looking for a plugin that will allow for more user control of text including multiple fonts, multiple sizes, etc in a single title.  Is there such a plugin availa

  • How can I attach multiple filled-form PDFs to the same outgoing email on iPhone/iPad?

    How can I attach multiple filled-form PDFs to the same outgoing email on iPhone/ iPad?

  • UTL_DBWS - Multiple calls to a web-service

    I am new to using UTL_DBWS and am wondering how to call a web-serivce multiple times with the same connection. I have this sample code and am wondering if there are any experts to tell me if this is right? DECLARE    l_city   VARCHAR2 (500);    PROCE

  • BADI/USER EXIT for MIRO.

    Hi All I have added a new field (GST) on MIRO screen using GUI XT. The requirement is such that I need to populate this field after I have entered the purchase order no (It needs to take the vendor from the PO and then its subsequent VAT no from the

  • New CRM implemetation with R/3 4.7 as the backend using vertex

    I am trying to figure out how my new CRM system and my existing R/3 system should be configured to user Vertex.  I spoke to Vertex and they indicated only one of these systems should communicate directly with Vertex.  If that is the case, the existin