JBuilder PlugIn Bug

In the jbuilder plugin, on the properties tab for .jdo files the field for
'table' appears twice, but there is no field for 'class column'
- Jeff

9iAS 1.0.2.2 did not have complete EJB 2.0 support. The version of 9iAS that is EJB 2.0 compliant is 9.0.3. You should download the plug-in for 9.0.3, this will also give you access to the JBuilder EJB 2.0 Designer. This plug-in is available for JBuilder versions 7 & 8. You can download the plug-in from:
http://otn.oracle.com/products/ias/9ias_partners.html
Aalok

Similar Messages

  • Firefox Flash Plugin bug?

    Hi everyone,
    I have multiple Flex Applications (wrapped as portlets in
    Liferay) working on the same page at the same time in separate
    flash players, of course.
    When I access the page by Mosilla Firefox browser, all page
    portlets get reloaded after the last one is initialized.
    And the worst - each of them gets initialized again - it
    means that all data gets loaded again. This is proved by log
    records: in case of Firefox each portlet loads data twice, in case
    of using IE - once.
    Have you ever faced the same problem? Is it a Firefox Flash
    plugin bug or what?
    Thanks in advance.

    Updates:
    I've opened a bug with Adobe regarding this issue:
    http://bugs.adobe.com/jira/browse/FP-4362
    Also, the Cancel operation on a FileReference causes the same issue to happen as does loading.  I really think it's an operating system focus issue.
    UPDATE:
    Looks like this has already been tracked and is scheduled to be fixed:
    https://bugs.adobe.com/jira/browse/FP-2785

  • How to deploy ejb in an Enterprise Environment using the jbuilder plugin

    Hello:
    I use Oracle9iAS Plug-in Release 2 (9.0.2) for Borland JBuilder 7 to deploy my ejb. But now, i would like to deploy my ejb to oc4j in an Enterprise Environment (not as standalone).
    Does anybody know how can i do it? I noted that the plugin use admin.jar to deploy ejb, and I suppose it need to use dcmctl.
    Thank you
    Sergio

    Sergio,
    The current release of Borland JBuilder only allows you to deploy to standalone OC4J. If you want to deploy to Oracle9iAS (Enterprise OC4J), please try Oracle9i JDeveloper 9.0.3:
    http://otn.oracle.com/software/products/jdev/content.html
    JDeveloper 9.0.3 uses DCM to deploy to Oracle9iAS
    Regards,
    Chen.

  • Major Plugin Bug Passing Boolean Parameters via JavaScript

    Calling an applet method that sets a boolean property fails under IE with the 1.3.1 Plugin. Method signature in a public object contained by the applet is:
    public void setShowTitle(boolean newVal)
    Attempting the following javascript in an HTML page fails with a "Type Mismatch" error:
    document.MyChart.getChartObject().setShowLegend(true);
    Interestingly, a method with a similar signature, which is in the top level object works fine:
    document.MyChart.updateChart(true);
    Definitely a bug in the plugin!
    - Rick Bullotta
    CTO
    Lighthammer Software

    Hi,
    IE can only access attributes and methods from a class derived from java.applet.Applet. Therefor, Javascript cannot call methods from the object which is returned from your call to document.MyChart.getChartObject().
    You should create a method (public void showLegend(boolean)) in your applet which can directly be accessed from Javascript, and let this method call the non-Applet derived methods (getChartObject().setShowLegend(boolean)).
    Regards,
    Kurt.

  • RC1 Jbuilder Plugin

    When configuring the connction properties for the plugin I can't enter a
    "custom" db dictionary. Only the items in the list can be
    entered/selected.
    I tried entering
    kodo3;kodo.jdbc.DBDictionary=com.marc.kodo3.dict.TeradataDictionary in
    jbuilders's user.properties file (and restarted) but the setting does not
    appear to take. The message in the console still inicates that the
    generic dictionary is being used.
    -marc

    I think I have this one figured out. Here are the steps to reproduce...
    1. Close all projects in jbuilder
    2. Go into the Kodo control panel and make sure that nothing is selected
    for the db dictionary class.
    3. Shutdown and Restart JBuilder.
    4. If you go into the control panel you won't be able to type anything in
    db dictionary class edit box. --- This is the problem I was seeing.
    If at this point you open a project and go back into the control panel you
    will be able to enter a db dictionary class.
    Seems like this is a pretty minor problem since there is an easy workaround
    -marc
    Stephen Kim wrote:
    I know this is not ideal, but for debugging purposes, if you add your
    DBDictionary class to kodo-jdo.jar in the appropriate place (i.e. right
    path), does the problem go away?
    Marc Sheftel wrote:
    When configuring the connction properties for the plugin I can't enter a
    "custom" db dictionary. Only the items in the list can be
    entered/selected.
    I tried entering
    kodo3;kodo.jdbc.DBDictionary=com.marc.kodo3.dict.TeradataDictionary in
    jbuilders's user.properties file (and restarted) but the setting does not
    appear to take. The message in the console still inicates that the
    generic dictionary is being used.
    -marc
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • WL Apache plugin Bug: HttpServletResponce unable to send more the 1 cookie.

    When using apache plugin with weblogic51 on solaris we run into problem when
              trying to send several cookies; only first cookie makes it through Apache
              plugin to the browser.
              public void doGet(HttpServletRequest req, HttpServletResponse res) {
              Cookie z = new Cookie("name3", "value3");
              z.setMaxAge(0xFFFFF);
              res.addCookie(z);
              Cookie z1 = new Cookie("name1", "value2");
              z1.setMaxAge(0xFFFFF);
              res.addCookie(z1);
              PrintWriter outputStream = res.getWriter();
              outputStream.println("<HTML><BODY></BODY></HTML>");
              outputStream.close();
              catch(Exception e) {e.printStackTrace(System.out);}
              Thanks,
              Alex
              

    This appears to be a bug. I suggest sending it as a bug report to our
              support organization.
              (... and the same for your other two posts as well! :-)
              Thanks,
              Michael
              Michael Girdley
              Product Manager, WebLogic Server & Express
              BEA Systems Inc
              Alex Rojkov <[email protected]> wrote in message
              news:8ff9ls$qgu$[email protected]..
              > When using apache plugin with weblogic51 on solaris we run into problem
              when
              > trying to send several cookies; only first cookie makes it through Apache
              > plugin to the browser.
              >
              > public void doGet(HttpServletRequest req, HttpServletResponse res) {
              >
              >
              > Cookie z = new Cookie("name3", "value3");
              > z.setMaxAge(0xFFFFF);
              > res.addCookie(z);
              >
              > Cookie z1 = new Cookie("name1", "value2");
              > z1.setMaxAge(0xFFFFF);
              > res.addCookie(z1);
              >
              > PrintWriter outputStream = res.getWriter();
              >
              > outputStream.println("<HTML><BODY></BODY></HTML>");
              > outputStream.close();
              > }
              > catch(Exception e) {e.printStackTrace(System.out);}
              > }
              >
              > Thanks,
              >
              > Alex
              >
              >
              >
              

  • Firefox plugin bug

    Problem:
    The scrollbar fails to update its position while scrolling unless the bar is dragged with the cursor. Methods of scrolling in which the scrollbar is not updated include:
    *Mouse wheel
    *Keyboard
    *Clicking/holding down scrollbar buttons
    *Clicking/holding down open space on scrollbar
    The scrollbar is repainted only after the pointer enters/exits the scrollbar area.
    This failure to update the scrollbar creates confusion and frustration while reading PDF documents.
    Error occurs on these platforms:
    Windows 7, 32-bit with Firefox 3 and Adobe Reader X plugin
    Windows 7, 32-bit with Firefox 4 and Adobe Reader X plugin

    Please note - this is a workaround I have discovered for Firefox 4.0, Adobe Reader X, Firefox plug-in version 10.0.1.434:
    I think I have discovered a workaround for this issue - but it still needs to be fixed...
    1.  Go into Adobe Reader X.
    2.  Click on Edit, then Preferences, then Documents.
    3.  Uncheck the box "Allow documents to hide the menu bar, toolbars, and window controls."
    4.  Within the Preferences box, click on General.
    5.  Uncheck "Enable Protected Mode at Startup".
    When I performed step 4, I was able to highlight the address in the address bar, but NOT type in the address bar and change the address.  After performing step 5, I was able to type in and change the address in the address bar.
    As stated, it is not a permanent solution, but to me (and probably others), I think it is a good workaround for the time being.
    I am hoping this is related to the bug you were discussing.  if not, my apologies and could an admin move this post to an appropriate place.
    Thank you.

  • Jbuilder plugin

    Hello,
    While debugging in JBuilder, every time we run our application, Kodo tries
    to enhance all of our jdo classes. Is there a way to tell the Kodo
    plugin, to only enhance when the jdo classes have been recompiled?
    If not ... is it possible to just shut off the kodo plugin, and to turn it
    back on when we need it again? I tried to just delete the kodo library,
    but somehow that didn't work ...
    Thanks in advance,
    Michael Wirz

    I am also working on configuring Oracle 10g AS plugin in Jbuilder. The version of Jbuilder I am using is JbuilderX.
    But I Guess this plugin should work for Jbuilder2005. Bcoz I looked at configuration instructions for Jbuilder8 and JBuilderX and they are exactly same.
    U can find configuration instructions in the html file called oc4j904jbx.htm that is shipped along with the plugin jar file in zip file.
    I am facing few problems starting app server from Jbuilder. I would appreciate if you could let me know If u happen to configure, start and deploy your application successfuly. This is my email address. [email protected]
    Error I am getting when I start server is
    04/10/20 13:47:54 Warning: Error reading transaction-log file (/C:/oracleas/j2ee/home/persistence/transaction.state) for recovery: premature end of file
    04/10/20 13:47:54 Forced or abrupt (crash etc) server shutdown detected, starting recovery process...
    04/10/20 13:47:54 Recovery completed, 0 connections committed and 0 rolled back...
    Thank you
    Saritha

  • Acrobat Plugin bug. If print doc that contain album and lanscape pages then it print all pages as lanscape ignoring page orientation.

    Try on HP and Kyocera printers

    Hi,
    Adobe is responsible for that plugin
    The people who answer questions here, for the most part, are other Firefox users volunteering their time (like me), not Mozilla employees or Firefox developers. This is not the right place to report this bug.

  • JBuilder plugin does not generate orion-ejb-jar.xml

    Hello,
    We are using JBuilder to code EJB's. I downloaded the OC4J plugins for JBuilder 5 and 6. Everything installed right but filling in the deployment descriptor does not automatically generate XML entries in the orion-ejb-jar.xml. I have to do this by hand.
    Deploying to OC4J 1.0.2.2.1 succeeds and also running OC4J 1.0.2.2.1 in the debugger of JBuilder succeeds.
    I would like to see an automatic process of filling in the right tags in the orion-ejb-jar.xml just as what happens in JDeveloper or in JBuilder for the ejb-inprise.xml.
    Who is responsible for making the plugins?
    The plugins are good but things must be better for working with JBuilder to Oracle 9iAS.
    Last big very big point is the lack of good documentation.
    Oracle, when you have good technology please tell me in good documentation how to use it otherwise how will I ever discover the good things. Maybe we are trowing things away because of not knowing.
    The plugins are only for working with OC4J 1.0.2.2.x.
    When will there be plugins voor OC4J version 2?
    With regards,
    Johan Borchers
    VDA informatiebegheersing.

    Here is the URL where you can download the JBuilder7 plugin for OC4J 903. It supports CMP and automatically generates orion-ejb-jar.xml, but the CMR mapping is supported from JBuilder8 and the corresponding plugin.
    http://codecentral.borland.com/codecentral/ccWeb.exe/listing?id=19237

  • "Arrange Documents" panel plugin bug - Please Adobe give technical details

    Hi,
    A lot of users are hit by this bug that appears when installing certain
    plugins under CS4 (Nik Software plugins for example):
    - the menu bar buttons that should be highlighted in color when hovering
    them switch to a full grey area.
    - the 2 top Panels in the Arrange Documents drop down menu are
    invisible.
    Adobe say this is a problem with older plugins and a misunderstanding
    about how resources are managed in plugins (read : it's a developer
    mistake) and plugin vendors don't make any firm statement about this
    issue.
    The workaround that generally works is to close and reload the plugin
    but this works only for the current session.
    It would be nice if Adobe could give us users clear and detailed
    technical information about this issue. Many of us are developers or
    power users and since the communication between the plugin vendors and
    Adobe doesn't seem to be that effective, at least we would be able to
    transmit the information to the vendor's technical support ourselves.
    And as a developer, I'd like to know what mistake so many developers
    have made when using the CS4 SDK.
    It's very annoying to live with such trivial problems since months
    without seeing any fix released.
    Patrick

    [email protected] wrote:
    > Have you asked about this on the SDK mailing list?
    > Or contacted the Adobe product manager who works with third party
    > plugin developers?
    >
    > We maintain pretty active communication with third party developers.
    Chris,
    However, it seems that there's a communication problem about this
    particular issue, at least with some major vendors. I received a message
    from Nik Software yesterday telling me that they are aware of the
    problem and working on a fix. However, this is not a new problem and
    since it is apparently a well-known misunderstanding about how some PS
    APIs are working and since many plugins from various vendors are
    triggering this misbehavior of the PS UI, I guess this must have been
    documented somewhere. I can't imagine that this is not the case. If Nik
    Software had received the right information from Adobe, the problem
    should be gone since a long time.
    Well, ok, I'll ask on the SDK forum.
    Regards.
    Patrick

  • Missing plugins bug?

    Hi.
    I'm using Logic Pro X. I keep encountering a really annoying problem when working in Logic. After awhile, when trying to add plugins to an audio track, it says the plugin is missing. I can get around this by restarting Logic, but after awhile the same problem occurs. I've tried re-installing Logic, but that didn't help.
    Has anyone encountered the same problem?

    quote:
    Originally posted by:
    MergeThis
    Would assigning the "Online" build tag to those scripts, then
    setting "NOT Online" as your Conditional Build Expression in the
    PrintDoc layout, be an option for you?
    Good luck,
    Leon
    Thanks for the suggestion. The problem with that approach is
    I have a lot of other topics and information set to the Online
    conditional tag (since this printed manual comes from the help
    file). I guess I would have to set it to its own conditional tag,
    like Script or something and then turn that off. I may end up doing
    that in the source so I can just turn off Scripting when I export
    to a doc file after it goes through the next iteration of language
    translation.
    Anyway, to fix this problem, I opened the folder inside
    DreamWeaver and used several different regular expressions to find
    and remove all the scripts and the roadmap images as well.
    In nearly all cases this seems to have resolved the problem.
    Hopefully Adobe takes a closer look at what's happening during doc
    export. We rely on this to generate our printed documentation for
    our foreign languages, and this little bug has taken up a good
    portion of my week trying to isolate and resolve the problem.

  • Flat field plugin BUG (Windows)

    I battled long and hard to get the flat field plugin to work and finally it does. However there is a small bug important bug:
    If the file directory name has a scandinavian character (in this case there was an ä), the plugin fails to work.
    I hope this fill be fixed in a future release.
    Message was edited by: perkyle

    Thanks, this has actually saved me a lot of time chatting with Adobe support... the same problem does exist with German special characters (such as ä, ä, ü). I have just upgraded from pre-release version of LR5.3 to the final version and (by pure chance) used a directory with a special character. I thought at first the problem was caused by the upgrade. Thanks again for pointing out the bug.

  • I am using icloud windows plugin - bug

    Hello,
    I have installed icloud plugin for windows 7. The plugin for Outlook Calender has a bug. When i set up a meeting and invite attendies the time received by attendies is exactly 1 hour earlier then the time set in meeting or appointment. I have checked the time zone settings on my computer, on receivers computer and also on iclould online interface. They are all same.
    Please help me resolve this issue.
    Thank you for help !
    Ritesh

    Also, the album names, which show on my iPhone have vanished on icloud.com/#photos.  I guess they really meant beta when they described it as "beta"

  • JBuilder Plugin  SunOne And CMP

    When creating EJB with CMP you have to define a persistence manager for your ejb-module defined in the sun-ejb-jar.xml file. This has to be defined in the tag <cmp-resource> .. one problem the plugin does not has the ability to create this NEEDED tag. Does anyone has a solution for this .. or how do you make your sun-ejb-jar.xml when you make EJB's with CMP and sunOne ???
    Thankx
    D. Geerts

    VBK
    Thankx Thankx !!
    Is there somewhere a manual for using the SunOne plugin for Jbuilder ?
    Maybe you also have an answer to this question :
    If you create an <ejb-local-ref> tag in the ejb-jar.xml
    file for an EJB .. the plugin als creates an <ejb-local-ref> tag in the file sun-ejb-jar.xml, but it leaves the tag needed <jndi-name> empty and that is a problem for SunOne ..
    <ejb-ref>
    <ejb-ref-name>UitgeverE</ejb-ref-name>
    <jndi-name /> THIS TAG IS EMPTY
    </ejb-ref>
    If you have any solutions let me know.
    Thanks for answering my previous question.
    D. Geerts

Maybe you are looking for

  • Update routine - Performance Tuning

    Hi, To increase the performance, I have deleted some records in the data_package but these changes are not reflecting in the ALV output. We are getting old data only. If we toutch the standard ALV program it is a problem for other update routinies. P

  • I refuse to update skype to a "newer version"

    I absolutely refuse to. I HATE the new format and look. It looks horrible. I don't need to chat in a bloody "chat bubble" because this idea is STUPID! None of the "updates" impress me, since all I hear is how messed up the new skype is for other user

  • Photo Booth won't load after upgrade to Leopard

    I just upgraded 4.5 year old iMac from Tiger (10.4x) to Leopard (10.5.8) and now Photo Booth (v.2.0.3) doesn't load. Any suggestions?

  • Is Scheduling is possible manually while creating a production order?

    When creating a production order (co01), Scheduling carried out automatically. Is Scheduling is possible manually while creating a production order? If yes how?

  • WCF Client, WSIT Service, UsingAddressing

    When I generate a proxy on the .net side, I get Warning: The optional WSDL extension element 'UsingAddressing' from namespace 'http://www.w3.org/2006/05/addressing/wsdl' was not handled. When I try to use the service i get, FaultException: A required