Use both laf project and Jcalendar?

Hi,
I have a problem when using some java beans in Forms 10gR2 with JRE 1.4.x.
I can't seem to make both the LaF AND the JCalendar work on the same form. I can use them separately and it all works fine, but when they're on the same Form, there's only one of them working.
And it all seems to be related to the position in the object tree of Forms. Whichever bean comes first (the higher one in the tree) gets activated and the other doesn't.
Did anyone manage to make them both work in the same form?

Yes there is, sorry I forgot to look at the console since I've been using JRE...
And it made me notice I made I mistake when saying I was using JRE 1.4.x also.
Java Plug-in 1.6.0_07
Utilisation de la version JRE 1.6.0_07 Java HotSpot(TM) Client VM
Répertoire d'accueil de l'utilisateur = C:\Documents and Settings\VincentS
RegisterWebUtil - Loading WebUtil Version 10.1.2.0
proxyHost=null
proxyPort=0
connectMode=HTTP, native.
La version Forms Applet est : 10.1.2.0
java.lang.SecurityException: class "oracle.forms.fd.JCalendar"'s signer information does not match signer information of other classes in the same package
     at java.lang.ClassLoader.checkCerts(Unknown Source)
     at java.lang.ClassLoader.preDefineClass(Unknown Source)
     at java.lang.ClassLoader.defineClass(Unknown Source)
     at java.security.SecureClassLoader.defineClass(Unknown Source)
etc etc.
If I put the calendar bean first in the object tree, then it's the laf classes signer information that are not recognized. Having seen this, I just signed my 3 .jar files once again with the same certificate and I still get this message.... The .jar files are
FJCalendar.jar
jcalendar-1.3.2.jar
laf_1012.jar
(I didn't resign looks-2.0.1.jar because it wasn't mentionned in the console)
Any ideas?

