Java app on 64 bit Windows 2008

I need help finding the solution to a problem that I'm having with an java application that I'm running on 64 bit Windows 2008 Server for a P to V, physical to virtual server migration. My application has been running fine on Windows 2003 32 bit OS. Windows 2008 Server seems to be causing my applicaton to issue file copy errors (null value) for a text file that is a basic listing of a directory, nothing large or arcane. Also, the application does not move files from folders designated in the properties file. I gave admin access to all resources the application requires. I'm stuck at a standstill. I installed jdk1.6.0_26 and modified the PATH environment variable by adding the following: C:\Program Files\Java\jdk1.6.0_26\jre . I also installed the 32 and 64 bit version of jre 6_26 to no avail. Any and all suggestions are welcome. Thanks.

user7356290 wrote:
I need some clues like what .dll's should be registered throught the Windows GAC. That has absolutely nothing to do with the problem you described.
You stated that your application is running.
If a dll fails to load then you will get an exception that specifically indicates something like that or optionally you will get some horredous exception that means nothing. Or the VM will not run at all.
And unless your java code is eating exceptions you are not getting any exceptions. If your code is doing that then your java code is wrong and the solution is to fix the java code so it does report the exceptions.
Presuming that you are not eating exceptions and that you are not getting exceptions, since you didn't state you had any, it means it has nothing to do with dlls.
It could be a permission problem, but that would again suggest that you are eating exceptions.

