I need Microsoft JVM

I need to run a program through a Microsoft JVM because the program requires access to the registry and activex controls via the com.ms package. If I run this program through another JVM I will just get permission exceptions. I downloaded the Micrisoft SDK for Java 1.4 but it's bin directory has no "java.exe". How cna I do this?
I have an old version of JDeveloper which allows me to specify using Microsoft JVM, and it will work- but I need to be able to run this thing standalone.

lol i found the following paragraph quite amusing in the above http://www.microsoft.com/mscorp/java/ link:
"(An option for users dependent on the MJVM) Switch to a third-party Java Run-time Environment (JRE). Although Microsoft cannot vouch for the security and reliability of solutions offered by other companies, non-Microsoft solutions are available. Customers choosing to explore such solutions should engage in testing prior to pursuing this migration path."

Similar Messages

  • Sun Plug-In vs. Microsoft JVM

    I'm looking for current percentages as to how many systems have Sun Plug-In vs. Microsoft JVM installed. Creating an application in which I want to force the end-users to use the Sun Plug-In but I need the current percentages to help convince my customer. If anyone knows of a site where I can find this information, would be much appreciated.

    I don't know percentages but if you will have users on Windows XP or Longhorn, you can forget about using the Microsoft JVM cause it won't be there. Since you are creating a new application, I think it is a no-brainer to use Sun. In fact, Microsoft has published guides on transitioning away from the Microsoft JVM - see http://www.microsoft.com/mscorp/java/

  • Switching from Microsoft JVM to sun JVM plugin.  Problem w crystal reports

    Hi,
    I am currently in the process of switching off of the microsoft jvm to the sun plugin. I am using the reportviewerbean to view the reports. This works fine in the microsoft JVM, but I am getting a server not found error in the java JVM plugin. Here is the codes that is currently used:
    bean = new ReportViewerBean();
    if ( reportname.startsWith("/") )
    java.net.URL url = this.getDocumentBase();
    reportname = url.getProtocol() + "://" + url.getHost() + ":" + url.getPort() + reportname;
    add((Component) bean);
    ((Component) bean).setBounds(0, 0, (int)this.getSize().width, (int)this.getSize().height);
    bean.start();
    bean.setBackground(Color.gray);
    bean.setPromptOnRefresh(false);
    bean.setHasGroupTree(false);
    bean.setHasPrintButton(true);
    //setZoomFactor(100);
    bean.setZoomFactor(-2);
    Log.debug("In report viewer: setting report parameters: "+reportparameters);
    bean.setReportParameter(reportparameters);
    * It's important to set the report name last. This tells the Crystal viewer to
    * start the report. Otherwise you can get multiple URL requests for the same report.
    Log.debug("In report viewer: setting reportname: "+reportname);
    bean.setReportName(reportname);
    Can anyone tell me what I am doing wrong or what I need to do differently for the SUN environment
    Thanks

    Hi
    I have started playing with this again my full msg is:
    Crystal Report Viewer 1.3.7
    java.vendor = Sun Microsystems Inc.
    java.version = 1.6.0_05
    os.arch = x86
    os.version = 5.1
    File name = java_plugin1.epf
    "java_plugin1.epf" does not exist.
    No response from server.
    URL = http://localhost:7001/cis/servlets/reports/mgnt/WorkflowDetailReport1.rpt?viewer=java&vfmt=encp&vgen=652&language=en
    Parameters = viewer=java_plugin&cmd=get_pg&ttl_info=&page=1&incomplete_page=1&incomplete_page_count=1&pversion=3&promptOnRefresh=0
    network: Connecting http://localhost:7001/cis/servlets/reports/mgnt/WorkflowDetailReport1.rpt?viewer=java&vfmt=encp&vgen=652&language=en with proxy=DIRECT
    Failed to connect to server.
    I have noticed that the viewer is set to equal java and not java_plugin. I am wondering if this is the problem. does anyone know how to change the viewer= ?
    thanks,
    Marc

  • Game runs fine in sun jvm, microsoft jvm causes 99% cpu usage and is SLOW

    In the microsoft JVM (my target platform) I get 2 frames per second... in the sun JVM I get at least 60.
    The strangest part, is that this only repros when iexplorer.exe is the only process running java anything... for example, if I have net beans running, I get 60 FPS in the microsoft JVM as well. That makes no sense to me.
    I have tried thread.yeild and thread.sleep in my main loop, and that didn't fix anything.

    In the microsoft JVM (my target platform) I get 2
    frames per second... in the sun JVM I get at least
    60. Don't use the MS JVM. I
    The strangest part, is that this only repros when
    iexplorer.exe is the only process running java
    anything... for example, if I have net beans running,
    I get 60 FPS in the microsoft JVM as well. That
    makes no sense to me.
    I have tried thread.yeild and thread.sleep in my main
    loop, and that didn't fix anything.About these 2 methods.
    sleep() // example in almost every book. Leaves
    // Thead on the schedule list
    yeild() // Pell mell as in no control of when it unyields.
    // prone to race/deadlock UNLESS monitored by
    // another thread that wakes up periodically.
    Tony's "Theorized" <- make the uptight acedemic sycophants happy.
    Law of the exec constant.
    "Any Thread or process *that locks the system MUST yeild controls for at
    least 20MS pre iteration."
    Why 20MS? It gives the underlying OS a little slice and is enough
    to ensure everything gets enough CPU. Every MS under 20 increases
    the deadlock potential. (*If at zero wait you get a preempted deadlock)
    You can play with this value but I have found it is pretty consistent
    across CPU speeds / hardware/
    Use a synchronized wait() in your main run method every iteration.
    Objet waitObject();
    synchronized(waitObject)
    try
       waitObject.wait(20);
    catch(InterruptedException ie)
    }wait() Removes the Thread from being scheduled.
    This iwll give IE the CPU it needs and your CPU should dro
    to around 1%.
    Hmm now how many kicked dog howls am I going to get about his message
    (T)

  • Can we have a java application with out need of JVM??

    Hi
    Does java support exe kind of installable like in c/c++( is it platform dependent)?if so who it works??
    Can we right an application, which run on any machine (i.e. platform dependent) with out need of JVM installed on that machine�

    The short answer is no. A slightly longer answer.
    There were attempts to compile Java to native code. I remember playing with such a compiler: TowerJ. If you do this, you will end up with native executables, but not only one. You will have one per platform. Hopefully you will find compilers like this for all platforms (unlikely) or at least to all platforms you expect your application to run on. Compiling Java like this is complex and it may have all kind of restrictions.
    Symantec VisualCafe (out of business) now, provided a feature by which you could turn your Java program into a Windows executable. It was a bid executable containing a small native stub, the VM started by the stub, all the JDK classes and all your classes. It was still running under a VM, but this fact was hidden from you. I am pretty sure this concept is alive, just Google for it.
    If you drop the requirement "without VM" only to "without user having to install the JRE", you can survive. You can package the Sun VM with your application (legal, but read the conditions) and than install both. The user does not know what you install, the VM is just another component of your application among others that make it work. You do not need an installer for this, a ZIP with all the stuff inside does the trick.
    Note that again, you will need to create separate installers/zips for every platform supported, because the JRE part is not the same.

  • I got my first Mac and will need microsoft office to migrate from my PCmi

    I got my first Mac last night and I will need Microsoft Office to work and to migrate the docs from my old sony Vaio PC with  Windows 7, where can

    Have no idea what UnArchiver is but you can just Copy all your MS office documents over from your PC to the Mac and Office 2011 will read them no problem.
    As for other files like images (JPG) and music (MP3) both platforms read these type files without any type of conversion.
    Have Fun and a Very Merry Christmas to you.

  • I want a laptop but I need Microsoft power point and word excel do you guys have it or I can't have it on a Mac laptop?

    I want a laptop but I need Microsoft power point and word excel do you guys have it or I can't have it on a Mac laptop?

    You can buy Microsoft Office for Mac:
    http://www.microsoftstore.com/store/msusa/en_US/list/ThemeID.33363200/categoryID .62686000?tid=ssswamnz1_dc&cid=5250&pcrid=21622929053&pkw=microsoft%20office%20m ac&pmt=e&WT.srch=1&WT.mc_id=pointitsem_Microsoft+US_google_5+-+OMac+2011&WT.term =microsoft%20office%20mac&WT.campaign=5+-+OMac+2011&WT.content=sswamnz1&WT.sourc e=google&WT.medium=cpc

  • Excuse somebody can tell me if I had Pages and Keynote I need Microsoft Office too?

    please somebody tell me Today Im goint to buy a macbook pro 13' and I have an ipad with pages and keynote, can I use this app's on the mac ? or I need Microsoft Office

    You only need Microsoft Office if you plan to hone your life skills on it as nearly 95% of businesses use it.
    However there is a Pages and Keynote version for OS X (sold seperatly), but there is the free LibreOffice suit which is extremely popular amongst Mac users as there is a Windows and Linux versions too, the files are cross compatible and they open/write Office format also.
    https://www.libreoffice.org/
    You may have to right or control key click on the app/installer to "open" and confirm to bypass 10.8's Gatekeeper security.

  • With ios5 do i still need microsoft exchange

    Now that i have ios5 on iphone and ipad2 do i still need microsoft exchange

    Greenehouse wrote:
    Now that i have ios5 on iphone and ipad2 do i still need microsoft exchange
    Microsoft Exchange is an email server (and a few other things) and is run by your email hosting service (or work or where ever.)  Having access is NOT a requirement for iPhone or iPad (on any version of iOS.)  However, if your email is still being delivered to that particular email server where Exchange is running, then you still need to connect to that server with whatever device you have.  Just like if you have Yahoo mail, you would still need to connect to Yahoo from whatever device you have.
    If you don't mind changing your email or moving your calendar and contact from your current Exchange account, then "you do not need Microsoft Exchange."

  • Do I need Microsoft Silverlight in my Mac

    Do I need Microsoft Silverlight in my Mac ?
    thank you

    It depends on what you’re trying to do. If you’re using Netflix or some sites with live video, yes.
    (113498)

  • Profiling tool for applets using Microsoft JVM?

    Hello All,
    I have an applet designed to work in Microsoft JVM. It is slow and sometimes crashes the browser and I doubted that it caused memory leak. Therefore, I wish to have a profiling tool which can collect time and memory consumption from Microsoft JVM.
    Please advice.

    simply: there is none.
    Its even impossible to denug it withought a legal copy of J++, trust me MSJVM really sucks.
    I have to create a really big applet which is compatible to Netscape-4.7 and MSJVM-3167+ and its nightmare. One change and the whole cardhouse breaks.
    I do not want to make you feel sad, but leave it.
    lg Clemens
    PS: I would try to create as few objects a s possible, the ms-gc is not very powerful nore stable...

  • Microsoft JVM & Sun JVM

    I have the Sun JVM 1.3 and 1.4 installed on my computer.
    IE is set to use the sun JVM (1.4) for the <APPLET> tag (in tool->Internet Options->Advanced).
    How can I launch an applet using the Microsoft JVM ?
    I have try something like:
    <object classid="08B0E5C0-4FCB-11CF-AAA5-00401C608500"
    width=150 height=150>
    <param name=codebase value="http://www.blabla.com/here">
    <param name=code value="JavaClass.class">
    </object>
    But my IE keep craching.
    Any help ?

    Well in fact I have found a solution, but I don't know if it's full proof, does somebody have any idea ?
    I use:
    <object classid="java:MyCode.class"
    codetype="application/java"
    width=my_width
    height=my_height>
    <param ....>
    </object>

  • How to debug applet on Microsoft JVM

    Hi,
    Right now I have a Java applet application written by Visual J++ and running on Microsoft's JVM. OS is WinXP SP2 with IE 6.
    I want to write an external application to get the data from applet when Text Field's value is changed and also want to simulate to click button, input text, and press keyboard to applets.
    I can make it if the Java applet application is running on Sun's JVM. It is because Sun provides JVMDI (Java Virtual Machine Debug Interface) and JNI (Java Native Interface) to monitor and control applets in browser. We can configure Java Plug-in to inject a DLL into IE browser to get the Sun's JVM runtime environment and then use JNI to operate Java objects. I have written several external applications for Sun's JVM using JRE 1.4.2_xx. And they work well.
    But for Microsoft JVM I don't know if I can do the same thing. I wonder if Microsoft has the same interfaces or has another mechanism to handle this.
    Any helps will be highly appreciated. Thanks.

    the applet is in jar form right? that jar is just another bit of static content your site delivers, much like an image. put it in a folder inside your server-side application, where you put other static content, and link to it with a URL
    for the future, you're better off not telling people how urgent your problem is - it's only urgent to you, and doing that can put people off answering at all

  • Microsoft JVM!!!

    Hi,
    I had recently read at the microsoft claming long back
    the VM created by them were the best for the window
    environment.Is there any one who has used that and
    found the difference in performance.I would appereciate
    if someone from the sun let me know about there
    evaluations(sure they must have done).
    I believe there is the jvm created by the ibm,if it is
    there how about its performance.
    vickyk

    Yes, the MS JVM was at its time the fastest and 'best' JVM for Windows. Unfortunately it stagnated in that it never supported Java 2 and Microsoft 'poisoned' it with changes that were in conflict with Java's licensing rules. So it was withdrawn.
    Since then, Sun, IBM, Appeal (now part of BEA), Tower and others have created JVM's for WIndows that are much faster than the old MS JVM and that stay up with the Java 2 language and its libraries.
    I am sure you can find plenty of detail on the Microsoft JVM and its abiltiies and controversies by doing a few Google searches. Either way, it is a dead end since MS will not continue to improve or update this JVM - they have decided to their eggs in the C# and .NET basket.
    Chuck

  • IS cookie handling in the Sun jvm automatic like the microsoft JVM?

    Hi,
    I am moving from a micrsoft JVM to the sun JVM. I am dealing with cookies. It appears that the microsoft JVM Wininet URL handler automatically handles cookies. Does Sun's do that for more current versions?
    thany you,

    It stores cokies, yes.
    In JDK5 there was an API added which even allows you to control cookie handling yourself.
    lg Clemens
    By the way, JDK6u10 us currently in BETA, it offers many enhancements on desktop, give it a try:
    http://download.java.net/jdk6/binaries/

