Are the iMacs able to handle Flight Sims?

My iMac is an early intel version with a 2.16 GHz cpu and 2.0 GB ram with the nVidia 7600 GT video card. Can someone please tell me if the flight sim 'X-Plane' would work with this platform? I have not picked up any joysticks or control wheels as I wasn't sure whether or not the computer was flight sim capable or not.
My old dell pc was to some degree, but it was too old to modify enough to make flight sim games worthwhile. Any help would be appreciated.

Off the top of my head I would expect it to work just fine. You can download the demo of version 8 and see how it goes. You can drive with the mouse and keyboard in the demo mode for about 10 minutes. It's a big download, but worth the wait.
You've probably already discovered x-plane.org? It's a web site for rabid x-plane fans. I'd post your question there and I'm suspecting you'll get a lot of responses. They are pretty helpful in my experience.
FYI - I'm running x-plane version 8 on my iMac without a hitch. There is actually one small hitch in the video drivers for my Mac (uses a ATI card) that does not display runway lights properly, but I think that should not be an issue for you. (The X-plane author claims it is an Apple/ATI deficiency in the video drivers for the new iMac. Version 9 works around the problem I am told).

Similar Messages

  • Are the iPhone 4S available in China SIM locked or SIM lock free?

    Are the iPhone 4S available in China SIM locked or SIM lock free?

    The iPhone stores no data on the SIM card.

  • What are the sensitive places to handle in devlopment of LSMW

    hi
    What are the sensitive places to handle in devlopment of LSMW
    thanks

    At the time of entering orders, item inquiry, receiving, inventory transfers etc...You can enter the lot attributes during receiving because you create a new lot number.
    On Item onhand inquiry, you can enter lot context and lot attributes to limit your search to specific lots.
    You may have to write personalizations on other screens.
    Hope this helps,
    Sandeep Gandhi

  • What are the different ways to handle deadlocks?

    Hi,
    May I know what are the ways to solve a deadlock problem?
    Currently, I have the following code to catch the exception:
    catch (XmlException ex)
                   try
                        ex.printStackTrace();
                        txn.abort();
                   } catch (DatabaseException DbEx)
                        System.err.println("txn abort failed.");
                   }and the resulting error is:
    com.sleepycat.dbxml.XmlException: Error: DB_LOCK_DEADLOCK: Locker killed to resolve a deadlock, errcode = DATABASE_ERROR
    Any other more efficient way to handle deadlock?
    Or better ways to prevent deadlock from happening?
    I am using this environment config
    EnvironmentConfig envConf = new EnvironmentConfig();
                   envConf.setAllowCreate(true); // If the environment does not exits,
                   // create it.
                   envConf.setInitializeCache(true); // Turn on the shared memory
                   // region.
                   // envConf.setCacheSize(25 * 1024 * 1024); // 25MB cache
                   envConf.setInitializeLocking(true); // Turn on the locking
                   // subsystem.
                   envConf.setInitializeLogging(true); // Turn on the logging
                   // subsystem.
                   envConf.setTransactional(true); // Turn on the transactional
                   // subsystem.
                   // envConf.setRunRecovery(true); //Turn on run recovery
                   // envConf.setTxnNoSync(true); // Cause BDB XML to not synchronously
                   // force any log data to disk upon transaction commit
                   envConf.setLogInMemory(true); // specify in-memory logging
                   envConf.setLogBufferSize(60 * 1024 * 1024); // set logging size.
                   // envConf.setTxnWriteNoSync(true); //method. This causes logging
                   // data to be synchronously written to the OS's file system buffers
                   // upon transaction commit.
                   // envConf.setThreaded(true); //default by Java that threaded = true
                   // envConf.setMultiversion(true);
                   envConf.setLockDetectMode(LockDetectMode.DEFAULT); // Reject a
                   // random lock
                   // requestThanks in advance for any help!
    :)

    Hi Vyacheslav,
    here is the code:
    package ag;
    import com.sleepycat.db.DatabaseException;
    import com.sleepycat.db.Environment;
    import com.sleepycat.db.EnvironmentConfig;
    import com.sleepycat.db.LockDetectMode;
    import com.sleepycat.dbxml.XmlContainerConfig;
    import com.sleepycat.dbxml.XmlDocumentConfig;
    import com.sleepycat.dbxml.XmlException;
    import com.sleepycat.dbxml.XmlManager;
    import com.sleepycat.dbxml.XmlContainer;
    import com.sleepycat.dbxml.XmlDocument;
    import com.sleepycat.dbxml.XmlManagerConfig;
    import com.sleepycat.dbxml.XmlTransaction;
    import com.sleepycat.dbxml.XmlUpdateContext;
    import inter.DBInterface;
    import java.io.*;
    import java.util.Properties;
    import cp.CheckPointer;
    public class SaveMessageinDB implements DBInterface
         Environment myEnv;
         XmlManager myManager;
         XmlContainer myContainer;
         XmlTransaction txn;
         XmlContainerConfig cconfig;
         Properties properties;
         // CheckPointer cp;
         int Counter;
         public SaveMessageinDB()
              try
                   properties = new Properties();
                   properties.load(ClassLoader
                             .getSystemResourceAsStream("Aggregator.properties"));
                   setXmlEnvrionment();
                   setXmlManager();
                   setXmlContainer();
                   // cp = new CheckPointer(myEnv);
                   // cp.start();
                   // System.out.println("Checkpointer started....");
                   Counter = 0;
              } catch (Exception ex)
                   ex.printStackTrace();
         public void saveMessage(String docName, String content) throws Exception
              addXMLDocument(docName, content);
         public void setXmlEnvrionment()
              try
                   File envHome = new File(properties.getProperty("DATABASE_LOCATION"));
                   EnvironmentConfig envConf = new EnvironmentConfig();
                   envConf.setAllowCreate(true); // If the environment does not exits,
                   // create it.
                   envConf.setInitializeCache(true); // Turn on the shared memory
                   // region.
                   envConf.setCacheSize(100 * 1024 * 1024); // 100MB cache
                   envConf.setInitializeLocking(true); // Turn on the locking
                   // subsystem.
                   envConf.setInitializeLogging(true); // Turn on the logging
                   // subsystem.
                   envConf.setTransactional(true); // Turn on the transactional
                   // subsystem.
                   // envConf.setRunRecovery(true); // Turn on run recovery
                   // envConf.setTxnNoSync(true); // Cause BDB XML to not synchronously
                   // force any log data to disk upon transaction commit
                   envConf.setLogInMemory(true); // specify in-memory logging
                   envConf.setLogBufferSize(60 * 1024 * 1024); // set logging size.
                   // envConf.setTxnWriteNoSync(true);
                   // This causes logging
                   // data to be synchronously written to the OS's file system buffers
                   // upon transaction commit.
                   envConf.setMultiversion(true); //Turn on snapshot isolation
                   envConf.setLockDetectMode(LockDetectMode.DEFAULT); // Reject a
                   // random lock
                   // request
                   // myEnv = new Environment(envHome, null); //To adopt Environment
                   // already set by others
                   myEnv = new Environment(envHome, envConf);
                   System.out.println("Environment created...");
              } catch (Exception ex)
                   ex.printStackTrace();
         // All BDB XML programs require an XmlManager instance.
         // Create it from the DB Environment, but do not adopt the
         // Environment
         public void setXmlManager()
              try
                   XmlManagerConfig mconfig = new XmlManagerConfig();
                   mconfig.setAllowAutoOpen(true);
                   mconfig.setAdoptEnvironment(true);
                   mconfig.setAllowExternalAccess(true);
                   myManager = new XmlManager(myEnv, mconfig);
                   // myManager = new XmlManager (mconfig);
                   System.out.println("Manager created...");
              } catch (Exception ex)
                   ex.printStackTrace();
         public void setXmlContainer()
              try
                   cconfig = new XmlContainerConfig();
                   cconfig.setNodeContainer(true);
                   cconfig.setIndexNodes(true);
                   cconfig.setTransactional(true); // set transaction need an
                   // cconfig.setAllowValidation(false);
                   // environment
                   // cconfig.setReadUncommitted(true); // This container allow
                   // uncommitted read (able to read dirty data and not set a deadlock
                   // cconfig.setMultiversion(true);
                   myContainer = myManager.openContainer(properties
                             .getProperty("DATABASE_LOCATION")
                             + properties.getProperty("CONTAINER_NAME"), cconfig);
                   System.out.println("Container Opened...");
              } catch (XmlException XmlE)
                   try
                        myContainer = myManager.createContainer(properties
                                  .getProperty("DATABASE_LOCATION")
                                  + properties.getProperty("CONTAINER_NAME"), cconfig);
                        System.out.println("Container Created...");
                   } catch (Exception e)
                        e.printStackTrace();
              } catch (Exception ex)
                   ex.printStackTrace();
         public void addXMLDocument(String docName, String content)
              try
                   txn = myManager.createTransaction(); // no need to create
                   // transaction. auto commit
                   // by the environment
                   XmlDocumentConfig docConfig = new XmlDocumentConfig();
                   docConfig.setGenerateName(true);
                   docConfig.setWellFormedOnly(true);
                   myContainer.putDocument(txn, docName, content, docConfig);
                   // commit the Transaction
                   txn.commit();
                   System.out.println("documents added.....");
                   Counter++;
                   System.out.println("Document no: " + Counter);
                   txn.delete();
              } catch (XmlException ex)
                   try
                        System.out.println("Occuring in addXMLDocument");
                        ex.printStackTrace();
                        txn.abort();
                   } catch (DatabaseException DbEx)
                        System.err.println("txn abort failed.");
         public void cleanup()
              try
                   if (myContainer != null)
                        myContainer.close();
                   if (myManager != null)
                        myManager.close();
                   if (myEnv != null)
                        System.out.println("All cleaned up done..in sm");
                        myEnv.close();
              } catch (Exception e)
                   // ignore exceptions in cleanup
    }Thanks!

  • What are the solutions offered to handle length based or mill products?

    We are on 11.5.10. Current version treats beams as each, we have 30 feet beams, 20 feet beams etc.
    We do not want to set-up different items for each length of beam.
    We need ability to tell we have 10 pieces of 26 feet beams in inventory.
    Currently we can only tell we have 260 feet of beams.
    Current solution treats it discretley. We need ability to sell length based items, receive length based items, do inventory management based on length based items.
    a) What are the solutions offered by Oracle in latest releases for Length based products or for Mill products.
    b) If there are any solutions offered by Oracle to handle length based or mill products, can these be back ported to Oracle 11.5.10?

    At the time of entering orders, item inquiry, receiving, inventory transfers etc...You can enter the lot attributes during receiving because you create a new lot number.
    On Item onhand inquiry, you can enter lot context and lot attributes to limit your search to specific lots.
    You may have to write personalizations on other screens.
    Hope this helps,
    Sandeep Gandhi

  • Are the Imacs good for Graphic Design/Illustration work?

    I work as a digital illustrator so I spend all day at a monitor. I'm thinking of replacing my powerbook and am leaning towards a 20" Imac.
    Does anyone else here use their Imac for professional graphic design or illustration work? How does it measure up?
    I've seen many posts about poor screen quality. Should I steer clear of the Imac, or are the screens adequate for design work? At the moment I use a 17" Apple studio display (the old stripey framed kind) which is fine for my needs. How does the Imac screen compare to this?
    Is it easy to connect an external monitor (I'd use my Apple Studio Display as a 2nd screen) and can you set them up so they create a giant screen area - i.e. not just 'mirrored'? I already have a VGA to DVI adaptor so presumably this is all I'd need to hook up my 2nd screen?
    Is the 24" Imac screen quality much better than the 20"?
    Sorry, so many questions! Any advice or opinions much appreciated - Many thanks.

    To answer your first question yes they are great for digital illustration. However this will depend on how color accurate your work requires. The only downside I have found with the 20" iMacs is narrow viewing angles. This will be nothing new to you since you have the older 17" studio display. The 24" iMacs are all around absolutely stunning and have much better viewing angles however I have seen a lot of them(including mine) that have some degree of uneven back lighting. If you live anywhere near an Apple store or reseller I would recommend that you go into the store and actually use both of the machines for some period of time and see for yourself how you like it. Bring some of your illustrations from home on a flash drive to see how they look. Otherwise IMO these machines are superb. I love my 24" and it runs CS3 Apps amazingly fast.
    If your 17" studio display has the ADC(Apple Digital Connector) then you will have to purchase the power supply adapter to make it work. If you are unsure if it qualifies or not just look and see if your display has it's own power plug. If not then you will need this adapter for $99. IMO it's not worth it as you could put the $100 bucks toward a new display.
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=7E4 EB91E&nplm=M8661LL/B
    George

  • Are the iMacs safe yet? i

    Will apple let us know when they have moved beyond the agere chipset? Any word on when it will be safe to purchase a new iMac that will work with Logic 8?

    As a shareholder, I'd encourage you to make your voice heard! This is a serious issue, and there are quite a lot of customers affected by this issue.
    I just took two MacBook Pros (a previous gen. model and my new Agere-based model) and a Presonus Firebox interface to my local Apple Store to demonstrate the issue. Within 10 minutes, every employee in the store was gathered around in shock when I showed them the problem on every Apple laptop in the store. The older model worked fine, as did Mac Pro towers, but MacBooks and MacBook Pros simply do not see Firewire audio interfaces made by most companies. This makes them utterly useless as Firewire audio solutions.
    Feel free to contact me for more technical info - I've done quite a bit of research on this issue and I won't bore anyone with it here. Suffice it to say Apple has made a huge mistake with their current line of portables, and as a pro user, I hope and pray they make it right for current (and future!) customers...

  • Are the Yellow banding iMac problems fixed?

    I read the posts about the iMac screen flickering, tearing, and having yellow bands on it. I haven't been able to find anything though that says the problem has been resolved. Are the iMacs safe to buy now?
    Thanks

    I just purchased a new 27" i7 iMac last Month and the screen is flawless. I'd say it's safe to buy...Unless you want to wait for the iMac refresh that may be coming up soon..

  • What are the solutions offered by Oracle to handle length based products

    We are on 11.5.10. Current version treats beams as each, we have 30 feet beams, 20 feet beams etc.
    We do not want to set-up different items for each length of beam.
    We need ability to tell we have 10 pieces of 26 feet beams in inventory.
    Currently we can only tell we have 260 feet of beams.
    Current solution treats it discretley. We need ability to sell length based items, receive length based items, do inventory management based on length based items.
    a) What are the solutions offered by Oracle in latest releases for Length based products or for Mill products.
    b) If there are any solutions offered by Oracle to handle length based or mill products, can these be back ported to Oracle 11.5.10?

    Please do not create duplicate posts across the forums -- What are the solutions offered to handle length based or mill products?

  • XP SP 2 and Flight Sim 2004 vs Bootcamp = no audio

    Hi I've got a 27" imac and have installed XP SP2. I'm running OS 10.6.2 and have installed Microsoft Flight Sim 2004. I can't get any audio when running the flight sim. Have managed to get basic sounds in windows by changing one setting which was an improvement but thats it.
    I'm also wondering what screen res would be the best choice in Microsoft Flight sim. They give you about 1 million options. What is best? Can anyone help?

    Well, I'm making progress - of a sort.
    The Sharp connects via AV (Video + 1 audio channel) to the Sony Z1P. Fine
    The Z1P "captures" the Sharp's footage to tape (it seems the Sony won't "pass-thru" directly - oh, well...). Video AND audio are faithfully recorded, as they play back rather well on the Z1P's LCD screen.
    Now, the Z1P uses what appears to be a proprietary Sony "iLink" cable - it looks like a 4-pin to 4-pin IEEE1394 cable - and my computer's firewire input socket is a 6-pin. Tried a 4-pin to 6-pin cable - didn't work. Couldn't identify the camera. There must be something about the Sony iLink cable, huh?
    So, I have an older laptop with a 4-pin socket, and grab the footage that way. Fine, but the laptop can't keep up and drops frames all over the place. At least I 've got both video and audio, now.
    I was capturing using WMM at DV-AVI running at 25MB/sec and that's obviously too much for this little laptop. WMM has a lot of slow bandwidth options, ranging from 28.8KB/sec to 768KB/sec, then DV-AVI at 25MB/sec - nothing in between.
    I think I'm going to buy a firewire adapter with a 4-pin socket.

  • Flight Sim keyboard shortcuts

    Has anyone got the keyboard shortcuts / commands for Flight Sim on an iMac running Windows?  As in Bootcamp Window.
    I looked an someone spoke aobut comcast, but that's not the case here.
    It used to be F1-F4 did engine speeds, and F5-F8 did flaps, but doesn't work with the newer iMac aluminum keyboard.  (which btw I don't like, too flat and I get zapped touching it after walking across the room.)
    Cheers
    Tom

    perhaps this thread or others in the "more like this" section next to it might help : https://discussions.apple.com/thread/3167143?start=0&tstart=0.  If you have already read them, I'm sorry, I am not a mindreader, which is also why I did not know that you already searched the Flight Simulator 9 or FX forums.

  • Where are the interfaces, such as ddi_intr_add_handler, in Solaris 10?

    Hi:
    I am writing a PCI driver in Solaris10. There are many new DDI/DKI interfaces for interrupt handler, such as ddi_intr_add_handler in document. But I can not find them in my system. My OS is Solaris10. Where are the interfaces for interrupt handler?
    Please help.

    in file /include/sys/ddiintr.h
    Edited by: cnwhshane on Oct 13, 2008 7:39 PM

  • Does the sprint unlocked iPhone works in Pakistan and what are the charges etc.

    Does the sprint unlocked iPhone works in Pakistan and what are the charges etc.

    Verizon iPhone 4S SIM UNLOCK Tutorial
    SGMD1 Oct 19, 2011 9:40 PM  
    Currently Being Moderated
    Verizon has confirmed (here and here) they WILL unlock the SIM on the iPhone 4S, allowing for use of local SIM cards while traveling abroad (no word yet on whether this will allow for use on AT&T and T-Mobile.) This is different than the jailbreak unlocking method; SIM unlocking through Verizon is permanent and will not affect your warranty in any way.
    1. Meet the following requirements:
    * Must be a Verizon Wireless customer.
    * The iPhone 4S being unlocked must be active on a Verizon Wireless line of service.
    * The line of service must be active at least 60 days.
    * The line of service must be in good standing for the past 60 days.
    * Only one SIM Unlock per line every 10 months.
    If you don't meet one or more of the above requirements, call anyway. You may still get lucky.
    2. Insert a foreign SIM into the SIM card slot on the side of your phone (only required to confirm that the unlock is successful.)
    3. Call 1-800-711-8300 (Verizon Global Support) and ask the representative for a SIM unlock. Occassionally a representative may not know exactly what you are referring to; make sure you are not transferred to a different department. You are in the right place. Explain that they should have a walkthrough on how to do this, and that it allows for the use of local, non-Verizon SIM cards while traveling abroad.
    4. Get confirmation from the rep that the unlock has been applied to your account, then check your phone to make sure it recognizes your SIM and can connect (if successful it will roam on AT&T, assuming you are calling from the USA.) You will NOT see an unlock confirmation in iTunes as that is for a factory-applied unlock only.
    5. Enjoy your new unlocked iPhone 4S!
    ****ALSO I JUST SPOKE WITH NICHOLE (VZN GLOBAL SUPPORT) REGARDING IF THE IPHONE 4S HAS TO BE ACTIVE AFTER SIM UNLOCK AND THE ANSWER IS: NO!

  • I am wondering about transferring my pc date to my new iMac.  I know there is a migration assistant, but I have multiple drives in my pc.  Will the migration assistant be able to handle this?

    I know there is a migration assistant, but I have multiple drives in my pc.  Will the migration assistant be able to handle this?  I'm going to be trying to move the date to a new imac 27' with fusion drive.

    the following set of instructions is a little longer, so you might want to print it out and have it handy
    Step 1 - PC
    If your PC already is connected to the Internet, hold down the Windows button on
    your keyboard and simultanously press R. Into the opening window enter "cmd" (without
    the quotation marks). A command line will open, enter "ipconfig" (again without the
    quotation marks) at the prompt. Now find the section labelled "Ethernet-Adaptor" and
    note the values for IP-Address, Subnet-Mask and Default-Gateway on a sheet of paper
    If your PC is not already connected to the internet, you need to manually configure its IP address.
    open Network and Sharing Center
    do a right click on Ethernet and select Properties
    in middle of the screen there is a box labelled "This connection uses the following items"
    out of this box select "Internet Protocol Version 4 (TCP/IPv4)"
    click on the Properties button in the right corner
    Into the window "Use the following IP address" enter the following values
    IP-Address: 192.168.0.1
    Subnet-Mask: 255.255.255.0
    Default-Gateway is the IP-Address of your Router. This value is needed for internet connection, for the file sharing setup only this value can be left empty.
    Step 2 - Mac
    If your Mac already is connected to the internet, it is likely that it has automatically receive the necessary parameters from your router and therefore should be in the same network as your PC. To be on the safe side, you can check this by
    open System Preferences
    select Network
    choose Ethernet from the panel on the left side of the window
    click on Advanced
    click on TCP/IP
    compare the values for IP-Address, Subnet-Mask and Default-Gateway with those you wrote down earlier.
    If both PC and Mac have identical numbers in the first three parts of the IP-Address, you are set.
    If your Mac is not already connected to the internet, you need to manually configure its IP-Address as well.
    In the TCP/IP window you have just opened select "Manually" from the drop down menu "Configure IPv4:"
    Enter the following values
    IP-Address: 192.168.0.2
    Subnet-Mask: same as with PC
    Default-Gateway: same as with PC
    Step 3 - Activate File Sharing on PC
    open Control Panel
    select Network and Internet
    select Network and Sharing Center
    on the left panel select change advanced sharing settings
    in the middle of the new page enable turn on file and printer sharing
    Step 4 - Activate File Sharing on Mac
    open System Preferences
    select Sharing
    set check mark next to File Sharing (green circle appears on the right side next to File Sharing:)
    click on Options:
    set check mark next to Share files and folders using SMB
    in the listbox under the text Windows File Sharing make sure there is a check mark next to your account name
    Step 5 - Create a share on your PC
    In Explorer select the folder you wish to share
    do a right click on that folder and select "Share with"
    choose "Specific people"
    a new window opens. there select your Windows username (usually the first in the list)
    if you plan to copy from Windows to Mac only, it would be sufficient to grant Read permission only, but, since most likely you are the only person to access that share and certainly do not plan to sabotage yourself, Read & Write permission is ok too.
    finally click on "Share"
    Step 6 - Create a share on your Mac
    Once the check mark next to your account name is set (see above) your home directory is automatically set as a share.
    Step 7 - Connect your PC to your Mac-Share
    do a right click on the network icon which resides on your desktop or in the left
    panel of every Explorer window
    Select Connect Share
    in the text box next to Folder: enter \\<ip-address-of-your-mac>\<your-osx-username>
    if you are using the same username and password on both Windows and OSX click on "Finish",
    if not set the check mark next to "Connect using different credentials" afterwards click on "Finish" A new window will open where you enter username and password that you are using with OSX
    Step 8 - Connect your Mac to your PC-Share
    hold down the command key and press K simultanously or in Finder click on Go in the menu at the top of your screen and select "Connect to Server"
    in the Window that opens enter smb://<your-windows-username>:<your-windows-password>@<ip-address-of-your-PC/<y our-windows-username>
    or
    smb://<ip-adress-of-your-PC/<your-windows-username> you will be asked to enter your Windows username and password in popup window
    Now you have both computers connected to each other. Each will provide you access to your home directory of the other computer. Open a second Explorer or Finder window with your local home directory and start copying

  • IMac indicating Password for Gmail is incorrect but iPhone and iPad are both able to connect to gmail account....how do I correct this on the iMac?

    iMac indicating Password for Gmail is incorrect but iPhone and iPad are both able to connect to gmail account....how do I correct this on the iMac?

    Try This:
    Open up the imessage app on your Imac.  Once you have it opened go to top left corner of your screen next to the apple picture and the word MESSAGES appears. Click on it then click on preferences and uncheck your husbands phone and number and or any other numbers which are checked. I had same problem this fixed it. Also if you wanted to you can open up your own Apple account, but that's not really necessary. My wife and I both share the same as you do

