64 bits Java 7 on 64 bits ColdFusion 9.0.1?

Does any knows if ColdFusion 9.0.1 (64 bits) support JDK 7 (64 bits).
One some of our servers, when we start ColdFusion Application service, we get "error loading ...jvm.dll". The path is correct and the jvm.dll file does exists, we also confirmed that the jvm.dll is 64 bits.
On other servers, it works fine (same architecture). We use non-priv service account to run ColdFusion.

Yeah, 9.0.1 is old
We rollbacked to 6u35 until we resolved that issue. Other servers run fine with 7u07, need to figure out it why that sole server don't like the Java7u07. All of the servers are 64 bits.
I am thinking that someone might be not following instructions when setting up the servers, missing some rights But event viewer didn't say anything bad.
Java 6 EOL is soon so need to figure out fast.

Similar Messages

  • SetDiagnosticDirectory(Diagnostics.java:54) [32-bit java on 64-bit machine]

    On 64-bit LucidLynx Linux, If I run Oracle SQL Developer using 64 bit java, all is fine.
    If I use 32-bit java, it doesn't start up and I get this fatal error:
    java.lang.IllegalArgumentException: Cannot create <pwd>/?/.sqldeveloper/system1.5.5.59.69/o.ide/diagnostics
         at oracle.javatools.logging.Diagnostics.setDiagnosticDirectory(Diagnostics.java:54)
         at oracle.ide.IdeCore.startupImpl(IdeCore.java:1293)
    <pwd> represents the current directory that I am in. That question mark appears as is.
    If I run this as `sudo`, it works, cause it gets past the "permissions" problem. (but that's a red herring).
    It should be trying to create the ".sqldeveloper/..." directory under my home directory, not in the present
    working directory, and certainly not with a question mark as another directory name.
    It appears that when using the 32 bit java (on a 64 bit machine), that whatever function
    Oracle is using/spawning to determine the user and its
    home directory, is failing, and the code just says, plop the diagnostics directory right here.
    How does one debug this?
    (I tried running `jdb` but setting break points doesn't seem to have an effect)
    ( Aside: on a 32-bit LucidLynx Linux machine, using 32-bit java, SQL Developer works fine.
    I have all the necessary 32-bit libs, as we use 32-bit Java on 64 bit machines for other apps as well.)

    I'm pretty new to java and this is the first
    first time i'm making a post here. I want to know, if
    i write a java program in a 32 bit environment will
    the same code work in a 64 bit Environment too. Does
    java abstract the architecture too?Only if there's a JVM available for the target environment.
    Note for example that Sun supports 64 bit AMD processors but not Intel. But when they do your Java code will work without changes.

  • Force 32 Bit Java

    My bank has an application that will allow me to do deposits online by scanning the checks. When I try to use it, it says I have 64 bit Java and they are a 32 bit Java ap and to select 32 bit Java.
    So I went to the Java control panel and changed the order to check for 32 bit first then 64 bit.
    Both are checked. When I try to de-select the 64 bit Java the 32 bit also de-selects.
    How do I specify that I want only 32 bit Java?

    Try This, I think it might fix your problem:
    Go - > Utilities -> java preferences
    Click and Drag the
    32bit Java
    and Bring it over the 64 Bit Java
    That should make it look like:
    32bit Java
    64bit Java
    which should launch 32bit Java first.. then 64bit.
    You can also choose to disable 64bit altogether though I find it better to just disable it.
    You may have to restart your computer.
    Let me know if this helps!

  • Java 8 64 bit on Windows with NSS for FIPS 140 compliance

    I have asked this question on Stackoverflow but I am beginning to think that this may be a better forum to ask.
    According to JEP 131, Java 8 should provide a PKCS#11 Crypto provider for 64 bit Windows:  https://blogs.oracle.com/mullan/entry/jep_131_pkcs_11_crypto.
    With that in mind, I downloaded and built both 32 and 64 bit versions of NSS with NSPR using these instructions:  https://developer.mozilla.org/en-US/docs/NSS_Sources_Building_Testing
    I downloaded Java 8 for Windows 64 build b118, configured the java.security file and created a nss.cfg file:
    Excerpt from java.security file:
    security.provider.1=sun.security.provider.Sun
    security.provider.2=sun.security.rsa.SunRsaSign
    security.provider.3=sun.security.ec.SunEC
    security.provider.4=com.sun.net.ssl.internal.ssl.Provider SunPKCS11-NSS
    security.provider.5=com.sun.crypto.provider.SunJCE
    security.provider.6=sun.security.jgss.SunProvider
    security.provider.7=com.sun.security.sasl.Provider
    security.provider.8=org.jcp.xml.dsig.internal.dom.XMLDSigRI
    security.provider.9=sun.security.smartcardio.SunPCSC
    security.provider.10=sun.security.pkcs11.SunPKCS11 /devel/nss.cfg
    From my nss.cfg file:
    # Use NSS as a FIPS-140 compliant cryptographic token
    # SunPKCS11-NSS
    name = NSS
    #32 bit
    #nssLibraryDirectory = C:\devel\nss\nss-3.15.3.1\dist\WINNT6.1_DBG.OBJ\lib
    #64 bit
    nssLibraryDirectory = C:\devel\nss\nss-3.15.3.1\dist\WINNT6.1_64_DBG.OBJ\lib
    #non FIPS
    #nssDbMode = noDb
    #attributes = compatibility
    #FIPS
    nssSecmodDirectory = c:\devel\fipsdb
    nssModule = fips
    I ran the test suite that comes with NSS and it looks like all of the encryption/decryption tests passed (did have some issues with the tests that required hostname/domainname but that has to do with the Windows environment).
    So here is the problem. I run my test encryption app on Java 7 32 bit with the 32 bit version of NSS and everything works great. When I attempt to run Java 8 64 bit with 64 bit NSS I get the following error:
    java.security.ProviderException: Could not initialize NSS
    at sun.security.pkcs11.SunPKCS11.<init>(SunPKCS11.java:212)
    at sun.security.pkcs11.SunPKCS11.<init>(SunPKCS11.java:103)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at sun.security.jca.ProviderConfig$2.run(Unknown Source)
    at sun.security.jca.ProviderConfig$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.security.jca.ProviderConfig.doLoadProvider(Unknown Source)
    at sun.security.jca.ProviderConfig.getProvider(Unknown Source)
    at sun.security.jca.ProviderList.getProvider(Unknown Source)
    at sun.security.jca.ProviderList.getIndex(Unknown Source)
    at sun.security.jca.ProviderList.getProviderConfig(Unknown Source)
    at sun.security.jca.ProviderList.getProvider(Unknown Source)
    at java.security.Security.getProvider(Unknown Source)
    at sun.security.ssl.SunJSSE.<init>(Unknown Source)
    at sun.security.ssl.SunJSSE.<init>(Unknown Source)
    at com.sun.net.ssl.internal.ssl.Provider.<init>(Unknown Source)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at sun.security.jca.ProviderConfig$2.run(Unknown Source)
    at sun.security.jca.ProviderConfig$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.security.jca.ProviderConfig.doLoadProvider(Unknown Source)
    at sun.security.jca.ProviderConfig.getProvider(Unknown Source)
    at sun.security.jca.ProviderList.getProvider(Unknown Source)
    at sun.security.jca.ProviderList$ServiceList.tryGet(Unknown Source)
    at sun.security.jca.ProviderList$ServiceList.access$200(Unknown Source)
    at sun.security.jca.ProviderList$ServiceList$1.hasNext(Unknown Source)
    at javax.crypto.KeyGenerator.nextSpi(KeyGenerator.java:323)
    at javax.crypto.KeyGenerator.<init>(KeyGenerator.java:158)
    at javax.crypto.KeyGenerator.getInstance(KeyGenerator.java:208)
    at STSAESEncryption.generateKeyWithGenerator(STSAESEncryption.java:74)
    at Main.main(Main.java:24)
    Caused by: java.io.IOException: %1 is not a valid Win32 application.
    at sun.security.pkcs11.Secmod.nssLoadLibrary(Native Method)
    at sun.security.pkcs11.Secmod.initialize(Secmod.java:210)
    at sun.security.pkcs11.SunPKCS11.<init>(SunPKCS11.java:207)
    ... 36 more
    Has JEP 131 been implemented with Windows/Java 64 bit as of b119?  If so has it been verified to work with NSS or should I submit a bug report?  I did download the code and the error is occurring in the following block of code at the line in bold (also with the arrow by it):
    public synchronized void initialize(DbMode dbMode, String configDir,
            String nssLibDir, boolean nssOptimizeSpace) throws IOException {
            if (isInitialized()) {
                throw new IOException("NSS is already initialized");
            if (dbMode == null) {
                throw new NullPointerException();
            if ((dbMode != DbMode.NO_DB) && (configDir == null)) {
                throw new NullPointerException();
            String platformLibName = System.mapLibraryName("nss3");
            String platformPath;
            if (nssLibDir == null) {
                platformPath = platformLibName;
            } else {
                File base = new File(nssLibDir);
                if (base.isDirectory() == false) {
                    throw new IOException("nssLibDir must be a directory:" + nssLibDir);
                File platformFile = new File(base, platformLibName);
                if (platformFile.isFile() == false) {
                    throw new FileNotFoundException(platformFile.getPath());
                platformPath = platformFile.getPath();
            if (configDir != null) {
                File configBase = new File(configDir);
                if (configBase.isDirectory() == false ) {
                    throw new IOException("configDir must be a directory: " + configDir);
                File secmodFile = new File(configBase, "secmod.db");
                if (secmodFile.isFile() == false) {
                    throw new FileNotFoundException(secmodFile.getPath());
            if (DEBUG) System.out.println("lib: " + platformPath);
    --->   nssHandle = nssLoadLibrary(platformPath);
            if (DEBUG) System.out.println("handle: " + nssHandle);
            fetchVersions();
            if (supported == false) {
                throw new IOException
                    ("The specified version of NSS is incompatible, "
                    + "3.7 or later required");
            if (DEBUG) System.out.println("dir: " + configDir);
            boolean initok = nssInitialize(dbMode.functionName, nssHandle,
                configDir, nssOptimizeSpace);
            if (DEBUG) System.out.println("init: " + initok);
            if (initok == false) {
                throw new IOException("NSS initialization failed");
            this.configDir = configDir;
            this.nssLibDir = nssLibDir;
    Any help or advise about filing a bug report would be appreciated.
    Thanks,

    Had a few similar short system freezes, after installing Windows 8 x64 on 13” MacBook Pro Mid-2010 with BootCamp 5.0.5033.
    There is a suggestion that DisableDynamicTick may fix the problem: https://discussions.apple.com/message/21565295#21565295. There were similar topics at Microsoft forums: 1, 2, 3. It was said “that this will likely reduce system battery life, so it should be undone when you update your Windows build or if it doesn't resolve your issue”, and that “this problem is resolved in the release versions of Windows 8”.
    Another possibility is that there is indeed a buggy driver, within BootCamp 5.0.5033, or a 3rd party, like a wireless network driver in the following case http://answers.microsoft.com/en-us/windows/forum/windows_8-performance/system-fr eeze-randomly-after-installing-windows-8/49488183-26cf-4389-af21-a85dc366c99a?pa ge=2#LastReply.
    The problem has been noticeable on my MacBook, but not annoying enough yet to spend time troubleshooting. If you find a robust solution, using the links above or other method, it would be interesting to know.
    HTH

  • HT5367 How can I tell if I have 64 bit Java installed on my mac? I have something like Minecraft on it and I want to install 64 bit java on my mac. PLEASE HELP! Thanks!

    I just need a bit help on how to install 64 bit java, i searched on youtube for it but it came up with many that I don't know much about. Please recommend a video you guys trust or know about. thanks

    You can use 3rd party software such as Carbon Copy Cloner or SuperDuper! to create a bootable clone on an external drive.
    I use SuperDuper to create a clone. Yes, it's true the Recovery HD will need to be recreated after restoring a clone because neither of these softwares nor Time Machine backup that partition. It's really no big deal. You just reinstall Lion on top of itself after the restore and reapply any Software Updates including the 10.7.1 update. I've done this a few times with no issues.
    The Lion Recovery Assistant app creates an external Recovery HD on like a USB thumb drive, but it creates this using the Recovery HD from your Lion install. If the Recovery HD is missing, the app will not create one for you.
    EDITED:
    Create your bootable clone on an external drive.
    Create an external USB thumb drive with the Recovery HD using the Lion Recovery Assistant.
    Swap out hard drives.
    Boot from the USB Recovery HD thumb drive.
    Use Disk Utilities to create a new partition (Macintosh HD), format it with the GUID partition table and Mac OS Extended (Journaled).
    While in Disk Utilities, click your hard drive (not the new partition); then click the Restore button.
    The Source of your restore is the external clone you created. The Destination is the newly created Macintosh HD partition.
    Click the Restore button. The restore will take awhile depending on the size of the clone.
    After the restore, boot your system and it should boot into Lion.
    Reinstall Lion on top of itself to recreate the Recovery HD at the end of your Lion partition.
    Reapply Software Updates including the 10.7.1 update (if you want it).
    Hope this helps!

  • OPSC 12cR1 Install Error:no compatible version of 64-Bit java runtime exist

    The Full error msg from the 12cR1 installer script:
    Using Solaris sparc_64 Binaries
    localhost is alive
    warning: Jvm: System has greater version of 32-Bit java runtime (1.7.0_05) than
    the bundled version (1.7.0_02). However, no compatible version of
    64-Bit java runtime exists on the system. You can either choose to
    continue, in which case, the 64-bit support on the Enterprise
    Controller will be disabled or manually install the 64-Bit java runtime
    (1.7.0_05) and try again.
    Number of precheck info messages: 0, number of warnings: 1, number of errors: 0
    I saw that the 11g installer script had the same problem last year. Why is this still a problem?  How do I work around it?? The prior 11g workarounds did not work for me.
    My JAVA versions, both 32&64bit, are there:
    #java -d32 -version ; java -d64 -version
    java version "1.7.0_05"
    Java(TM) SE Runtime Environment (build 1.7.0_05-b06)
    Java HotSpot(TM) Server VM (build 23.1-b03, mixed mode)
    java version "1.7.0_05"
    Java(TM) SE Runtime Environment (build 1.7.0_05-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 23.1-b03, mixed mode
    Any help would be greatly appreciated. Thanks!!

    Ops Center bundles the Java runtime in the installation but it will not install it if there's a newer version already installed.
    In your case, you only have 32 bits version installed which is newer, so Ops Center cannot continue as you cannot install a lower version of the 64 bits.
    This will tell you the 32 bits version:
    # pkgparam SUNWj7rt VERSION
    You're probably missing the SUNWj7rtx - which is the 64 bit version.
    This will probably give you an error (this will check the 64-bit java version):
    # pkgparam SUNWj7rtx VERSION
    To see if you have it installed:
    # pkginfo | grep SUNWj7rtx
    To resolve this, you should install the same version in 64 bits (SUNWj7rtx) and then try the Ops Center installation again.

  • 64 bit Java 1.5 on  Windows Server 2003 64bit?

    I have search the Sun website, Google etc but I am unable to find a definitive statement as to whether Java 1.5.0 has support for 64 bit processing when run on on Windows Server 2003 64bit?
    There appears to be separate 64 bit versions available for down load on the Solaris platform but not on Windows Server 2003 64bit. Is there for a reason for this?
    If some one could clarify the situation it would be greatly appreciated.
    Regards Mike Kimber

    Actually I didn't and it?s the reason I asked the initial question. I found the table unclear. However the following footnote does suggest that 64 bit processing is supported natively on Windows Server 2003:
    3. Support for AMD64/EM64T 64-bit mode Windows introduced in J2SE 5.0 Update 2.
    Prior to Update 2, J2SE 5.0 supports AMD Opteron (64) Windows in this configuration.
    Whilst not categorically stating it, this would suggest that as of Java 5 Update 2, java supports 64 bit processing on 64 bit Intel chips?
    Regards Mike Kimber

  • Using 64-bit java on Solaris 10 x86

    Hello,
    I just got a new X2100 server and installed Solaris 10 on it. Everything's running fine and I installed the most recent x86 64-bit jdk 1.5 update on it. However, I can't find any detailed info on how to set the amd64 java binaries and env as the default.
    I had to manually prepend /usr/java/bin/amd64 to my path in order to get the 64-bit jvm to be recognized. And it does - when I type java -version it shows that it's the 64-bit server jvm. But, when I try to configure Resin 3.0.14, the configure output specifcally says there is no 64-bit java detected.
    So there's gotta be something I'm not doing right. Any help or suggestions would be greatly appreciated.
    Thanks,
    -jason

    On the x86 solaris 10 system I'm looking at there is
    a client VM
    /bin/java -client -version
    java version "1.5.0_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
    Java HotSpot(TM) Client VM (build 1.5.0_12-b04, mixed mode)
    and a server VM
    /bin/java -server -version
    java version "1.5.0_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
    Java HotSpot(TM) Server VM (build 1.5.0_12-b04, mixed mode)
    For the client the 64bit VM is still in development. I don't
    think there are dates established for that yet.
    If you can use the server VM, then you need to down
    load the 64bit binaries. Then you will see
    /bin/java -server -d64 -version
    java version "1.5.0_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
    Java HotSpot(TM) 64-Bit Server VM (build 1.5.0_12-b04, mixed mode)
    The downloads are at (look for the release you want)
    http://java.sun.com/javase/downloads/index.jsp
    Hope that helps.

  • Is it possible to use 32-bit firefox with 64-bit java plugin?

    Is it possible to use 32-bit firefox with 64-bit java plugin?
    I'd like to use 32-bit firefox and I already install 64-bit java plugin.
    Is that a right choice not to install 32-bit java plugin?
    Will these cause problem?
    Thanks in advance.
    Regards,
    Sean

    Nope - you need the 32bit Java to go with the 32bit Firefox if you want Java to run

  • 32 bit Java rather than 64??

    I used to be able to deposit my checks online with my PC. Hooked up seemlessly with my Epson printer. My Mac is asking for a 32 bit Java applet rather than the 64 bit. Apparently the bank system is designed for 32 bit only.  It didn't make any difference with the PC (using XP Prof).  Now I'm stumped.  How or can I select 32 rather than 64?  I'm kind of clueless when it comes to these kinds of things.

    Try changing the priority order within the Java Preference application. Try these steps:
    1) Do a spotlight search for "Java"  "Java Preferences" should show up. (to do a spotlight search, hold the command key and then click spacebar.
    2) Open the Java Preferences app.
    3) Drag the 32 bit Java SE to the top above the 64 bit version.
    Not sure if you'll have to re-start apps, or re-boot, but this may get you back up.  Good luck.
    Don

  • 32 bit java

    I am running ubuntu on an AMD 64 bit system. I have installed firefox as part of the distribution. I need to run a 32-bit java app with the 32-bit jre plugin. When I install the 32-bit jre plugin per http://www.oracle.com/technetwork/java/javase/manual-plugin-install-linux-136395.html the java plugin is not found (I don't see it listed in the Add-ons Manager and http://www.java.com/en/download/installed.jsp cannot verify it) however when I install the 64-bit jre the plugin is found and works correctly. Is there a way to install the 32-bit jre plugin given my current sysem configuration?
    Thanks

    Hello,
    Any specific reason why you need to run this application on a 32-bit JRE only. The 64-bit JRE will be able to run the applet / JWS application that you are trying to run.
    Also, does this applet / application have any specific dependency on the Sun JRE? Can you not use the IcedTea plugin for this?
    Thank you

  • 32 Bit Java Just Won't Work

    I need to install both 32 bit and 64 bit java on my computer to run a variety of different applications. 64 bit installed perfectly, but 32 bit just won't. I get the message:
    ERROR: Could not create java virtual machine.
    ERROR: A fatal exception occurred. The program will exit.
    What do I do to fix it?

    I'm having the same problem. I'm on a 1st Gen (June 2006) MacBook. I'm completely up to date on Software Update, but I can't get Java applets to display in any browser. I've checked Java Preferences, and I know that Java is installed on my computer. What gives?

  • 32-bit Java error with Navy Federal Credit Union eScan Deposit

    I am trying to do eScan Deposit. The first time it said it needed to download a Java applet, and I said yes, after the download was complete it still did not recognize the scanner. It gave me an error saying "This system does not support 64-Bit Java. Select 32-Bit Java". I verified with Apple Support that both 32 and 64-bit Java come with snow leeopard and the Java Prefs were correct. Could this be the printer, or is this a Navy Federal web site issue? Anyone know how to fix the problem? Thanks in advance. 

    The browser does not allow created files to be uploaded, it wants to manage that process. This worked fine for my windows latop, but I had the full HP driver installed. HP has not made one availabile yet for 10.7.2 and recommeds using the Apple drivers. I can do that fine for printing and scanning (with the Image software). But not with the application. The Credit Union sais it "should work with MAC" provided I have the right printer driver and TWAIN compliant scanner. The HP 7780is TWAIN compliant. HP recommended gong to www.twain.org and downloading TWAIN s/w for MACs. I started to, but the s/w was dated 2002 and won't help for newer MAC operating systems.

  • Possible/supported to use portal 7.1 with 64 bit java?

    Hi!
    Our portal machines in productive environment have 16 GB ram and I would like to use them. But 32 bit java does not support this. (Linux platform)
    So, the simple question is:
    Can I install a 64 bit JDK (e.g. 50 Update 12) and run portal with it?
    1) Does it work?
    2) Is it supported?
    Please note that I have no pressing urge to upgrade at the moment, 3GB heap seem to be sufficient for now but I just want to know. Also if there are future plans to allow this...
    Thanks, Chris

    Hello Martin,
    The E-commerce 5.0 guide for ERP, says that the minimum version supported is 4.6C with the specific patch level version. We had issues initially with the TREX 7.0 installation on 64 bit windows ( lot of modifications have to be done manually here).
    But now TREX 7.0 is working fine and i can see the replication happeing from R/3 4.6C. We are configuring the webshops and doing all the XCM settings currently so, would be able to tell in a days time, if  it works for us or not.(with 4.6C).
    Thanks,
    Dipender Singh

  • 64-bit firefox on ubuntu 11.04 crashes trying to run 32-bit java applet, should this be possible?

    on 64-bit Ubuntu installation I need to be able to run a 32-bit java applet within browser. If this is possible, how? With icedtea6 plugin (for 64-bit jre) firefox crashes when applet first starts to run.
    11.0+build1-0ubuntu0.11.04.1

    Hi,
    You can try to install the Oracle Java via the Ubuntu Software Manager/Update Manager/PackageKit/Package Manager, if it is an option. Please note that you may have to temporarily disable the IcedTea plugin in '''Tools '''('''Alt '''+ '''T''') > '''Add-ons''' > '''Plugins '''to prevent conflicts when playing Java content in Firefox. Posting in the [http://ubuntuforums.org/ Ubuntu forums] would also be very helpful.

  • 64 Bit Java is slower than 32 Bit.

    I was running a Linux 64 JDK 1.5 JVM, and doing large software builds.
    The ant builds, which would involve some file operations and come javac compiling took about 6:30 to complete. After changing my JVM to the 32 bit version they completed in 4:15.
    Is the 64 bit Java support really so bad?

    That wasn't the case here tho', no EXS instances at all in this project.
    I tried clearing some caches and that seemd tp make it worse, so that when opening in 64bit, Logic would hang and say: Searching for Audio Unit plug-ins (Apple: AUNet Receive). Then eventually it would load.
    But none of this would happen in 32bit mode, just a normal load, very fast.
    So I reinstalled Logic update 9.1.7 and that seemed to sort it out, at least I'm back to where Logic loads slowly in 64bit mode, without any "Searching for ..." messages.
    Any more guidance appreciated.

Maybe you are looking for

  • Swiftdove won't open links in Firefox

    When I click the links they won't open in Firefox. Preferred Applications has /usr/lib/firefox-3.0.1/firefox %s as my custom browser Here is the "~/.swiftdove/e8ftools5.default/pres.js" of Swiftdove. You'll notice that I've attempted to route it to "

  • This page have a lot of BUG.

    In the fallowing web page, the "Supported Product name" have a lot of wrong. example: "iPod shuffle 第 1 代" should be "iPod nano 第1代", "iPod shuffle 第 2 代 (铝)" should be "iPod nano 第 2 代 (鋁)" Please remenber: Should be useing Tredictional Chinese in T

  • Formatting a Double to a String for Swing output

    Hi, I'm new to Java and I'm working on a project with AWT & Swing. I'm trying to read in a user entered number, convert it to a double, work on it and then output the String value of the result with only two decimal places. The code I have is: public

  • Forms 10g not supporting Analytical functions

    Hi all i try to use analytic funtion like      row_number() over (partition by uuid order by timesheet_acct) rn but form did not compile this while when i run the same analytic function in SQL prompt it runs fine. is forms support Analytical function

  • JMS servers' data failover

    hi, In a cluster with two managed servers (SRV1,SRV2) each one running its own JMS server and distributed queues when one server goes down while some producer still sends messages in a normal circumstances the producer will be reconnected to another