Develop a plugin for Jdeveloper

Hi everybody, anyone knows if there is a way to develop a plugin for jdeveloper?
Thanks.

Sure there is.
There is an Extension API that you can use.
Go to "check for updates" and download the ESDK extension - you'll get documentation and a bunch of samples.
More information is here:
http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/index.html

Similar Messages

  • Portal extension plugin for JDeveloper release 10.1.3

    Metalink Note:356550.1 says 'The expected time of arrival is second quarter 2006' [for portal extension plugin for JDeveloper release 10.1.3].
    When will this be available for customer use? We notice it can already be downloaded from an internal Oracle website.
    Thanks,
    Jon

    Hi,
    expectation is this month or early next year. The version of JDeveloper is 10.1.3.2. Maybe if you ask this question on the portal forum they have a more precise date
    Frank

  • Coherence plugin for JDeveloper

    It would be nice if there was a Coherence plugin for JDeveloper for inspecting/manipulating/drilling down in caches, objects, etc.
    Andrew

    Hi,
    Are you volunteering to write one? ;)
    You may have already seen this ...
    [http://www.oracle.com/technology/pub/articles/vohra-coherence.html]
    It might not be the plugin that you are looking for, but might give somebody a leg up if they want to use Coherence and JDeveloper.
    Thanks

  • VSS Plugin for JDeveloper

    Guys,
    Has anyone ever come across a VSS plugin for JDeveloper?

    Sorry, you are asking in the wrong place.
    Try NetBeans official site http://www.netbeans.org/
    Probably they have the plugin listed there or some kind of support forum.

  • How to develop a plugin for 64-bit windows 2008 server?

    I have developed a plugin to open local application from web pages, but the plugin could only run on 32-bit windows and 32-bit and 64-bit windows 7, it couldn't work on 64-bit windows 2008 server. The plugin was compiled by vs2008 studio on 32-bit windows xp. Any instructions or advices, men of genius? Thanks

    Hi Gnittala,
    Thanks for your reply.
    I debug the javascript code in firebug on windows 8 and found that firefox would be not responding while executing "document.body.append(myPlugin)".
    My javascript code is below:
    function openLocalApp(cmdPath, cmdLine) {
    var npMyPlugin = navigator.mimeTypes["application/mozilla-npruntime-scriptable-plugin"];
    if (npMyPlugin) {
    var myPlugin = document.createElement("embed");
    myPlugin.style.visibility = "hidden";
    myPlugin.type = "application/mozilla-npruntime-scriptable-plugin";
    myPlugin.width = 0;
    myPlugin.height = 0;
    document.body.appendChild(myPlugin);
    myPlugin.foo(cmdPath, cmdLine);
    } else {
    alert("Failed to create the plugin!");
    And firefox plugin's source code copys from the following link:
    http://mxr.mozilla.org/seamonkey/source/modules/plugin/samples/npruntime/
    Just changed a little.
    I know the sample is very old, but newer proper sample couldn't be found. So if you can give me a newer sample, I'll appreciate.
    Thanks again.

  • Developing a plugin for Adobe Reader 9.0

    Hi All,
    I want to develop a plugin in Adobe Reader 9.0. I have setup Visual Studio 2005 and the plugin wizard.
    I am using the samples from acrobat SDK 9.0, I am able to build the samples and *.api is created. I have put that file in the plugins directory but I am not able to use the plugins in adobe reader as well not getting any error.
    Do I have to get key from adobe for plugin testing on my local PC?
    Regards,
    Sawan

    You can refer this: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/common/html/w whelp.htm?context=Acrobat9_HTMLHelp&file=Plugins_ReaderPlug.52.5.html

  • BPEL Plugin for JDeveloper?

    Hello all.
    I have installed the Oracle BPEL PM version for middle tier. There is no JDeveloper with BPEL designer in it, like it shóuld be in BPEL PM version for developers, or?
    So I downloaded the Jdeveloper but it is not possible to create a BPEL process!
    Is there anywhere a plugin for the JDeveloper to use BPEL or did I missunderstand something?
    What should I have to do?
    It would be nice if someone could help me.
    Thx a lot
    PS.:
    I know that there are some posts in the forum, which handle the same theme. Sorry for that, but I dont become artful of that.
    Message was edited by:
    BenSp

    when it's production, you will be able to retrieve the update through jdev's inbuild update function - help/updates .. this way we can deliver patches fast and very convenient..
    thx clemens

  • Developing SCM Plugin for JDev9i... Deadlock

    Hi!
    I'm currentlly developing a SCM plugin for JDev9i with the option to use MS Visual Source Safe. I've experienced problems with hanging for a while. I'm using the oracle.ide.scm packages bundled with JDev, and I think I've found where the hangup is caused.
    There's a class called oracle.ide.scm.util.SCMProcess which is a process wrapper around another class called oracle.ide.scm.util.SCMShellRunner. The process will recieve output text from standard out and standard error. These outputs must be caught and displayed as they are given to the system. If they are not displayed, JDev will go into deadlock it seams.
    These classes have their equals respectivelly in java.lang.Process and java.lang.Runtime. I've used these classes to run a command from disk and they work if you properlly handle the output. The problem with this way of doing things is that these classes does not report back to the scm systems and can cause unexpected results from the other interfaces and classes in the oracle.ide.scm...
    Does anybody have any experience in coding plugins of this kind? Have you experienced the same problem and have you found a way around it?
    This does not work as it should:
    SCMShellRunner rt = SCMShellRunner.getInstance();
    SCMProcess p = rt.run(cmd, envArr);
    while(!p.isFinished()) {
    System.err.println(p.getErrorText());
    System.out.println(p.getOutputText());

    Hi.
    The SCMShellRunner and SCMProcess classes are utilities which you
    may find useful in implementing your SCM support; you can still
    use java.lang.Runtime and java.lang.Process if you prefer.
    However, we strongly recommend that you use SCMShellRunner because:
    - On windows systems, the external process is launched in the
    context of a shell.
    - The output and error streams of the external process are
    monitored separate threads to prevent blocking issues because of
    buffer overruns.
    - A native workaround is used to prevent console windows popping
    up every time external processes are launched under Windows.
    Not sure what could be causing the deadlock, but I did notice in
    your code snippet that you are attempting to print output from the
    process before it is finished.
    The 'error text' and 'output text' will become available only
    when the process has successfully terminated, so I guess you're
    seeing an awful lot of "null" in your debug window.
    Also, I would suggest using SCMProcess.waitFor() to block until
    the process has completed; it will not be so greedy with CPU.
    Try something like the following:
    SCMShellRunner rt = SCMShellRunner.getInstance();
    SCMProcess p = rt.run(cmd, envArr);
    p.waitFor();
    if (p.getExitCode().intValue() != 0)
    // throw SCM exception.
    System.err.println(p.getErrorText()); // should be non-null
    System.out.println(p.getOutputText()); // should be non-null
    Thanks,
    Paul. JDev SCM

  • Developing a plugin for 64 bit CS4

    Hi,
    I am trying to develop plugin for 64 bit version of Adobe Illustrator CS4. Is ther any separate SDK for 64 bit. ??
    If not , will existing SDK work for 64 bit as well ??
    If i already have a plugin code ready for 32 version, what things i will be required to do to migrate my code to 64 bit .
    Thanks in advance.

    Adobe Illustrator CS5 is a 32-bit application. These processors are listed in the requirements since it can be run on a 64-bit machine. i.e. you will be running 32-bit application on a 64-bit OS.

  • Perforce plugin for Jdeveloper 10G

    Hi,
    On August 2004, Oracle have promised to release such a plugin soon.
    Do you know when it will be released?
    We are still forced to use Jdeveloper 9i due to this fact.
    Thanks,
    Shay

    Robert.
    "We are planning" I don't think this is the kind of answer I would expect from Oracle after I have been told that perforce would be supported in jdeveloper 9.0.5.
    Due to this "planning" stuff we are still forced to use jdeveloper 9.0.3!
    It's been a long time since we planned to upgrade our suite of product IAS, jdeveloper and db, But we would like to upgrade them together to the same working version (not a beta or a preview) and the only missing part is the perforce plugin.
    for your consideration
    Shay

  • Is Panasonic developing a plugin for FCP X that allows you to import Panasonic HDC-TM700 1080/60p footage straight into it without transcoding?

    I've been hearing from a few people on these Support Communities that Panasonic is apparently said to be have been developing some kind of plugin that will let FCP X users import 1080/60p footage from the TM700 straight into the editor, without need for use of third-party software such as Popcorn to transcode the footage into .MOV files. They were also apparently going to release this plugin this summer. Anyone know of some kind of link to some more information about it, or some confirmation that it actually is happening? I really would like to know, as I'm big into the 60p setting on the TM700, and my current workflow has me waiting about 3 or 4 hours each time I go to import any footage. Please let me know!

    Hey guys!
    I just downloaded Clipwrap to import my 60p footage into FCPX. I downloaded the demo and realize it will only convert up to a 1min file.
    When I re-wrap and nativate to my re-wrapped file, I can see (and hear) that it preserves my 5.1. When I play it back, the audio stops about half way (odd). When I import it into FCPX, there is no audio at all. Will FCPX not edit AC-3?
    If I keep the LPCM boxed checked on Clipwrap, I get a mono audio file.
    Can someone step out a workflow for me that gets me re-wrapping in Clipwrap, retaining 5.1 and editing in FCPX?
    Thanks for any help!

  • PMD plugin for JDeveloper 10.1.3

    Hi all -
    Now there's a PMD plugin that works with JDev 10.1.3:
    http://sourceforge.net/project/showfiles.php?group_id=56262&package_id=75287
    Migrating it from 10.1.2 to 10.1.3 was easier than I thought; most of the changes are in the XML format and the README file helps a lot.
    Share and Enjoy!
    tom
    P.S. Reserve a copy today! http://pmdapplied.com/

    Thanks to Shay Shmeltzer this plugin is now posted in the "Open Source and Partners Extensions" update center. So no need to add a new update center, just use the one that's in there already. Good times...
    Tom
    http://pmdapplied.com/

  • Can I do this with a plugin for Reader?

    Hello, I'm totally new to Adobe Reader development and I'm in the need to develop a plugin for Reader that must implement certain functionality. Before starting, I think it's better to ask to the experts if what I want to do is possible or if what I need goes beyond what the Adobe API provides. So, if you're so kind, I'd like you to check the list of needed features and please tell me if they can be fulfilled with a Reader Plugin.
    The plugin must work for Adobe Reader 7,8,9 and 10. It's not a problem if I need to develop a plugin for each version.
    When the user tries to print a document, I will block/cancel the printing process depending on which document is tried to be printed (the full path to the document will be needed).
    I need traceability in "Save as" and "Save as text" features, if the user saves a copy of "c:\file.pdf" into "c:\file - copy.pdf" I need to know both the source and the destiny of the save as operation. Same for any kind of "export to format x" operations if possible.
    I need to be able to communicate with another module via named pipe to periodically send information. This might require dinamically loading a DLL and calling its methods.
    [Optional] I need to restrict the use of the clipboard depending on the documents opened in Reader, i.e. don't allow to copy if a certain document is opened.
    [Optional] If a document is exported via file printer (like Microsoft xps printer), I need traceability on this operation. I'm really pesimistic about this one.
    Also, I'm assuming that retrieving the list of opened documents, or the "active" document will be possible at any time. Please, correct me if wrong.
    Thank you very much for your time, for reading and helping. Im' not asking you to tell me how to implement every single feature, I just need to know if I will be able to implement them when I get some knowledge.
    Have a great day. Greets.
    Message was edited by: fernandoarrabal reason: bad phrasing

    Two things.
    First – Adobe no longer supports Reader 7 or 8, so you would be on your own for those.
    Second, in order to develop a plugin for Reader you need to obtain a license from Adobe.  Details and forms are in the Acrobat SDK.   Start this process ASAP as that will tell you whether you will be able to do your plugin or not.

  • Developing CS5 plugin on CS6

    I need to develop a plugin for Photoshop CS5 for a Mac. Can this be done on Photoshop CS6 on a Mac?
    This is called Forward Compatibility, and I couldn't find information about this in the SDK documentation.
    Thank you in advance.

    I think those plugins build with the CS6 sdk should run under CS5 without much problems.

  • Developing a plugin using XCode 4

    Hi Everyone,
    I was recently inspired to develop a plugin for Illustrator CS6 on my Mac. I've run into a few problems though, because apparently I'm trying to build the plugin in an unsupported environment. I'm using OS X 10.8 (Mountain Lion) and XCode 4.4. Now, I realize that Mountain Lion isn't public yet (I'm an Apple developer so I have access to the prerelease stuff), but regardless, I think that the problem is that I don't have the correct SDK for the development. XCode 4.4 only has 10.7 and 10.8 SDKs with it, and I looked for a XCode 3.2.5 download, but it stopped being supported on Lion. If I have to, I can fetch a copy of 10.5 or 10.6 and develop using it, but I would really like to just use my main machine to do the development. Does anyone have any thoughts on this?
    Thanks

    Think you can copy SDKs to Developer directory and set default compiller to gcc 4.0 in project settings, for all AI SDK samples.

Maybe you are looking for

  • How do I fix a photo in photoshop that I had to re size and now it is distorted?

    I had to re size a photo in photoshop cc for the lab.  It now is distorted and I don't know how to fix the problem.

  • Strange behavior printing  image

    I'm printing an jpg of a piece of sculpture, and if I look at the image in Photoshop all of the highlights are completely blown out. However, when I place the image into InDesign, the highlights have detail, and the image becomes much too dark overal

  • I want to pair an IPad with phonack ComPilot?

    I want to pair a phonack ComPilot with an IPad. The procedure starts out but adds that the is not paired, it's what I am trying To do

  • Basic  Oracle question

    What should be the best approach for updating a table remotely? Say we have one database in JAPAN and one in US. we need to update one table column in JAPAN database from here. What we have done: We have created a synonym of that table here (using da

  • Time Capsule reboots about every 20-30 minutes

    Hey all, I have a Time Capsule (about 6 months old) with a cable modem plugged into it.  My wifi is being extended by a brand new Airport extreme.  I have 4 computers connecting via wifi to it.  About every 20-30 minutes the wifi signal drops from th