Maybe you are looking for

  • Dual booting Arch and Ubuntu

    Hi, I would like to dual boot Arch and Ubuntu using GRUB2. I already have Arch, set up as it's described in the Beginner's Guide, with GRUB2 installed. How would I go about dual booting Ubuntu, preferably without overwriting the existing bootloader?

  • Users not able to attach any attachmemts to SAP using SO01

    Hi All, Our production system is not allowing any user to attach any documents to SAP system using SO01 tcode. We have this error : [Include file in PC application] and [error while import]. Our R/3 system is ECC 5.0 with Oracle and HP unix. replies

  • Periodic task in web container best practice

    Hi All, My wep application has to monitor a specific directory on the hard disk for new incoming files (I know about the difficulties here - that's not the problem). Right now I'm planning to write a servlet which does nothing more but create a java.

  • Resource manger

    Hi All, I want to use resource manger in my database. The requirement is as below: Database version : 10.2.0.4 No. of CPU's : 30 The batch user runs the batch during the daytime window, and we want to restrict only the batch user to user say 30% CPU

  • Purchased Photoshop/Lightroom deal...can use Photoshop no prob but not Lightroom

    purchased photoshop/lightroom deal...can use photoshop no prob but lightroom says I have 0days remaining on my trial and I cannot open it. It is asking for serial# but I don't think I got one...I searched my emails and I didn't find anything. I've tr