Maybe you are looking for

  • Regarding planning data not available in reports

    HI SdN, In my reports I'm populating actual data and planning data.But as of now we have only actual data display's in our report.what we are doing is we are populating data in BW and analysing on the base of the product cutomer (compounded) combinat

  • Nokia Video Manager - Upside down and back to fron...

    Have been trying to convert some avi(DivX) files to watch on my N95 using the Nokia Video Manager. Converts the files fine and all but they are upside down and back to front??? Have seen that a few people on the net have had the same problem but have

  • Yellow mark in device manager under other devices pci driver for B50 laptop with Windows 8.1 64 bit

    Dear All, in device manager - other devices - pci device is with yellow mark os:windows 8.1 , laptop B5070 series . in PCI events tab mesage is: Device PCI\VEN_10EC&DEV_5229&SUBSYS_380117AA&REV_01\00000​001004CE00000 was configured. Driver Name: null

  • Tomcat and localhost

    Greetings, I'm sorry if this is the wrong forum. This one is a fairly easy one, I'm quite sure. I'm a newbie and I just setted up Tomcat and Apache with a jk connector. I want to create a test-server before I'm going live on the "real" server. My que

  • Script »Rename/Relink«?

    Hi there, back in the days of CS2 (or even CS) there was a script for renaming and relinking images. I believe it came with the original installion disks. It prompts you for a new name of a selected image and would then rename it on disk as well as i