Similar Messages

  • Issue while installing idm 8.1.1 gateway on 64 bit windows 2008 R2

    Hi
    We have issue in installing idm 8.1.1 gateway on 64 bit windows 2008 R2
    C:\Program Files (x86)\IDM\gateway>gateway -i
    An error occured while trying to install the service: Input/output error
    Sun notes: if you're running 64-bit Windows 2008, you need the JDKTM Version 6 Update 12 and later.
    But this java version should be there in Gateway server(windows 2008) or idm installed server?
    We don't have java installed on gateway server. is this causing issue?
    please let us know
    Thanks

    I may have found a workaround. Can you try to change the "compatibility mode" in 2008 R2 to "Windows XP SP3" and see if it will install?
    Admittedly I have not done this myself so I'm not entirely sure where or how it's done, but I have confirmation it resolves the issue from others who have faced it.
    Edited by: user12611524 on May 2, 2011 5:11 PM

  • Got exception when running CrystalReportViewer on 64 bit Windows 2008

    We have a client/server app built with c#, .NET2, CR2008 .net runtime SP2, and VS2008. The smart client hosts a CrystalReportViewer, which consumes the ServerFileReportService.
    The client on XP, 2003, Vista, and 32 bit Windows 2008 works fine with 32 bit Windows 2008/2003 server. But the client on 64 bit Windows 2008 throws the following exception,
    EXCEPTION >>
    IndexOutOfRangeExceptionMessage: Index was outside the bounds of the array.
    Source: CrystalDecisions.Windows.Forms
    TargetSite: System.String GetResourcePath()
    StackTrace:
       at CrystalDecisions.Windows.Forms.ParameterPromptControl.GetResourcePath()
       at CrystalDecisions.Windows.Forms.ParameterPromptControl.BuildPromptingRequestContext(PromptingHTMLFeedback feedback)
       at CrystalDecisions.Windows.Forms.ParameterPromptControl.BuildPromptingRequestContext()
       at CrystalDecisions.Windows.Forms.ParameterPromptControl.StartPromting()
       at System.Windows.Forms.Control.OnVisibleChanged(EventArgs e)
       at System.Windows.Forms.Form.OnVisibleChanged(EventArgs e)
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Edited by: Frank88 on Oct 9, 2009 8:55 PM

    Hi Jonathan,
    Currently the .NET solution contains over 70 assemblies, and only one assembly has reference to CR2008 .Net runtime SP2.  All the 70 projects for each assemblies are compiled with Platform Target set to Any CPU.  We build an installer with InstallShield, which deploys the runtime by CRRuntime_12_2_mlb.msi.
    If we resolve all the parameters, and donu2019t prompt user for the parameters, then the same report runs fine on 64-bit Window 2008. Otherwise we always get the error on prompting parameters.
    We resolved the issue by recompiling the exe with Platform Target set to (x86). And all the 70 assemblies are still compiled with Any CPU.
    Regards,
    Frank
    Edited by: Frank88 on Oct 12, 2009 11:07 PM
    Edited by: Frank88 on Oct 13, 2009 9:30 PM
    Edited by: Frank88 on Oct 14, 2009 3:28 AM

  • How to install a plugin on 64 bits windows 2008 server?

    From the developer forum, I found a description which told me how to install a plugin on windows series system, but I only succeded intalling the plugin on 32 bits windows xp, couldn't install the plugin on 64 bits windows 2008 server. Any ideas or advices, men of genius? Thanks :-)

    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • How to develop a plugin for 64-bit windows 2008 server?

    I have developed a plugin to open local application from web pages, but the plugin could only run on 32-bit windows and 32-bit and 64-bit windows 7, it couldn't work on 64-bit windows 2008 server. The plugin was compiled by vs2008 studio on 32-bit windows xp. Any instructions or advices, men of genius? Thanks

    Hi Gnittala,
    Thanks for your reply.
    I debug the javascript code in firebug on windows 8 and found that firefox would be not responding while executing "document.body.append(myPlugin)".
    My javascript code is below:
    function openLocalApp(cmdPath, cmdLine) {
    var npMyPlugin = navigator.mimeTypes["application/mozilla-npruntime-scriptable-plugin"];
    if (npMyPlugin) {
    var myPlugin = document.createElement("embed");
    myPlugin.style.visibility = "hidden";
    myPlugin.type = "application/mozilla-npruntime-scriptable-plugin";
    myPlugin.width = 0;
    myPlugin.height = 0;
    document.body.appendChild(myPlugin);
    myPlugin.foo(cmdPath, cmdLine);
    } else {
    alert("Failed to create the plugin!");
    And firefox plugin's source code copys from the following link:
    http://mxr.mozilla.org/seamonkey/source/modules/plugin/samples/npruntime/
    Just changed a little.
    I know the sample is very old, but newer proper sample couldn't be found. So if you can give me a newer sample, I'll appreciate.
    Thanks again.

  • Issues in running flash player activeX on 64 bit windows 2008 R2 server

    When the activeX acts up, users can not type anything into search boxes or use the keyboards in online game sites. From time to time, we have to re-install flash player again.
    We noticed that the FlashUtil64 activeX dll is somehow saved in c:\windows\system32\Macromed\Flash folder while the FlashUtil32 activeX dll is in c:\windows\syswow64\Macromed\Flash folder, is this normal? And when running 32 IE, the flashutil64 shown in the windows running process.
    We installed flash player with 32 bit IE 10 on a 64 bit windows 2008 R2 server.
    Thanks.

    It seems you have used 32bit installers on 64bit machine. Please refer -
    http://anuj-dwivedi.blogspot.com/2010/10/installing-oracle-soa-and-bpm-111130.html
    Regards,
    Anuj

  • Is owb 11g r2,supported by 64 bit windows 2008 server

    is owb 11g ,r2 supported on 64 bit windows 2008 server.
    is it true that : OWB 11g,r2 is supported only for 32 bit windows 2008.

    There is no 64b client for windows at this time. You can check on Oracle for available downloads.
    http://www.oracle.com/technetwork/developer-tools/warehouse/downloads/software/index.html

  • Want to move RH Server 8 to 64 bit Windows 2008 Server R2

    Can someone please confirm what version of Windows 2008 Server that RoboHelp Server 8 will run on?
    The Server Admin group says that they have to replace the server on which RH Server 8 is currently running an end-of-line operating system (Windows 2003).
    According to my support person, it would be really good if it could run on 64 bit Windows 2008 Server R2.
    FYI -- We're still using RoboHelp 7 with the last patch that allowed it to talk to RH Server 8.  If it is really important to convert up to RoboHelp 8, please let me know that as well.
    Thanks.  

    Hi Doug.
    I've not heard of any change in the officially supported versions of RoboHelp Server. Sorry.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • Please help me to get Oracle 10.2.0.5 software for 64 bit Windows 2008 R2

    Hi All,
    Subject: Please help me to get Oracle 10.2.0.5 software for 64 bit Windows 2008 R2 operating system.
    I am looking for Oracle 10.2.0.5 software to install in windows 2008 server (64 bit) R2. I tried with oracle download repository but unfortunately I couldnt find this software. In the below link I can see the product Oracle 10.2.0.5 - 64 bit (Itanium). I have tried to download and install in the server but I received in-compatible error message.
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
    From the oracle support certification site I have found that the Oracle 10.2.0.5 is the compatible version to installed in windows 2008 server(64) R2.
    I am trying very hard to find Oracle 10.2.0.5 - 64 bit. Can you please suggest me where I can download this software.
    Please do the needful.
    Regards,
    Jame

    Hi;
    Which means, do i need to install 10.2.0.4 and then to upgrade 10.2.0.5 using patchset?10.2.0.1 is base relase 10.2.0.x is patchest. 10.2.0.5 cover previous patchest errors which mean you do not need install 10.2.0.4 than upgrade it 10.2.0.5
    Regard
    Helios

  • Install ODI 10g on  64 bit Windows 2008 server

    Can we install ODI 10g on 64 bit Windows 2008 server ? if so Please provide the me the link for download
    Edited by: user1137989 on Oct 27, 2010 10:51 PM

    If you are looking for 10g then scroll down in the link (http://www.oracle.com/technetwork/middleware/data-integrator/downloads/index.html) Oracle Data Integrator 10g (10.1.3.5.0) and select for Microsoft Windows (x86) and extract and install .
    11g comes in 32 and 64 bit version .
    32 bit version is
    Oracle Data Integrator 11g (11.1.1.3.0)
    for Microsoft Windows (x86)
    64 bit version is .
    Oracle Data Integrator Companion 11g (11.1.1.3.0)
    for All Platforms
    Hope this helps .

  • ACS SE Agent aupport for 64 Bit Windows 2008

    Greetings All,
    Is there ACS SE agent support for a 64 Bit Windows 2008 Server. I was told there was not, I just want to confirm.
    thanks.

    there isn't sorry

  • Java apps lock up on Windows 7 64 bit

    3rd party Java apps and apps I've developed all seemed to be very buggy on one of my 64 bit windows 7 machines with JRE 1.6. I can run them in an XP VM on the same computer with no problems. Some apps lock up immediately and others it's just a matter of time before they lock up. I've searched and searched but haven't seen this issue anywhere else and don't have this problem on my 64 bit Windows 7 machine at home. Does anyone have any idea what might cause this? I'm at a loss and since it's my work PC with the problem I have to test Java apps in the XP VM which is a pain.
    Edited by: ddevil63 on Jul 26, 2010 9:57 AM

    3rd party Java apps and apps I've developed all seemed to be very buggy on one of my 64 bit windows 7 machines with JRE 1.6. I can run them in an XP VM on the same computer with no problems. Some apps lock up immediately and others it's just a matter of time before they lock up. I've searched and searched but haven't seen this issue anywhere else and don't have this problem on my 64 bit Windows 7 machine at home. Does anyone have any idea what might cause this? I'm at a loss and since it's my work PC with the problem I have to test Java apps in the XP VM which is a pain.
    Edited by: ddevil63 on Jul 26, 2010 9:57 AM

  • Java  sdk 1.4.2 Windows 2008 SAP ECC 6.0 SR3

    Hello,
    I want to install SAP ECC 6.0 SR3on server which is running windows 2008.
    The operation system is 64 bit version with a Xeon processor.
    I folow the following path to Download a j2sdk version http://java.sun.com/j2se/1.4.2/SAP/download.html.
    Downloaded j2se v 1.4.2_17-x64 SDK (j2sdk-1.4.2-17-windows-amd64.exe).
    When I installed This version of java. It seems to be OK, but after setting the envirnment variabeles path and Java_home, the java version is not working.
    When I try to run SAPinst  this error prompt u201CThe SAPinst could not started because a java runtime Environment (JRE) could not be found.
    Please help me
    Regards,
    A3

    Hi Bas,
    What error you are getting?
    Java version not working meand???????
    Just install java, set JAVA_HOME, PATH variables and restart your server/system.
    Then check and send us the result.
    Regards

  • Oracle obdc driver 32-bit doesn't run on 64-bit windows 2008 server r2

    Does anyone know a way to run OBDC driver on windows 2008 server r2?, a way to run the app?

    Pl post in the Heterogeneous Connectivity forum (Heterogeneous Connectivity as this forum is meant for issues related to database installs
    HTH
    Srini

  • Crdb_dao.dll error on 64 bit Windows 2008 Server

    We are using VS2008 to develop enterprise solutions for our customers. We have recently had support calls from our customers installing our solution on 64 bit WIndows Server 2008 machines reporting errors when displaying embedded Crystal Reports.
    The error is "Failed to load database information. Details: The database DLL 'crdb_dao.dll' could not be loaded. Error in file C:\Users........rpt: Failed to load database information"
    This error only occurs in the 64 bit environment and only occurs when the report is being passed a datasource at runtime, having been developed using a different source. eg: The report is developed based on an Excel Spreadsheet and then passed a runtime DataTable to populate the report at runtime.
    We have setup a test environment and replicated this error. The test machine is using the 64 bit Crystal runtime.
    Any help would be appreciated as this issue is getting hot now with more customers using 64 bit environments and over 100 of our reports being affected by this error.
    Thanks,
    Scott.

    Hi Ludek,
    Thanks very much for your info and help.
    Unfortunately I still haven't been able to resolve this issue.
    I have installed the SP.
    I have also run the modules utility, which unfortunately does not work on the 64 bit machine.
    I did notice in running it on a 32 bit machine that my test report is loading crdb_dao.dll, which is the same dll that the 64 bit machine is trying to load when the error occurs.
    I am wondering if it is possible that the 64 bit Crystal runtime does not include this dll because a search of the files on the 64 bit machine fails to find a file by that name.
    In actual fact, on further investigation I have now found that the Crystal 64 bit runtime throws this error for any report based on a spreadsheet file, even if that spreadsheet is accessible from the 64 bit machine, so it appears to be a bug in the Crystal 64 bit runtime.
    Regards,
    Scott.

Maybe you are looking for