Hmm, where is gatekeeper?

and... power nap.... i dont seem to be able to find them, not in preferences or with spotlight.
And, with mountain lion, how do i do a software update? whenever i press the  icon on the left corner and press Software Update the app store opens, and i've pressed it several times now to see if i wasnt pressing by mistake App store but i am definetly pressing Update... and it still opens the app store.

You can find Gatekeeper in System Preferences > Security and Privacy, and Power Nap in System Preferences > Energy Saver (if your computer can run Power Nap). Software Update is in App Store. To install updates, open App Store and select Updates tab

Similar Messages

  • What is gatekeeper and where do I find it

    I keep reading about 'gatekeeper' as part of the upgrade feature of Mountain Lion, which I have,,but where is gatekeeper and how do I access it?

    Here's a good gatekeeper writeup:
    http://support.apple.com/kb/HT5290

  • Where is Visigenic Gatekeeper?

    In building and running a CORBA applet, I get the following error appearing in the Java plugin's Console:
    WARNING: Attempting to use HTTP Firewall Proxy Server
    due to security restrictions: org.omg.CORBA.INTERNAL: Can not find GateKeeper: com.sun.CORBA.idl.AnyImpl@eb195745 minor code: 0 completed: No
    null
    [Root exception is org.omg.CORBA.INTERNAL: Can not find GateKeeper: com.sun.CORBA.idl.AnyImpl@d31d5745 minor code: 0 completed: No]javax.naming.NamingException
    at oracle.jbo.client.remote.corba.vb.VBrokerApplicationModuleHome.createNamingException(VBrokerApplicationModuleHome.java:247)
    The JDEV documentation tells you how to configure and start the Gatekeeper and a gatekeeper.exe file is supplied in the jDEV_HOME\bin directory. However, I could not run the gatekeeper.exe successfully. When I try to run gatekeeper.exe as specified in the JDEV Help doc, I get the error message:
    Can't find class com/visigenic/vbroker/gatekeeper/GateKeeper
    The JDEV visibroker help (specifically "Modifying HTML for VisiBroker Deployment", "VisBroker Gatekeeper" subsection lists a number of jar files to include in your CLASSPATH. However, one of them, vbjgk.jar, is not included in the JDEV 3.1 or JDEV 3.1.1.2 distributions I have installed. It is also not included with the Oracle 8i distribution. There are a number of other vbjxx.jar files included; but not vbjgk.jar)
    I think this jar is the one that contains the gatekeeper classes (I may be wrong on this, I'm presuming the "gk" stands for gatekeeper).
    Can someone tell me where the Gatekeeper or Gatekeeper jar is?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Thomas.Provenzano ():Since no one answered my question - I'll answer it myself! I found it at http://technet.oracle.com/tech/java/ejb_corba/index2.htm?Code&files/hotel/hotelHome.htm
    ...the Hotel sample application supplied by Oracle. Once there, click on the "Support" button near the top of the page (not the one on the side of the page). Click on the "Visigenic Gatekeeper Library" link and download the vbjgk.jar file. Copy it to your <jdev_home>\aurora\lib directory (where the other vbj jar files are and voila! you've it and can now set up to run the gatekeeper as described in the Jdev Help document entitled "Modifying HTML for VisiBroker Deployment"
    (Note: you may have to get the other gatekeeper components from your 8i distribution; i.e., gatekeeper.exe and vbjruntime.dll)
    In building and running a CORBA applet, I get the following error appearing in the Java plugin's Console:
    WARNING: Attempting to use HTTP Firewall Proxy Server
    due to security restrictions: org.omg.CORBA.INTERNAL: Can not find GateKeeper: com.sun.CORBA.idl.AnyImpl@eb195745 minor code: 0 completed: No
    null
    [Root exception is org.omg.CORBA.INTERNAL: Can not find GateKeeper: com.sun.CORBA.idl.AnyImpl@d31d5745 minor code: 0 completed: No]javax.naming.NamingException
    at oracle.jbo.client.remote.corba.vb.VBrokerApplicationModuleHome.createNamingException(VBrokerApplicationModuleHome.java:247)
    The JDEV documentation tells you how to configure and start the Gatekeeper and a gatekeeper.exe file is supplied in the jDEV_HOME\bin directory. However, I could not run the gatekeeper.exe successfully. When I try to run gatekeeper.exe as specified in the JDEV Help doc, I get the error message:
    Can't find class com/visigenic/vbroker/gatekeeper/GateKeeper
    The JDEV visibroker help (specifically "Modifying HTML for VisiBroker Deployment", "VisBroker Gatekeeper" subsection lists a number of jar files to include in your CLASSPATH. However, one of them, vbjgk.jar, is not included in the JDEV 3.1 or JDEV 3.1.1.2 distributions I have installed. It is also not included with the Oracle 8i distribution. There are a number of other vbjxx.jar files included; but not vbjgk.jar)
    I think this jar is the one that contains the gatekeeper classes (I may be wrong on this, I'm presuming the "gk" stands for gatekeeper).
    Can someone tell me where the Gatekeeper or Gatekeeper jar is?<HR></BLOCKQUOTE>
    null

  • Creating a key for a Time table in HMM format

    Hello,
    I am looking to create an INT column in SQL that inserts all hours and minutes within a day (that is, 1440 entries), in the following format:
    HMM
    Where:
    H is the 24 hours format, without that leading zero, and MM are the minuts with the leading zero. For example:
    0 is equivalent to 00:00
    1 is equivalent to 00:01
    2 is equivalent to 00:02
    15 is equivalent to 00:15
    59 is equivalent to 00:59
    105 is equivalent to 01:05
    130 is equivalent to 01:30
    920 is equivalent to 09:20
    1130 is equivalent to 11:30
    1300 is equivalent to 13:00
    2010 is equivalent to 20:10
    2359 is equivalent to 23:59
    Since I am still a little grasshoper on the path of SQL Kung-Fu, I am having a little hard time coming with up with a SLQ syntax to achieve that. Could someone please advise?
    Regards,
    P.

    130 is just an example, which i took from HuaMin's
    response
    If I understood your issue, you have values in integer like 130 is 01:30 and you want to get the time '01:30' from the integer. This what what we all answer above. I just follow the other people understanding and post another solution.
    It will be much easier if you post DDL+DML+result that you want to get instead of stories :-)
    DDL: query to create the table
    DML: queries to insert some sample data
    Result: according the DDL+DML
    * since you did not posted DDL+DML, I demonstrate the solution using single value (using the variable @n which represent the value that come from the table)
    ** Please post post DDL+DML+result that you want
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • Photo browser in Mail not working

    In new mail my photo browser will not add photos even though it appears on screen when requested. Some time ago I had to replace my original photo library with a new one and I think this has caused the problem as it used to work fine. I do not know what to do to get it working again and would really appreciate any help to do so. Should I consider re-installing Leopard?
    John

    Lesliejohnb wrote:
    Hi Buzz,
    Hi John; Sorry that I didn't reply sooner. Been busy playing with a new toy! I got carried away here so this kind-a long!
    Keep the chat coming - it made me laugh!
    Well, O.K. Hmm, this will amuse you and may amaze you too! The ONLY reason I EVER had for buying a Computer was due to my mind's insatiable boredom created by my job! It's a long story but I LIVED out of my suitcase, in Hotel's/Motel's, a different Town/City every day, 6 days a week! And *I HATED IT!* I was so bored *OUT OF MY MIND*, I became an alcoholic! I didn't just get drunk every night, I STAYED drunk all day long every day! I was so good at being drunk I could FAKE being SOBER! EVERYBODY I talked to was convince that I had a speech impediment. I wanted to quit but the salary for this job was so INSANE I couldn't. The Job: K-Mart Field Auditor. The year: 1979-82! The Computer: A 1980 Tandy/Radio Shack TRS-80!
    The amazing part of this story: I STILL have the Computer, it STILL works and I STILL use it! It's the ONLY Computer that I've EVER own that's SO stable it HAS never CRASHED. Unfortunately I STILL have a addiction but isn't alcohol, it's Computers! I'm SO addicted my Boss wants to commit me to a psychiatric hospital but he won't! He can't replace me! I'm the ONLY Certified Windows Professional in this city with more of years experience than all of the other CWP have been alive! I was doing 'Stuff' with my TRS-80 25 years ago that most Computers *CAN'T EVEN* do today but that's another story! Do you know somebody else that STILL uses a 27 Year Old Computer?
    If you have more than one email account when you click new mail there is a "From" box right under the address boxes which allows you to click on the account you want to use to send- in my case either @tiscali or @google.
    Yup I'm in the Groove now and I'm following you but that ONLY changes the From:, not the E-Mail Account that will Send it! There's a different option to do this that I will explain ...
    If I open new mail and click the google address all is well. Not so if I click tiscali.
    Yup! It's the 'stuff' that makes you go NUTS when the logic ain't logical! But after doing some research about multiple Mail Accounts I found the logical logic that will help! Hmm, did that make any sense to you? I'm get so confused when I do immutable weird mutating stuff that turns my logical mind into mindless gibberish logic but it makes me happy!
    Alternatively it could be that this difference only appeared after I carried out the start up operation you gave me last time. I do not know.
    O.K. Me BAD! I told you to do that but I didn't tell you WHY. As you're using your Mac it creates different Caches to cut down on having to re-search the Hard Drive again. This makes 'Stuff' open quicker and when you open 'Stuff', the Mac will ALWAYS look at the caches first before looking at the Hard Drive. If the Mac finds this 'Stuff' in the cache it WILL NOT look for it any further and uses the Cached Information. If you change something on the Hard Drive that the Mac HAS NOT cached, like renaming iPhoto files without using iPhoto, it won't know about it and then weird stuff starts happening. 'Safe Boot' clears the caches and MAKES the Mac re-cache 'Stuff'.
    I have tried to attach all sorts of photos to the tiscali new mail and none works - thought maybe there was some kind of size limit perhaps but lots of the older photos are really quite small.
    Well, I think I know an answer for this should work! You know: what's good for the goose should be good for geese! O.K. down to business and I took my time to aim this 'Shot'! Hmm, where to start and do I explain this simply?
    First open Mail then Preferences and goto the Account window. You know how to setup the Accounts because they work, sort of! At the bottom of the Account Information window, there's an option to use a 'Outgoing Mail Server (SMTP)'. It's a drop down box that will let you change or edit this information. Change this to 'None' and underneath this option is a check box to 'Use only this server'. Un-check it if it's checked. Now you don't have a 'Default Mail Server' and can choose the server to use from a new e-mail. Now while you are still in this window, click the Advance button under the tool bar. At the bottom of this window there's a click box for the option 'Use IDLE command if the server supports it'. Un-check it if it's checked. This option only works with IMAP Servers and not with the POP Servers that you use. O.K. You still with me?
    Now click the 'Composing' icon on the tool bar at the top. Then uncheck 'Automatically <Cc or Bcc> myself' if it's checked and you don't use it. IMO:This option SO asinine! But stupid programers do stupid 'Stuff'. Now, the next option to change is 'Send new mail from'. This maybe the 'Pain in your Derrière' that you're having but it should change when you select the 'From:' while creating new e-mail. You probably only have three choices here and I suggest anything BUT the 'Account of the last viewed mailbox'. O.K. Still with me?
    Now I KNOW why my this Mail Stuff was a 'Pain in your Derrière'. Did I mention that stupid programers do stupid 'Stuff'. This is a quote I found in Mail's Help! *"To change the server you want to use to send the message, use the server pop-up menu in the New Message window."* Well, O.K. But I was going blind looking for this infamous 'Server Pop-up Menu' in the the 'New Message Window'. Mail's Help said It's there but I don't SEE IT! Plus, I don't believe everything I read or half of the 'Stuff' I see! Swell, Just Swell! I feel like I'm watching PAINT dry! And I'm not in my 'Groove' yet plus I know the answer will 'DAWN ON ME' later while I'm doing other 'Stuff'! So I do, then it does and 'DAWN', my third eye, shows me the way! O.K. Are you still with me or are you busy, laughing at this rambling Weirdo? Can you tell that I read & write like a moron that's a Computer Genius?
    Now were was I? O Yea... Open a new e-mail window and look for a square box on the left side of 'FROM:'. See it? Now click on it and a drop box will appear. The infamous 'Server Pop-up Menu' option you want isn't even list here and I kept missing it! I did mention that stupid programers do stupid 'Stuff', didn't I? So click on 'Customize ...' and the ALL the Mail options are now shown with check boxes. Isn't that just dandy? Are you cursing at that stupid programer like a truck driver? I DID! I cursing now! I curse out that stupid programer every time a create a new e-mail! Man O Man! No wonder there's so many names to impugn a Stupid person ... Asinine, Dumb, Dense, Dull, Slow, Obtuse but their just unintelligent. But a person with Stupid Stupidity is TOTALLY Brain Dead! Well, I did it again and went off the subject, carried away with mindless gibberish. O.K. You still with me?
    On the right side of the 'FROM:' box is that infamous 'Server Pop-up Menu' option that you want to use. Click the check box next to, on the left so doesn't disappear! Now you can choose whichever E-Mail Server you want to send e-mail from. But before you click the OK button I have a suggestion. Uncheck the 'Cc:' box under 'TO:' then check the 'Bcc:' box. I explain ... The 'Cc:' means Carbon Copy and the e-mail address use here will receive a Copy the the e-mail. But everybody that gets this e-mail WILL know the e-mail address of everybody else that got this e-mail! Does that make any since? Plus Spammers can collect these e-mail address way to easy! It's a long story to explain how quickly this can be done. Now the 'Bcc:' means 'Blind Carbon Copy' and it works just like 'Cc:', but there's ONE very important difference! Everybody that gets this e-mail is BLIND to the e-mail address of everybody else that got this e-mail! Plus Spammers are BLIND about these e-mail address as well, TOTALY impossible to collect! PERIOD! And you probably know this by now, but you can use the the 'Reply-To Address Field' to have replies sent to an email address that is different from the email address you’re using to send the message. One last tip then I've got to go to bed! You can sent email without an email address in the 'TO:' box if you use 'Bcc:' with an email address! But this may not work because some Spammers don't use an email address in the 'TO:' box any more, so several 'E-Mail Servers' will block an email with blank 'TO:'
    WOW! Did I get carried away! This post is HUGE!
    I hope I covered everything and that Apple let's me post it!
    Later ...
    !http://homepage.mac.com/buzzlightgear/Buzz.tiff!
    Buzz

  • Why does DW disable insert menu items?

    This must be a configuration option someplace, but in general, why would DW disable Insert menu items?
    I am in .cfm file, in clearly an unlocked area of a page where I should be allowed to insert hyper links, email links, horizontal rules, images, tables.  But on the Insert menu, each of those items is disabled (and others, but you get the point).  Since the insert menu items are disabled, the keystroke shortcuts for those actions don't function.
    I can manually type in these tags, and I can insert them from the Insert window.
    I start a brand new .cfm page, and the insert menu is fine.
    It appears DW is examining the code and deciding [INCORRECTLY] what is appropriate to insert via the menu.
    Thanks for any insight provided.

    > Dreamweaver is putting the PHP href code (<a
    href="../st_vimmel.php"> code
    > </a>) not me?
    That's plain HTML, not PHP, and DW doesn't do that - really.
    > Can Flash also fix the <embed> tag (take away) as
    the W3C HTML validator
    > don't
    > accept this tag?
    DW's javascript solves that problem.
    > I fixed the problem flash image with a workarround code
    for the moment:
    *DON'T DO THAT*
    Leave DW's code alone.
    > To get away from all the javascript and other code that
    could be the
    > problem.
    It is not the problem, most likely - but tell us what the
    problem was.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Magooi" <[email protected]> wrote in
    message
    news:edie10$529$[email protected]..
    > Dreamweaver is putting the PHP href code (<a
    href="../st_vimmel.php"> code
    > </a>) not me?
    >
    > Hmm, where do I put the href i Flash?
    >
    > Can Flash also fix the <embed> tag (take away) as
    the W3C HTML validator
    > don't
    > accept this tag?
    >
    > I fixed the problem flash image with a workarround code
    for the moment:
    >
    >
    quote:
    <object type="application/x-shockwave-flash"
    > data="/images/banners/25000.swf" width="438"
    height="280">
    > <param name="movie"
    value="/images/banners/25000.swf">
    > <param name="quality" value="high">
    > </object>
    >
    > To get away from all the javascript and other code that
    could be the
    > problem.
    > My side is a bit complex with PHP/MySQL and many
    javascripts so I think
    > there
    > was a conflict with my admin system using MySQL or
    something.
    >

  • RAM Hungry

    Final Cut Express has been my living **** for the last 2 weeks.
    It started with not being able to import any footage (it was bringing the Audio & Video in out of Sync) and now I can't render.
    The only way I was able to get the Audio on my System was to use iMovie HD (on a hired Mac) and now that I have spent 26 hours on the edit can't render the entire piece without it failing due to memory errors.
    I have discovered that I can do the file one small section at a time, but anything longer than 2 minutes and I get the out of memory error.
    I have opened the Activity view and can see Final cut steadily eating all of my RAM until there is nothing left and then the application just locks.
    Any advice would be helpful as rendering 2 minutes at a time is proving to be a real headache.

    Hmm, where is the hardware test program? I checked under Utilities but could not immediately see it.
    And no, I don't have any stills in my production.
    I am finding it strange as I rendered the same size project last year with no issue. It did take around an hour to render, but the system just churned through it.
    So I am not sure if the RAM is just broken or there is perhaps a bug in the software.

  • Constant freezes

    Hi,
    I'm getting constant freezes and they are driving me crazy, I just had a HD replacement, I'm using Leopard 10.4, at first I thought it was firefox but it kept happening even with the application closed.
    So I went to the console and found this:
    06/07/08 05:21:19 p.m. /usr/sbin/ocspd[1221] starting
    06/07/08 05:35:54 p.m. authorizationhost[1231] Failed to authenticate user Jose (tDirStatus: -14090).
    06/07/08 05:41:39 p.m. kernel jnl: unknown-dev: flushing fs disk buffer returned 0x5
    06/07/08 05:44:10 p.m. kernel jnl: unknown-dev: flushing fs disk buffer returned 0x5
    06/07/08 05:45:41 p.m. kernel jnl: unknown-dev: flushing fs disk buffer returned 0x5
    06/07/08 05:51:20 p.m. /usr/sbin/ocspd[1252] starting
    every time it freezes i got the message jnl: unknown-dev: flushing fs disk buffer returned 0x5
    Those anyone knows what is causing the freezes? Is there an easy solution?

    Hmm - where do you get the impression I was assuming the HD was an upgrade? And why do you think I've twice couched my reply in terms of "If your computer was stable before the drive was replaced?" I'm well aware that there are three distinct possibilities but I have only the information of a crash and a hard drive replaced. I'm fishing for more information but since I'm not getting any....

  • H67MA-E35 (B3): Using certain tuner cards causes freeze/BSOD

    Hi, I have an issue with my HTPC that I've narrowed down to the motherboard. Certain TV tuner cards or combination of TV tuner cards don't work, by which I mean the PC freezes or BSODs when I try to use the tuners on those cards. Here's a list of the combinations I've tested along with their maximum current draw on the 3.3 V rail according to their user manuals:
    BGT3630 = 1.8 W / 0.6 A = fine
    BGT3600 = 4.0 W / 1.2 A = fine
    BGT3600 + BGT3630 = 5.8 W / 1.8 A = broken
    TBS6981 = 7.3 W / 2.2 A = broken
    TBS6981 + BGT3630 = 9.1 W / 2.8 A = broken
    As you can see there's a bit of a pattern here - as the 3.3 V rail current usage increases, things stop working (somewhere between 1.2 A and 1.8 A). I don't know if this is a pattern or just coincidence. Here's my specs:
    MSI H67MA-E35 (B3)
    Intel Celeron G530
    4 GB 1066 MHz RAM (CMV4GX3M2A1333C9)
    nVidia GT 430 (Asus passive)
    Antec EA-380D Green
    Intel 320 Series (40 GB)
    SH-B123L/BSBP BD-ROM
    GD04B Grandia Case
    To narrow down the problem, I tried the tuner cards in my main desktop and they all work fine. I've also tried swapping over the PSU with from my file server (Huntkey Jumper 300G) and I get exactly the same problems. I have the latest drivers for everything including the tuner cards, plus the latest BIOS. I've also tried using both PCI-E 1x slots in different situations and clearing the CMOS; nothing helps. So I think that leaves me with one option: the motherboard. 
    Is this likely to be an incompatibility issue with the H67MA-E35 (B3) or a fault with my specific board? 

    Quote from: xmad on 23-July-12, 06:24:05
    It seems thouse cards wont work @ 1x which is all you are getting with your VGA & 2 other pcie slots filled. I found several other people having trouble with those cards in 1x slots.
    Hmm, where are you getting this information from? The pins on the tuners are only 1x and the user manual of the BGT36xx series states they will work in 1x/4x/16x slots. The MSI website just says this for the PCI-E slots on my motherboard:
    • 1 PCI Express gen2 x16 slot
    • 2 PCI Express gen2 x1 slots
    • 1 PCI slot, support 3.3V/ 5V PCI bus Interface
    I'm pretty sure that the two non-VGA slots are physically 1x so won't ever be 8x. Also, are you sure the "several other people" aren't just me on other forums cos that's what a quick google shows.
    Quote from: xmad on 23-July-12, 06:24:05
    To confirm, remove the vga and use onboard, put the tuner cards in the top 2 slots and test. I believe that should be 16x and 8x (although i'm not sure about the specifics on your board in regards to the total number of lanes.) or at worst 8x /8x.
    I'll give it a go some time this week. I'll do a full backup beforehand and restore after testing because driver conflicts could cause problems, plus whenever I put in the BGT3630 alongside the BGT3600, it detects all the tuners as "new" so I have reconfigure my software, MediaPortal, each time.
    By the way, I really appreciate your help here. So far no-one else has any idea what is going on!

  • MOVED: Z68A-GD55 (G3) sits at B2 for over 60 secs after GC upgrade

    This topic has been moved to Intel Core-iX boards.
    https://forum-en.msi.com/index.php?topic=174411.0

    Quote from: jonkrmr on 08-November-13, 07:09:39
    I had a P67a-GD65 with an i5-2500K when I first bought my Evga GTX770 SC ACX a few months ago. Did not have a problem with the card working with the board. They had a compatibility issue with the GTX7xx seiries on older PCI-e 2.0 boards like the P67 and Z68. The video card manufactures updated their BIOSs on their cards and most of the compatibility issues went away. All of the GTX7xx cards in the retail chain would have the newest BIOS on them by now. What BIOS version is on your GTX770? Mine is 80.04.C3.00.70 which is the latest for the GTX770 SC ACX card. You really want to avoid updating your MB BIOS to the latest if you are overclocking a Sandy Bridge CPU. ME8 and the latest BIOS were designed to work with Ivy Bridge CPU's and if you flash to the latest MB BIOS you will lose a lot of settings in your BIOS that would allow you to overclock your Sandy Bridge CPU. If you don't overclock, then there would be no problem. A Sandy Bridge CPU will function just fine in stock form with the latest BIOS on the MB.
    I like to OC my system so I really don't want to lose that option. GC Bios version is also 80.4.c3.0.70 Hmm where does this leave me?

  • Where to download eclipse plugin for weblogic extension network gatekeeper ?

    Hi,
    As mentioned in the below link
    Using the Eclipse Plug-in for Extension Toolkit
    I need to create wlng projects. Could you please tell me where can I download the weblogic network gatekeeper eclipse plugin?
    Thanks,
    Siva prakash.

    The JavaFX 1.2.3 SDK was just released this morning. The Eclipse Plugin still requires the JavaFX 1.2.1 SDK, which you can download from:[http://java.sun.com/javafx/downloads/previous.jsp#1.2.1]. We are updating the document [Getting Started With JavaFX Technology Using Eclipse IDE|http://javafx.com/docs/gettingstarted/eclipse-plugin/index.jsp] to point to the correct download. Thanks!
    Edited by: gchaps on Feb 5, 2010 9:34 AM
    Edited by: gchaps on Feb 5, 2010 9:42 AM

  • I have HugesNet Gen4 and have downloaded most current version.  I am unable to open and cannot find where in system preferences and/or Safari I give permission.  Can a techie tell me where?

    Because I downloaded from internet, I am unable to open.  I cannot find where I give permission and/or if I need to download some plug in or something.  Please help and thanks.

    Hello Charlene,
    It sounds like you are getting a message that the application you downloaded can't be opened because it's from an unidentified developer. 
    Gatekeeper is a feature of Mac OS X that by default blocks software from unknown developers, but you can change the functionality to download and install software from developers you trust:
    Gatekeeper gives you more control over what you install. You can choose the safest option and only allow apps that come from the Mac App Store to open. There is also the option of only allowing apps that come from the Mac App Store and identified developers. Or you can choose to allow any apps to open, just like previous versions of OS X.
    Gatekeeper options are found in Apple menu > System Preferences… > Security & Privacy > General tab under the header "Allow applications downloaded from:"
    If you trust the source you are downloading the application from, you can switch the option to "Anywhere" to download the file.  Once you finish downloading the file, you can always switch back to one of the other options.
    OS X: About Gatekeeper
    http://support.apple.com/kb/ht5290
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Where can I find a good pool manager? or ...

    I need a pool manager or I must make it myself?
    which is the different between DataSource and ConnectionPoolDataSource?
    if I use ConnectionPoolDataSource to make database connection then if pool manager are needed?
    if need ,how to make it?Where can I find the tutorials about it?

    There are a few examples of pools on the web (as the previous reply quoted), and you could try www.javaworld.com/javaworld/jw-06-1998/jw-06-object-pool_p.html for a tuition.
    The difference between DataSource and ConnectionPoolDataSource....hmm....they are both interfaces allowing providers (JDBC driver manufacturers, J2EE App Server manufacturers etc) to implement concrete classes that comply to certain method signatures.
    Basically, uisng a Datasource will return a Connection, whereas a ConnectionPoolDataSource will return a PooledConnection, which in turn will return a Connection. However !!NOTE!! these classes DO NOT create a data pool on their own, and still require you to code your own pool (which is a bit misleading when you consider the names of the interfaces).
    Hope that helps a little.

  • Where can I find a tutorial on creating interfaces?

    I think an interface is what I need for the program I am working on, although I haven't found any tutorial on how to create these on the Java Tutorial... Anyone could point me somewhere else where I might learn without bothering anyone? :)

    hmm, that isn't what I meaned..
    I guess I wasn't very clear, I hadn't thought of such interfaces :P
    I'm talking of interfaces such as ActionListener.. What I want to create for my program is an interface that I'd call a PacketListener so that I can have a Core communication program which can be implemented into many different client programs ;)

  • Where is the template section in pages 5.0?

    In the new Pages 5.0 i cannot find the icon that use to help me add table content , section , chapter and sections according to the template that you choose. does anyone know where it is??

    hmm this seems like to resolve the problem only temporarily.
    when i shut down pages and reopens, it jumps back to the british spelling. how can i make this fixed to the american spelling?

Maybe you are looking for

  • What is the meaning of error code 137

    I'm trying to backup the database into ldif file, and using the command as belows: ./ns-slapd db2ldif -D ../../../slapd-33389 -a /data/EXPORT/directory_services/offline/directoryDB.ldif -n InstallUpgradedata But under some condition, it returned me a

  • Need to send question to differant email address

    I am having a problem signing in to my account. I have been using thunderbird for some time now. Yesterday it stopped refreshing with new mail. When I manually tried to refresh a screen pops up asking for my password to log in. I put in my password a

  • Query Regarding Explain Plan on Query

    Hello, I have one big query which shows report of 50000 daily records from @ 20,00,000 records. I have two databases UAT and PROD.when i do Explain Plan on the query is these different database i get the different plan where everything is same in bot

  • REPORT PAINTER LAYOUT

    Adding data columns to report drill down table Technical code - ZFI131 - Report Painter YTD CCA-REP GRP & CST CNTR CRP VAR: Selection Enter 2011, 2,2,,0  Group 12021862 YTD CEG_CCA-REP X CCG_C10001 Select - Manufacturing Activities, Drill down into a

  • Using an .ai file in indesign cs5 with multiple artboards

    Hello, I am working in indesign cs5 and I have a .ai file that I have linked. It only shows artboard 1, and not the other artboards. I know that if you go to objevt>objevt layer options you can toggle the layers, but how can I toggle artboards? Thank