Similar Messages

  • I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    People who have Photoshop, but don't have Lightroom, need ACR so that they can use Raw files. Without ACR they could do nothing with those (they may also like having ACR so that they can work on other kinds of image using the same kinds of adjustments and techniques, as are used with Raw files).
    People who have Lightroom, can get access to Raw files regardless whether ACR is present or not. They can use Lightroom on other kinds of image also, using the same methods. LR can pass images directly into Photoshop without passing via ACR (or else does so transparently, which amounts to substantially the same thing).
    ACR does not, strictly speaking, even need to be installed for this external editing to happen. In fact, not even PS needs to be - since a different image editor can be used instead, while still retaining the Adobe Raw conversion etc.
    Lightroom "subcontracts out" specialised external tasks, in this workflow, but is still your "main contractor": the image is otherwise located, viewed, managed, adjusted/presented and output entirely using LR.
    So IMO we can divide image processing into:
    operations that involve pixels and layers and layer masks and adjustment layers etc (of the kind done inside Photoshop)
    operations that involve parametric edits (of the kind done in ACR where you are not using a Lightroom based workflow; otherwise, done inside Lightroom)
    When PS is called in, that's because those tasks are impossible or unsuitable to do in Lightroom. But those tasks can't be done in ACR either - by definition, since LR and ACR have exactly the same image processing "feature set".
    Lightroom is irrelevant to the Bridge + ACR + PS workflow. This workflow requires both your PS and your ACR to be current enough, to support your Raw format etc.
    ACR and Bridge are irrelevant to the LR + (image editor) workflow. It is in this case, only LR which needs to be current enough to support your Raw format etc.
    RP

  • Is it possible to use both an ILB and an ELB (listening on the same port) in the same Azure cloud service?

    I'm building a test Lync deployment on Azure; yes, I know this is not supported, hence "test".
    Lync Front-End servers expose two set of web services, one for internal users and one for external ones; they listen on different ports (443 and 4443) on the same servers; when external services are published, you need a reverse proxy or a port forwarding
    in order to map port 443 of a public IP address to port 4443 of the Front-End server(s). When you have multiple Front-End servers in a pool, you also need to load-balance them.
    So, a typical Lync deployment looks like this:
           Internal users
                     |
                   443
                      |
              Internal LB
            192.168.0.20
            443         443
              |               |
       Lync FE 1     Lync FE 2
    192.168.0.21 192.168.0.22
              |               |
          4443        4443
              External LB
           Public IP Address
                     |
                  443
                     |
           External Users
    This should be easily replicated in Azure, as it supports both external load balancing and internal load balancing. They are even supported together in the same cloud service, so this configuration should be easy. However, it looks like "should"
    is the keyword here.
    After creating the external load balanced endpoint (which listens on external port 443 and forwards to port 4443 on the servers), I'm trying to create an internal load balancer and add internal endpoints to is; however, while the ILB can be created successfully,
    adding an internal endpoint listening on port 443 and forwarding to port 443 on the servers fails miserably, with an error stating that port 443 is already in use by another endpoint:
    Update-AzureVM : BadRequest : Port 443 is already in use by one of the endpoints in this deployment. Ensure that the port numbers are unique across endpoints within a deployment.
    For reference, my commands are:
    Add-AzureInternalLoadBalancer -InternalLoadBalancerName "LyncILB" -ServiceName "LyncFrontEnd" -SubnetName "LabSubnet" -StaticVNetIPAddress 192.168.0.20
    (This completes successfully)
    Get-AzureVM LYNCFE1 | Add-AzureEndpoint -Name "Https-Int" -Protocol "tcp" -LocalPort 443 -PublicPort 443 -LBSetName "HttpsIntLB" -DefaultProbe -InternalLoadBalancerName "LyncILB"
    (This fails)
    The existing external endpoint is configured as such:
    Get-AzureVM LYNCFE1 | get-azureendpoint
    LBSetName : HttpsExtLB
    LocalPort : 4443
    Name : HTTPS-Ext
    Port : 443
    Protocol : tcp
    Vip :
    ProbePath :
    ProbePort : 4443
    ProbeProtocol : tcp
    ProbeIntervalInSeconds : 15
    ProbeTimeoutInSeconds : 31
    EnableDirectServerReturn : False
    Acl : {}
    InternalLoadBalancerName :
    IdleTimeoutInMinutes :
    LoadBalancerDistribution :
    The error doesn't even make a lot of sense; the external load balancer listens on a public IP address, while the internal load balancer listens on a private IP address in the internal network; there
    shouldn't be any conflict here... however it looks like there is one instead.
    Why doesn't this work? Am I doing something wrong, or is Azure networking just being silly as usual again?

    Hello Massimo Pascucci,
    The issue that you are facing when creating an endpoint with internal loadbalancer is the limitation of not allowing same ports to be listening under a single cloud service. This reason for this is that there is a limitation of only one private IP (Also
    known as the Internal load balanced IP) per cloud service.
    There is also a limitation on the Internal load balancer more than one port to be published per load balancer:
    You can leave your feedback by following the link below:
    https://social.msdn.microsoft.com/Forums/en-US/1805c5a0-3906-4cd6-8561-9802d77e0ae5/is-it-possible-to-use-both-an-ilb-and-an-elb-listening-on-the-same-port-in-the-same-azure-cloud?forum=WAVirtualMachinesVirtualNetwork
    Refer to this article for more information on Internal load balancer:
    http://azure.microsoft.com/blog/2014/05/20/internal-load-balancing/
    Thanks,
    Syed Irfan Hussain

  • I used to manage 3 websites using both my imac and macbook, using dropbox, however I can no longer access them from my mac book.

    I have been managing 3 websites using iWeb for the last several years, using both my iMac and Macbook.  However for the last two weeks, I can no longer access these sites from my macbook.  It appears "empty".  When I first started seeing this, I took it to the Genius Bar in another city and he moved some library contents to my desktop - still didin't help.
    I know iWeb is a thing of the past, but I can't stop right now and learn something new for about the next 4 weeks (in a sports team in the middle of a season)
    .  After that, I will have time to learn a new product.
    Also, what is a suggestion for replacing iWeb?  Sandvox? Rapid Weaver?
    Thanks!

    What do you mean when you say you "can no longer access these sites?" Does that mean you can't connect to those sites in your web browser, or that they aren't showing up in iWeb?
    If the latter, note that your iWeb data is all entirely stored in a hidden file. In the Finder, choose Go -> Go To Folder and paste the following path into the window that opens:
    ~/Library/Application Support/iWeb
    In that folder, you will find a single file, called Domain. That's got all the data for all your iWeb sites. If that file is missing, or if it has become corrupt, you will need to restore it from an earlier backup.
    As for replacing iWeb, either Sandvox or RapidWeaver should work. Which works best will depend on your own tastes. Note that neither is capable of fully importing iWeb sites, as those sites will have a lot of content that is copyrighted by Apple. For more information about transitioning to one of these products, see:
    http://rapidweaverfaq.org/site/migrating_from_iWeb.html
    http://www.karelia.com/sandvox/help/z/Transitioning_from_iWeb.html

  • TS1424 everytime i try to download an app from itunes, or to 'view all' the apps listed, the error says; 'We could not complete your iTunes Store reuest. The network connection was reset' I used both my desktop and laptop both on Windows 7 Pro, & net is f

    everytime i try to download an app from itunes, or to 'view all' the apps listed, the error says; 'We could not complete your iTunes Store reuest. The network connection was reset' I used both my desktop and laptop both on Windows 7 Pro, & net is fine. please help. is there soemthing wrong with apple store temporarily?

    The latest message is: 'We could not complete your iTunes Store request. The network connection was reset.'
    In between, I got a messge about verifying my payment method. When I tried to submit the details, I kept getting a mmessage stating that my payment method was declined (my card is not near it's expiration date, and works fine).
    Argh!

  • If you are traveling in Europe, do you need both an adapter AND a voltage regulator to charge the IPad2 and the iphone? Or, the reverse, will it hurt either if I use both the adapter AND the voltage convertor?

    If you are traveling in Europe, do you need both an adapter AND a voltage convertoro charge the IPad2 and the iphone? Or, the reverse, will it hurt either if I use both the adapter AND the voltage convertor?

    You may only need adapters for the different kind of sockets, depending of the country you want to travel. A voltage converter is not needed.
    The Apple power units are multi voltage devices, supporting a range from 110 V to 240 V. as you can see on the labels. O.K. for most of the labels you need a magnifier, but its on them.
    Have a pleasnt journey
    Lupunus

  • Can I use BOTH IE & FF and retain the shortcuts to both to use at will?

    Can I use BOTH IE & FF and retain the shortcuts to both to use at will? I can download FF ok and use for a day or so along with IE, but after that I start to get messages from Windows saying IE is not my default browser and do I want to make it the default. If I answer no, many links in my windows mail and other links in the windows system don't work...I get a message that the file can't be found . If I answer yes, the FF shortcuts disappear and can't bring up the FF from the FF folder, I get a msg that the FF folder is corrupt!

    Hi, aparently we're a problem while you installed firefox. try to uninstall and reinstall firefox again,
    after you do that, open firefox and go to Tools>options>Advanced>General, and see that it have to be an option at last that sez "always check to see if firefox is the default browser on startup" uncheck that option.,
    Then go to IE, go to tools>internet options>programs>and clic on "Make Default".
    With this you make that IE the default browser.
    Bye

  • Fetching the sales order data using both system status and user status

    Hi,
    Could any one tell me how to fetch sales orders using both system status and user status.
    My requirement is to fetch sales order data in a report where the user enters the system status and user status in the selection screen fields.
    For example i need sales orders where the system status is I1002 i.e. OPEN and user status is E0002 (status profile CMSCON0) that is In Process
    Early replies are appreciated.
    Thanks
    Tanveer

    Hi,
    The system status and user status are stored in CRM_JCDS & CRM_JEST tables you can get the all the order GUID on particular status further pass the order GUID in table CRMD_ORDERADM_H to get transaction ID.
    Regards,
    Dipesh.

  • I just downloaded Google Chrome and use both Google Chrome and Firefox as my browser. However, whenever I click on an email link, it opens up Chrome and I want it to open Firefox. How do I fix this?

    I just downloaded Google Chrome and use both Google Chrome and Firefox as my browsers. However, whenever I click on an email link, it opens up Chrome and I want it to open Firefox. How do I fix this?

    Go into FF Preferences & set it to be your default browser.  This way when you click on an email link in Chrome, FF will open.

  • TS1398 How can I use both, Windows PC and iMac, when using WiFi?. It is either-or. What can I do?

    How can I use both, Windows PC and iMac, when using WiFi?. It is either-or. What can I do?

    What does this have to do with using an iPad?
    But yes, you should be able to connect to your home WiFi network with multiple computers and devices. In my house my wife, my daughter and I will all be using the WiFi Internet connection at the same time with our Laptops and I will also be using my iPad, my daughter uses her iPhone, and we have no issues at all.
    Is this what you want to know about?

  • Can I use both iPhoto 6 and 5 on the same Mac?

    I gave up on iPhoto 6 when it comes to publishing web galleries (see my posts at http://discussions.apple.com/thread.jspa?threadID=456532&tstart=0 )
    Can I use both iPhoto 6 and 5 on the same Mac?
    Thanks!

    Lior:
    Welcome to the Apple Discussions. Yes you can but it takes a lot of caution! You can have both application running their own library. But the problem comes in when you launch V5 into the last used library, a V6 library, and it can corrupt that library so it won't open in V6 again. Conversely, if you open V6 and the V5 library was the last to be opened and you don't pay attention, you'll convert it to a V6 and lose the V5 access.
    So you have to make sure you ALWAYS launch iPhoto with the Option key depressed and manually select the library to use each time. Also Name each library differently. I use V6 LIbrary and V5 Library. You can rename your current one and then launch iPhoto with the Option key depressed and navigate to it to open it.

  • Hi, I have tried to use FaceTime using both my Mac and iPhone, it showed it was connecting, but can't not be connected, and it will just show call failed. could you please look into it? thanks

    Hi, I have tried to use FaceTime using both my Mac and iPhone, it showed it was connecting, but can't not be connected, and it will just show call failed. could you please look into it? thanks

    There is an issue with facetime at the moment http://www.idownloadblog.com/2014/04/17/facetime-connectivity-issues-reaching-ma ny-ios-users/

  • How to use both ojdbc14.jar and ojdbc6.jar in same weblogic domain(weblogic12C)

    Hi all,
    I 'm having issue of using both ojdbc14.jar and ojdbc6.jar in same weblogic application and same weblogic domain in weblogic 12C environment.
    how can i do that?
    i'm currently having application developed using jdk 1.6 and ojdbc6.jar, application developed using jdk 1.4 and ojdbc14.jar.both are currently installed at same domain.
    i want to use the both ojdbc14.jar and ojdbc6.jar in same domain.
    what i previously did was renaming /usr/weblogic/wls_server10.3.4/lib/ojdbc6.jar to /usr/weblogic/wls_server10.3.4/lib/ojdbc6.jar.bak and put ojdbc14.jar in the same path when i wanna use ojdbc14.jar.
    i haven't use both in same environment before, but to go live i wanna match about requirement.pls help.
    i know the way use this by having two domains, but in the same domain i could not find a solution yet.
    Please help

    Hey
    I have the similar requirement.. Did you managed to get an option of doing it? If yes, please provide some insights
    Thanks in Advance

  • HT201342 Can is use both the @icloud and @me email addresses?

    Can is use both the @icloud and @me email addresses?

    Yes, your previous @me email will continue to function as before.

  • Can any one tell me the exact procedure of how to update XPERIA NEO V to ICS using both PC companion and SUS.

    Can any one tell me the exact procedure of how to update XPERIA NEO V using both PC companion and SUS.
    Please provide required link also for SUS and step by step procedure for the same.
    It will be really helpful.

    SUS http://www.sonymobile.com/global-en/tools/update-service/
    You just need to connect your mobile to pc companion follow the onscreen instructions
    Use pc companion
    http://www.sonymobile.com/global-en/tools/pc-companion/
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.

Maybe you are looking for

  • Can't install, get error message that says "The website declined to show this page"

    I've been using Firefox for years now, but recently I had some problems with my computer and had to re-install Windows. I am now running Windows 8.1. I can't install Firefox now. It's very strange. When I attempt to install, I get an error message th

  • How to Get PO from Material Document by MB1B!

    Hi, I created a PO for subcontracting. When I send the goods to vendor with trx MB1B and mvt type 541, Material Document Number will be generated (option: to Purchase Order) . When print out this Material Document Number by MB90, I want to get this P

  • CAD Upgrade from 7.5.8 to 7.6.2

    Hi all, hope everyone is well !! I am running UCCE 7.5.8 with CAD 7.5.8 and I am having an issue with CAD running on Windows 7 where the agent/supervisor desktop sporadically hang or stop responding for a while. I understand CAD 7.5.8 is not supporte

  • CS6 File Sizes

    Hi In general, I save my documents as uncompressed TIF files. On a recent project I have noticed that the files being created appear particularly large and are significantly bigger than the size indicated in the status bar. An example: Document is 16

  • HT1222 OS 6.1.2

    I have software iOS 6.0.2 and during updating to iOS 6.1.2 i received the following message:- (Fixes an Exchange calendar bug that could result in increased network activity and reduced battery life). Can i continue or there is problem????