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

Similar Messages

  • How to create JDeveloper Extension for new Projects ??

    I want to create a JDeveloper Extension for creating new project with following: (11gR2)
    1. Maven Support
    2. pre-defined dependencies in pom.xml
    3. pre-defined project feature (e.g. ADF Business Components)
    4. pre-defined Custom Base classes for ADF Business Componets
    Are there any documents / samples that i can reference ?!

    Some of these can be added declaratively using the template_hook in the extension.xml file and defining an application and project template. Others will need to be added directly.
    1. Add Maven Support
    This can be added declaratively, as technology in the project template hook.
    2. pre-defined dependencies in pom.xml
    This is going to need to be added to your project after it's created.
    3. pre-defined project feature (e.g. ADF Business Components)
    Same as Maven support.
    4. pre-defined Custom Base classes for ADF Business Componets
    You should be able to use the library hook for this, but I'm not quite clear on what this means.
    Here is an example template-hook that describes the creation of a Maven Application and the Maven Project that will be included with it. The <template-hook> element is placed inside the <triggers> section of the extension.xml file in 11gR2 (this won't work in 11gR1). This template-hook is what makes the Maven Application item show up in the New Gallery. Take a look at how that New Maven Application process works, and then look over this example. The <technologyKey> setting what adds the features to your application/project. In the example below, the Maven feature is being added to the project. The technologyKey for ADF Business Components is "ADFbc"
    The commented out lines below are either just comments, or they are optional elements for the project and application template hooks. It's pretty obvious which is which.
         <template-hook>
            <!--Maven Project template-->
            <projectTemplate>
              <templateId>mavenProjectTemplate</templateId>
              <name>Maven Project Template</name>
              <description>${MAVEN_PROJECT_TEMPLATE_DESCRIPTION}</description>
              <!-- <toolTip /> -->
              <!-- <weight /> -->
              <!-- <icon /> -->
              <!-- <galleryFolder /> -->
              <!-- <unsorted /> -->
              <projectName>mavenProj</projectName>
              <!-- <deploymentProfile>a.b.c.D</deploymentProfile> -->
              <technologyScope>
                <technologyKey>Maven</technologyKey>
              </technologyScope>
            </projectTemplate>
            <!-- Maven Application template -->
            <applicationTemplate>
              <templateId>#mavenApplicationTemplate</templateId>
              <!-- <templateClass /> -->
              <name>Maven Application</name>
              <description>${MAVEN_APPLICATION_TEMPLATE_DESCRIPTION}</description>
              <!-- <toolTip /> -->
              <weight>1.0</weight>
              <icon>/oracle/javatools/icons/application.png</icon>
              <!-- <galleryFolder /> -->
              <unsorted>false</unsorted>
              <applicationName>MavenApp</applicationName>
              <!-- <deploymentProfile>a.b.c.D</deploymentProfile> -->
              <projectTemplates>
                <projectTemplate>
                  <templateId>mavenProjectTemplate</templateId>
                  <!-- <name /> -->
                  <!-- <description /> -->
                  <!-- <projectName /> -->
                  <!-- <promptForProjectName /> -->
                  <!-- <deploymentProfile /> -->
                  <technologyScope>
                    <technologyKey>Maven</technologyKey>
                  </technologyScope>
                </projectTemplate>
              </projectTemplates>
            </applicationTemplate>
          </template-hook>For including predefined pom.xml settings, you can either edit the generated pom.xml file after the project is created, or you can add a predefined pom.xml file to the project. You can see more about working with files in a project on the [url https://blogs.oracle.com/jdevextensions/tags/files] JDev Extensions Blog
    Not quite sure what you are looking to do with the last item. If it's libraries that you're looking to add, you can take a look into the <libraries> hook.
    Staying with the Maven example... Here is a partial <libraries> element
          <libraries xmlns="http://xmlns.oracle.com/jdeveloper/1013/jdev-libraries">
            <library name="Apache Maven 3.0.3">
              <classpath>../../apache-maven-3.0.3/lib/maven-aether-provider-3.0.3.jar</classpath>
               <classpath>../../apache-maven-3.0.3/lib/maven-artifact-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-compat-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-core-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-embedder-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-model-3.0.3.jar</classpath>
            </library>
          </libraries>Hope all of this helps, Please feel free to contact me directly via email if that would help you out. john<dot>brock<AT>oracle.com
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • JDeveloper Extension for SINGLE CLICK deployment of OIM customizations

    I am not sure most of OIM Developers, System Integrators and Architects aware of this Oracle Asset, hence sharing information.
    In most of the questions posted on forum related to event handler usages Plugin Registration utility and weblogic scripts to import / export meta data files into MDS. There is easy way to deploy OIM 11g even handler plugins , Scheduled Tasks, Request Datasets and Notification Events using OIM Customization Installer JDeveloper Extension.
    Oracle has published Oracle Identity Manager 11g Sample Assets some time back. You can use OIM Customization Installer JDeveloper Extension for SINGLE CLICK deployment of OIM customizations like Event Handlers, Plugins, Scheduled Tasks, Request Datasets and Notification Events.
    You can access and download Oracle Asset using below link,
    http://www.oracle.com/technetwork/middleware/id-mgmt/overview/oim-11g-assets-504842.html
    Thanks,
    Pradeep.

    Pradeep,
    Thanks for sharing this. I have gone through this asset sometime back. This is quite helpful w.r.t deployment but does not have any other added advantage. For example, it does not create the xml's automatically or does not validate them etc. If I remember it right, this plugin was supported till 11.1.1.3 only.
    Appreciate you sharing this as it would surely help folks here.
    -Bikash

  • Need oracle practice question for OCA

    Need oracle practice question for OCA.
    Edited by: 823938 on Dec 27, 2010 10:21 PM

    It's illegal to use dumps.
    Read the following link:
    http://www.certguard.com/braindumps.asp

  • Do we need Oracle OLAP Engine for OBIEE

    Hi experts
    Do we need Oracle Olap Engine for OBIEE..
    Thanks in advance
    Reagrds
    Frnds

    Short answer: No.
    Long answer: No.

  • Oracle Beehive Extensions for Outlook (OBEO) Download

    Where can I download the Oracle Beehive Extensions for Outlook (OBEO) . Please send me the link.

    OBEO is part of the server download. Normally, it is deployed to the clients only from an installed Beehive server, and updated automatically, too. There are instructions to do a manual install in "lock down environments", see here.
    HTH, Thomas

  • GPS integration for ADF Mobile

    Hey,
    How does Google map api can be implemented for My Location in Oracle JDeveloper ADF for Mobile Browser. Please give suggestions.
    Thanks
    Sheena

    Hi,
    You would set up a WebLogic Server with user roles, and then expose a REST JSON API that would expose these user roles. The format for the JSON REST message is documented here:
    http://docs.oracle.com/cd/E35521_01/doc.111230/e24475/security.htm#autoId9
    Unfortunately the documentation is not clear on how to configure the Access Control Server - we will fix that.
    Please ping me directly and I will try to get more details on Access Control Server setup as needed.
    Thanks,
    Joe Huang

  • Looking for JDeveloper extension for RTD External Rule Editor

    In Section "17.2.4.1 Construct" in the document http://docs.oracle.com/cd/E28389_01/bi.1111/e16630/external_objects.htm it is mentioned :
    4. In the Project Technologies tab, move RTD ADF to the Selected column, then click Next
    This technology is available on installing the extension for RTD External Rule Editor. (Refer Section 17.2.2.1 External Rule Editor and External Rule Editor Client)
    But I can't find this extension anywhere - not even the exact name of the extension.
    If anybody has installed this or has this extension, would you please share.
    I'm using JDev Build JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013
    Thanks
    Arijit
    Edited by: Arijit Basu on Feb 19, 2013 1:09 AM

    Hi,
    unfortunately you posted this t the wrong forum as this is not a product owned by JDeveloper or ADF
    Frank

  • Apple App Store requirement for ADF Mobile Apps

    I got updates from Apple that detect deployed ADF Mobile ipa that sent to Apple iTunes Connect As
    Missing recommended icon file - The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format.
    Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format.
    Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format.
    Non-PIE Binary - The executable 'qe.app' is not a Position Independent Executable. Please ensure that your build settings are configured to create PIE executables. For more information, refer to Technical Q&A QA1788 - Building a Position Independent Executable
    How to solved it, as it might facing with rejection from Apple and really urgent issue.

    Hi,
    has this been rejected by Apple or is it just a warning flagged? What is the version of ADF Mobile. Did you download and install the recent ADF mobile version. Try Help --> About --> Extensions and look for the "ADF Mobile Framework" version. Ensure its
    ADF Mobile Framework    oracle.adf.mobile    11.1.2.4.39.64.51
    If the version is below, then use Help--> Check for update to install the latest version.
    Frank

  • Webcenter Portal Support for ADF Mobile Browser

    Hi All,
    I am currently working on an ADF Mobile Browser Application for WebCenter Portal.
    The main issue I face is that WebCenter has some really powerful taskflows and connectors. Is it possible for us to make use of these taskflows in ADF mobile browser? It seems that when used within the trinidad framework, the taskflows are broken.
    I understand from documentation that "Except for page fragments, pop-up in dialogs, and region support, you can use the ADF task flow to develop ADF Mobile browser applications. ADF Mobile browser application that use the ADF task flow only support the trinidad-simple skin family"
    Does this mean that taskflows that use the page fragments, pop up dialogs dont work or that you cant use them within jsff and pop ups?
    Sincerely appreciate any help! thanks

    Hi,
    You can reuse taskflows but you need to modify jsff pages with trinidad components.
    Thanks,
    Minal

  • Need Oracle jdeveloper old version 9.0.3

    I ' m learning Oracle Jdeveloper and I'm begining with earlier versions .
    plase I need help.
    thanks a lot
    kboka,
    Abidjan, Ivory Coast, West Africa

    First, let me say that I don't see why you would ever want to download JDev 9.0.3 when you can download JDev 10.1.3.3, which is MUCH MUCH MUCH MUCH better.
    OK, now for the useful info :-) If you have access to Metalink, I suggest you open an SR. 9.0.3 was de-supported in 2005, which is why there are no links available. If you are trying to download 9.0.3 because you are using OAF, there is a special version available for download as a patch from Metalink (the latest version is in patch 6012619).
    Ara

  • Oracle JHeadstart 10g for ADF - Evaluation Copy Available

    All,
    The evaluation copy of the new JHeadstart release 10.1.2 for ADF is now available. With the evaluation copy you are allowed to build a prototype only. You can dowload this evaluation copy on the JHeadstart Product Center.
    http://www.oracle.com/technology/consulting/9iservices/files/jdg_rference1012.html
    If you are building applications that you plan to take in production you will have to acquire the right license. Please ask your Oracle Consulting representative for more details or send an e-mail to [email protected]
    Regards,
    Ton van Kooten
    Oracle JHeadstart Team

    Boris,
    we are in the process of externalizing the 10.1.2 release. Next week we expect to be able to announce it. Please be patient and check in the coming days.
    Regards,
    Ton
    JHeadstart Team

  • OracleAS Portal Extension for Macromedia Dreamweaver

    Were you ever wondering, how you can integrate Portal pages seamlessly into your Web site ? You can now using our extension for Macromedia Dreamweaver. Simply create or edit OracleAS Portal UI Templates directly from within Dreamweaver. These UI Templates can be used as "skins" for your Portal page. The extension also provides support for the UI Template substitution tags from Dreamweaver's Insert Panel.
    For more information, go to http://portalcenter.oracle.com and click on Integration Solutions.

    Hi,
    I am testing the integration and encountering some problems :
    my portalTemplate.ear was deployed to a standalone OC4J instance (904).
    The portalTemplate.xml contains valid information ( tested with sqlplus ).
    The Dreamweaver extension was correctly installed.
    When I try to login to Portal, i get a "There was an error connecting to Portal. Please check the db connection in portalTemplate.xml" .
    I thought about many potential causes like starting my OC4J instance with -Dhttp.proxyHost and -Dhttp.proxyPort or to provide LDAP users credentials instead of db credentials when login in ... what's wrong ?
    PS : When navigating to http://localhost:8888/portalTemplate/portalTemplate?operation=getName I cannot invoke the operation successfully; I get the same error "Error in making the database connection".

  • Need Oracle Database 10g For Mac OS 10.4 PowerPC

    Hi, I am looking for Oracle Database 10g for Mac OS 10.4 PowerPC. I need to run this software on a PowerBook G4. I would appreciate any download links or tips that can help.

    I am using Virtual PC 7 running Windows 2000, but the emulator runs painfully slow. Things would run a lot smoothly if I had the PowerPC version of Oracle Database. I heard it exist.

  • ADF Authorization for ADF Mobile:Configuring Access Control URL for ADF App

    Can someone explain, how to expose weblogic user roles as a Rest Json Api? Basically I want to set up Access Control URL to authorize users on adf mobile.

    Hi Frank,
    This is what I did. Could you please let me know if I am doing it right.
    1. Created an adf application with a simple page and applied security basic http authentication.
    2. Added a rest service implementation in the same application, changed the adf application web.xml as below
    <servlet-mapping> 
       <servlet-name>jersey</servlet-name> 
       <url-pattern>/jersey/*</url-pattern> 
      </servlet-mapping>
    3. When I test the rest service in browser, it asks to log in and returns the user roles. Below is my rest implementation
    @POST
    @Produces(MediaType.APPLICATION_JSON)
    public User getMessag3() throws Exception {
    return new User();}
    the rest service returns the logged in user roles in below json format.
    {"userid":"susant","roles":["SSBAccessGroup","authenticated-role","SSBAccessApp","anonymous-role"],"priviledges":[]}
    Do I need to implement anything on the ADF mobile side or I can just add the rest service url to the authorization tab. Will adf mobile automatically handle sending the http request.
    Actually I just added the rest service url to adfm-applications connections authorization tab and I am getting ACS failed error after log in.
    Thanks

Maybe you are looking for