JDeveloper extensions for 11.1.2.4.0 ?

Greetings,
i am using Jdeveloper v11.1.2.4.0 for a while now and i noticed Jdeveloper's extensions still are not updated for this latest updated version.
I am trying to install SOA & BPM extensions. Is there any beta version atleast or any news for when they are coming out? been almost 2 (if not more) months now
from this version release.. Btw Jdeveloper shows me the soa extension in jdeveloper's update center, but the version is not supported for this jdeveloper version. Please fix this
update/upgrade center.

Hi.
JDeveloper 11gR2 (11.1.2.x) is an ADF-only release. We do not provide the full middleware stack for that version, which explains why the extensions are not available and will never be.To use WebCenter, SOA Suite and other Fusion Middleware technologies, your only option is JDeveloper 11gR1 (11.1.1.x) for the time being.
By the way, JDeveloper 12c 12.1.2 is in the same case as 11gR2. Support for the full stack will come in a future release of the 12.1.x series. And before you ask: No, I cannot provide details about the time frame for that release (unfortunately).
Best Regards,
Frédéric Desbiens
ADF Product manager
http://blogs.oracle.com/blueberry
Twitter:@BlueberryCoder

Similar Messages

  • 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

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 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

  • 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

  • How to use mapviewer extension for jdevelop?

    I am working on the mapviewer. But my problem is that I can not connect mapviewer, or I can not start mapviewer using the embedded oc4j by jdeveloper. In mapviewer faq I read that:
    "How do I view the mapping metadata through JDeveloper's Connections Navigator?
    We have developed an Oracle JDeveloper extension that lets you browse the available list of styles, themes and basemaps defined in a datasource through JDeveloper's Connections Navigator. To do this, you will first need to download the mvconnection.jar file from OTN's MapViewer site. This jar contains the code that defines a MapViewer connection type for JDeveloper. To install, simply drop this jar file to the JDeveloper extension directory, normally $JDEV_HOME/jdev/lib/ext. Then restart JDeveloper, and you are all set.
    But when I restart jdeveloper, I got the message:
    "H:\Programme\jdev\jdev\lib\ext\mvpalette.jar!\META-INF\jdev-ext.xml
    Error: jar:file:/H:/Programme/jdev/jdev/lib/ext/mvpalette.jar!/META-INF/jdev-ext.xml<Line 105, Column 18>: XSD-2021: (Error) Element not completed: 'jsplibrary'
    H:\Programme\jdev\jdev\lib\ext\mvconnection.jar!\META-INF\jdev-ext.xml
    Error: jar:file:/H:/Programme/jdev/jdev/lib/ext/mvconnection.jar!/META-INF/jdev-ext.xml<Line 25, Column 20>: XSD-2034: (Error) Element 'description' not expected.
    Error: jar:file:/H:/Programme/jdev/jdev/lib/ext/mvconnection.jar!/META-INF/jdev-ext.xml<Line 26, Column 13>: XSD-2034: (Error) Element 'help' not expected.
    I use Jdeveloper 10g. Have you ever met the same problem?
    Thanks in advance

    The Map Viewer extension is still not available for JDeveloper 10g. It works with JDeveloper 9.
    The Mapping group is currently working on an upgrade.

  • JDeveloper 9i With OA Extension for CU5

    Hello Oracle people,
    ATG PF CU5 has been recently released.
    Please can you tell us the patch number for JDeveloper 9i With OA Extension for CU5 ? No way to find it.
    Thanks
    Juanje

    Yup, it is not available on the metalink. probably will take some more time for distribution. If it is urgent for you, You can reach Oracle Support for the availability date.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                               

  • SOA- BPM Extension for Jdeveloper 11.1.2.3.0

    Does Oracle provide SOA-BPM Extension for latest jdeveloper edition. I have searched but seems like they dont provide !!

    user10383617 wrote:
    Does Oracle provide SOA-BPM Extension for latest jdeveloper edition. I have searched but seems like they dont provide !!No, they don't... that's clearly stated on the jdev download page...
    Important Note - This version of JDeveloper doesn't include the SOA and WebCenter pieces - to use these components you'll need to download Oracle JDeveloper 11.1.1.6.0.
    http://www.oracle.com/technetwork/developer-tools/jdev/downloads/index.html
    Cheers,
    Vlad

  • Looking for Trim Trailing Space extension for JDeveloper 10

    I'm looking for the Trim Trailing Space extension version 10.1.3.2.0, for JDeveloper 10.1.3.5. I've tried the normal "Check for Updates", but the zip file that it tries to download doesn't exist. The version I'm looking for is listed on the download page here: http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/130355.xml, but the download link for it is broken. (I've also tried installing the latest version for JDeveloper 11, but it won't seem to install.)
    Does anyone know if older versions of the Trim Trailing Space extension are still available? If so, where can they be downloaded?
    Thanks,
    --Rob Roberts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Rob,
    I sent an email to Chris (the author of the extension) and he has now recreated the extension for the 10.1.3.5 version that you are looking for. He added it to his download page on the Google Code.
    Here is a link to the file:
    http://code.google.com/p/jdev-trimtrailingspaces/downloads/list?can=4&q=&colspec=Filename+Summary+Uploaded+Size+DownloadCount
    I'll work on getting the Update Center corrected as well, but this should get you going for now.
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Portals Extensions for JDeveloper 10.1.3

    Hi
    I am trying to install the portal extensions for Jdeveloper, I get the following error when I run Jdeveloper after the install command
    java -jar C:\portal-addin-install.jar C:\Jdeveloper
    The error is
    java.lang.NoClassDefFoundError: oracle/ide/addin/Addin
    Severe(2,369): No class def found for addin oracle.webdb.jdev.PortletDevelopmentAddin
    Can someone help??
    Thanks,
    Savithri ([email protected])

    The extension installer was for JDev 10.1.2 and 9.0.5. JDeveloper 10.1.3.2 comes with an up to date version of the portlet creation extension.

  • How can I get JDeveloper Extension sdk for 9.0.4 version

    HI~
    I want to download JDeveloper Extension sdk for 9.0.4 version.
    Of course, I found some link for downloading, but all of them I found were not connected or connected with 11g version.
    I also try to install the sdk in JDeveloper menu called "Check for updates" in help menu. But it was not operated in my pc(Windows 7 64bit).
    I really need to older version Extension sdk.
    How can I get the sdk?

    The only way I see is through support. Versions this old are not accessible via the web.
    Timo

  • JDeveloper version for Portal Extension

    Will the Portal Extension for
    JDeveloper work with JDeveloper
    version 9.0.4?

    Is it possible to configure the PDK to work with the current version of JDeveloper (10.1.3.0.4.3673)?
    I followed the instructions on the web site and get errors:
    Severe(2,369): No class def found for addin oracle.webdb.jdev.PortletDevelopmentAddin
    Warning(0,0): This extension was written for a previous version of {0} and may not run properly.
    Warning(0,0): To switch off these warnings, set the system property ide.extension.legacy.nowarn=true.
    Warning(0,0): To disable all incompatible extensions, set the system property ide.extension.legacy.disabled=true.
    Portlets shows up in the Web Tiers, but no objects in the items window.

  • Problem in enabling/disabling Custom JDeveloper Extension

    Hi,
    I've been trying to develop an extension for JDeveloper version 11.1.1.3/11.1.1.4 which i should be able to enable/disable from Tools->Preferences->Extensions section. However the problem i'm facing is that, after installing the newly developed extension, if i try to disable it by unchecking it from the Tools>Preferences->Extensions list, it does not show up in the extensions list after JDeveloper restarts. Therefore if i want to enable it again, i'm not able to do that because it is not available in the list.
    Trouble is that even if i reinstall it again (from Help->Check for updates) it does not appear in the list, and it does not work either because JDeveloper is treating the extension as disabled.
    I've kept my extension.xml simple for now:
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest" id="oracle.ide.sampleextension" version="11.1.1" esdk-version="1.0">
    <name>Sample Extension</name>
    <owner>Oracle</owner>
    <hooks>
    *<feature-hook>*
    *<description>Sample Extension</description>*
    *<optional>true</optional>*
    *</feature-hook>*
    </hooks>
    </extension>
    My bundle.xml is:
    <update-bundle version="1.0" xmlns="http://xmlns.oracle.com/jdeveloper/updatebundle" xmlns:u="http://xmlns.oracle.com/jdeveloper/update">
    <u:update id="oracle.ide.sampleextension">
    <u:name>Sample Extension</u:name>
    <u:version>11.1.1</u:version>
    <u:author>Oracle</u:author>
    <u:author-url>www.oracle.com</u:author-url>
    <u:description>Sample Extension</u:description>
    <u:requirements>
    <u:requires-extension id="oracle.jdeveloper"
    minVersion="11.1.1.3.37.56.60"
    maxVersion="11.1.1.4.99.99.99" />
    </u:requirements>
    </u:update>
    </update-bundle>
    I've done a lot of troubleshooting on this issue but in vain. I could not find any help on google either. Can anyone please help me on this?
    Thanks in advance,
    Suhail.
    Edited by: 865337 on Jun 13, 2011 2:34 PM

    Hi Suhail,
    Can you zip up your project folder and send it to me in email? I'll look it over and try to find the issue.
    email is: john<DOT>brock<AT>oracle<DOT>com
    I'm not quite sure what is is going on, but I suspect that the extension.xml file is to simple. Not even sure what I mean by that just yet. I want to take a look at see what is in the extension.xml file compared to some of the more basic extensions that I have created for demos and blogs, etc.
    Go ahead and send me the source and I'll take a look.
    Is there a reason that you are staying on 11.1.1.3 by the way? We are up to 11.1.1.5 right now in the 11gR1 release. I'm not aware of a bug like this, but it could be something in the older version.
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Extending the UML class diagrams with JDeveloper Extensions SDK?

    Hello,
    I studied the JDeveloper Extension SDK docs, but couldn't figure out how to write extensions that support UML Diagrams.
    What I would like to do, is to pin a different data model under the class diagram view.
    Well if you can't do that. In the worst case, my extension would register with a regular class diagram and listen to its events and and refuse particular changes. It would also create or use an empty class diagram and fill in the classes and associations in it. (this is less clean but I could live with it).
    Thanks in advance for all your suggestions.
    Slawek

    By definition you can change classes through the model so I guess the problem here is that the model cannot apply updates to something that it is pointing to the the compiled version of.

  • Writing extension for SQL Developer

    Hello all,
    I'm new to writing extensions for SQL Developer using JDeveloper. Can you help me with some example with common functionality, like how to get the current connection? Is there some documentation for the oracle.sqldeveloper package? The example may include some techniques like how to get the schema name for a chosen table, get some other info for the table and so on.
    Thank you in advance!

    Hello all,
    I'm new to writing extensions for SQL Developer using JDeveloper. Can you help me with some example with common functionality, like how to get the current connection? Is there some documentation for the oracle.sqldeveloper package? The example may include some techniques like how to get the schema name for a chosen table, get some other info for the table and so on.
    Thank you in advance!

Maybe you are looking for