Microsoft VM and Sun VM

I wounder if smbd could explain me. Is there any problems with communication between Microsoft VM and programs that were compiled with Sun JDK.
I develop a applet and compile it with Sun JDK. But I doesn't work on the Microsoft VM in my IE. Could it be really a problem? And how to avoid it?
Thnks

Yes. I'm using java2 and I have IEv6.0 and my java
applet doesn't work.No, it doesn't. Microsoft's VM is Java version 1.1.4.
What do I need to do in order my applet make workable?Two options:
1) Use Sun's VM.
2) Use only Java 1.1.4.
I strongly recommend the first option.

Similar Messages

  • Confused between Netbeans and Sun Studio Enterprise

    Hi all,
    Acually I am very confused between Netbeans and Sun Studio Enterprise/Creator.
    Why sun did not concentrate on one IDE as Microsoft is doing with Visual Studio?
    Now, I do not know what to learn....Netbeans or Sun Studio !!!
    What make me more confused is that both are supported oficially by Sun. And both are free for SDN members!!!!!
    So, what is the difference???!!!
    regards

    I tried it back when it was called Forte, and it seamed pretty
    identical to netbeans. the only difference was that Forte could
    only be used for personal use without a license.

  • Error. your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.

    I have the following inside my SharePoint server 2013 :-
    EnterPrise Wiki site collection.
    i have both "Excel services Application "& "Visio Graphics Service" running correctly.
    The problem i am facing is as follow:-
    when a user click on an Excel sheet or Visio document , it will be shown inside the browser without any problem.
    but if the user click on "Open in Visio" OR "Open in Excel" links inside the browser, they will get the following errors:-
    Sorry, but to open this workbook, your computer must be running a supported version of Microsoft Excel and a browser that supports opening files directly from Office Web Apps.
    To open this document, your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.
    I have the following settings inside my PC:-
    Office 2010 for Excel, word, power point,etc.
    Visio 2013.
    i have disabled SharePoint foundation support for office 2013
    Can anyone advice on this please?

    Hi,
    Please try to reset the Internet Explorer settings or open Internet Explorer in In-Private browsing and then check if this issue occurs.
    If the issue persists, please try to access SharePoint in another computer with Office 2013 and then check if this issue occurs. Or repair Office and restart your server.
    Here is a blog about the same issue for you to take a look at:
    http://sharepointexit.blogspot.com/2013/12/sorry-but-to-open-this-workbook.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • I have signed up for adobe conversion to microsoft word and i can't get it to work - can you help me

    I have signed up for adobe conversion to microsoft word and I can not get it to work -  can you help me?

    Hi Mike,
    I've checked your account. I see that you just purchased the subscription this morning. The order is still pending processing, which is why you haven't yet been able to log in an use your subscription. It can take 24-48 hours for a subscription to process fully. Once it does, you'll be able to log in and convert files.
    I apologize for the inconvenience.
    Best,
    Sara

  • I am trying to install an update of Microsoft office and I get a message that says.  This application must be closed ETC.....   I am running Parralell and I think it is there.  The two programs are "Microsoft Database Daemon" "SyncServicesAgent"....

    I am trying to install an update of Microsoft office and I get a message that says.  This application must be closed ETC.....   I am running Parralell and I think it is there.  The two programs are "Microsoft Database Daemon" "SyncServicesAgent".  How do I close these programs?

    If the Office updates have to be run through Win in Parallels, there's not really a section here that covers that , because Neither Office or Parallels are Apple products. There is only a small chance that you'll find someone with BOTH your conditions who just happend to look into a forum on older iMacs.
    Parallels has a forum here:
    http://forum.parallels.com/forum.php
    I think you'll get a faster response there.

  • My microsoft word and excel programs won't work and files won't open.

    After an automatic HP update, my Microsoft Word and Excel programs won't work and my files won't open.  What caused this and what can I do to fix the problem without losing my files?  I have files that are part of my work and I HAVE to have them ASAP.  Please help.
    Thanks in advance.

    Hi
    Please find the steps to resolve your issue.
    Open Installed Updates by clicking the Start button , clicking Control Panel, clicking Programs, and then, under Programs and Features, clicking View installed updates.
    Click the update that you want to remove, and then click Uninstall.  If you are prompted for an administrator password or confirmation, type the password or provide confirmation.
    Or Try this step
    If this does not resolve your issue then you can try a System restore to the date where unit was working fine steps provided below for you.
    Start in search box type System Restore then click on it then select the Date where unit was working fine.
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Replace Quotes, Connection Pooling, and Sun Web Server with MySQL, Oracle

    This is code I use to insert data into my MySQL and Oracle databases.
    I takes care of quotes and shows use of context, i.e. when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to reply if you have questions on how to set up connection pooling using Sun Web Server 6.1SP - it took quite a long time to learn and I couldn't find much information throughout the web, so I hope this helps...
    This is not a question and I am not looking for an answer, but please post comments or suggestions.
    dailysun
    This is in one class where I have a hashtable containing the
    column name / value pairs that I want to enter into my table.
    This class simply creates the SQL string from the values in the
    hashtable. It then passes that hashtable including the database
    name to a class which executes that sql statement (second code
    portion).
    /* Insert data into sf_parts. Create the column strings from
             * the provided hash table. Be sure to parse out hash elements which
             * are used for the createTemplate process
            StringBuffer values = new StringBuffer();
            StringBuffer fields = new StringBuffer();
            Enumeration keys = fieldHash.keys();
            while(keys.hasMoreElements()){
                Object currentKey = keys.nextElement();
                    String fieldValue = (String) fieldHash.get(currentKey);
                    if(values.length() >0){
                        values.append(",");
                    values.append("'"+fieldValue.replaceAll("'","''")+"'"); // Takes care of quotes and various other special characters!
                    if(fields.length() >0){
                        fields.append(",");
                    fields.append(currentKey);
            sql = "INSERT INTO myTable (" + fields.toString() + ") VALUES (" + values.toString() + ");";
            String insertResult = caq.getInsertDelete(sql,"myDatabaseName"); // your database name is defined in web.xml and sun-web.xml when you use Sun Web Server's Connection Pooling.
            returnValue += "<br><br><b>Rows inserted into table(myTable): </b>" + insertResult + "<br>\n";
            And, like I describe above, this method executes the sql statement.
         * Takes care of insert, update and delete requests.
         * Must have set both dbName as well as the sql String.
         * Will return number of rows affected as String.
         * @return String Number of rows affected
         * @exception SQLException
         * @exception Exception
        public String getInsertDelete() {
            checkData(); // this simply checks if the variables dbName and sql are not empty ;-)
            InitialContext initContext = null;
            int rv = 0;
            try{
                // Get connection from configured pool
                initContext = new InitialContext();
                source = (DataSource) initContext.lookup("java:comp/env/jdbc/" + dbName); // I have this set up in web.xml and sun-web.xml (I use Sun Web Server 6.1SP which does connection pooling for me)
                conn = source.getConnection();
                if(conn != null){
                    stmt = conn.createStatement();
                    rv = stmt.executeUpdate(sql);
            }catch (SQLException e){
                // do something
            }catch (Exception e){
                // do something
            }finally{
                try{
                    stmt.close();
                }catch(Exception e){
                    // do something
                try{
                    conn.close();
                }catch(Exception e){
                    // do something
                try{
                    initContext.close();
                }catch(Exception e){
                    // do something
            return rv+"";
        }  

    This is code I use to insert data into my MySQL and
    Oracle databases.
    I takes care of quotes and shows use of context, i.e.
    when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to
    reply if you have questions on how to set up
    connection pooling using Sun Web Server 6.1SP - it
    took quite a long time to learn and I couldn't find
    much information throughout the web, so I hope this
    helps...
    This is not a question and I am not looking for an
    answer, but please post comments or suggestions.Using prepared statements would mean that you wouldn't have to worry about quotes.
    You should be closing the result set.
    You are handling all fields as strings. That won't work with time fields and might not work for numeric fields.
    Presumably most of your variables are member variables. They should be local variables because that is the scope of the usage.
    You must do something with the exceptions.
    Hashtables although convienent mean that problems with usage can only be resolved at run time rather than compile time.

  • Microsoft home and business 2013 64-bit Product Key not working to activate.

    Hi,
    I just bought on ebay india.  ( MS office home and business 2013  64-bit)  During activation the screen says that there was problem.
    Your computer has already installed 64-bit files and 32-bit cannot install. To install 32-bit please delete the files and reinstall.
    I went to chat with Microsoft website and they advised to post the issue here. Is there someone who can help me activate the product. I contact the seller, he says I have sent you 64-bit installation cd.
    Thank you,

    Hi,
    Have you installed any 64-bit Office products before? If yes, please uninstall them using Fix it from Microsoft:
    http://support.microsoft.com/kb/2739501/en-us
    http://support.microsoft.com/kb/971179
    Try installing again, check the result.
    If you are not sure whether you are running 32-bit or 64-bit Office, please refer to this article below:
    http://office.microsoft.com/en-001/support/am-i-running-32-bit-or-64-bit-office-HA010361023.aspx
    Regards,
    Melon Chen
    TechNet Community Support

  • Microsoft Date and Time Picker Control 6.0 (SP6) errors

    One of our functioning VBA projects in Outlook 2010, running under Windows 7 Professional (64-bit), unexpectedly stopped functioning a few months ago. When running the VBA macro we started receiving the compile error message:
    "Object library invalid or contains references to object definitions that could not be found"
    PROBLEM FORM CONTROL:  The message was extremely frustrating because it gave no detailed indication of the source of the problem.  With a little research, however, we found that the
    Microsoft Date and Time Picker Control 6.0 (SP6), on a userform accessed by the macro, was generating the error.  A number of older articles, such as the one included below, indicated that we needed
    to re-register the MSCOMCT2.OCX form control, which we did successfully (as did the original author in his question link below).  Unfortunately, as the original author found, simply re-registering the form control did not resolve the problem.
    UNRESOLVED QUESTIONS:
    1. Does anyone know why this functioning control would unexpectedly cease to function?
    2. Can anyone help us restore the functionality of the 'Microsoft Date and Time Picker Control 6.0 (SP6)'?
    3. How come the form control is listed in the object library, is available in the 'Additional Controls' dialog, and can be inserted into a form, without any indication that it is broken?
    SUPPORT ENGINEER RUN-AROUND:  Another frustration is that a responding support engineer, in the prior article, keeps referring the author back to this forum, yet the question is apparently never answered back here in
    the TechNet forum (which ironically refers us back to the original article in the other forum - a game of musical chairs!).
    We suspect that the solution to this problem may be similar to resolving this issue for other similar form controls in other Office 2010 application, not just Outlook.  After several years, and a myriad questions on the internet regarding
    this exact subject, is there someone who can definitively resolve this issue with this control?
    Thank you for any help.
    LINK TO THE ORIGINAL UNANSWERED QUESTION (i.e., regarding the MSCOMCT2.OCX control and reference back to this forum):
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-excel/ms-date-and-time-picker-contol-60-sp-6-w-excel/9b0cc596-5e13-48bc-b03e-13dbfd1c7f9d

    Hi,
    Would you like to tell me your Excel version number (Go to Account>About Excel). I tested in my version :15.0.4569.1504 and the Date and Time Picker Control 6.0 still could be used.
    Then,>> My PC is 64 bit.  I believe my version of Office is also 64 bit.<<  Office 2013 32 bit also could be installed in 64bit operation system. We could check it with Account>About Excel.
    Next, as you said >>After I exited 'Design Mode,' it started working again.  I tested it, along with my 'Clear Form' button multiple times.  It seemed to be working fine.  I closed the document and reopened it.  Enabled Macros. 
    When I tried to use it after reopen, it doesn't work again.<< 
    I recommend we recreate a new blank Excel file and insert the Date and Time Picker Control 6.0 to test.
    If it still does not work well, please try to reinstall and re-registry it. Follow the link:
    https://social.msdn.microsoft.com/Forums/office/en-US/36f83f24-cd76-4f8e-aa7b-5f166666e7d3/excel-2013-popup-calendar
    https://social.msdn.microsoft.com/Forums/en-US/91cf3127-70fe-4726-8a27-31b8964430c5/registering-mscomct2ocx-in-64-bit-windows-7?forum=sbappdev
    If it works well, I suppose this issue is related to macros. I recommend you post the question to MSDN forum to debug them:
    https://social.msdn.microsoft.com/Forums/office/en-US/home?forum=exceldev
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can't sync anything with my microsoft account and can't create a new one?

    Hi,
    I have recently done a software update to Windows 8.1 and now every time I try to access an app it prompts me to sign in to sync my data. I follow the screen prompts using my email address and password (the same as the one I have used to access this forum
    so my current working microsoft account) and it says a microsoft account with this email address already exists on this PC. 
    I get through to the validation code page section, the code is sent to my phone, I enter it, the cloud information page is displayed the switch to microsoft account option appears I click switch and it says an account already exists on this PC???
    If  I try to choose the alternative option of creating a new account with the same email address (my main email account) I have the same issue which is an account already exists. 
    I have lost data and can't sync any music tracks etc - hugely frustrating!
    What do I do??

    Hi,
    What's your current User Account? Local Account or Microsoft Account? If local account, please sign out and switch to Microsoft Account. If not, it should have problem with your Microsoft Account, please try to delete it from your system and readd it for
    test.
    Roger Lu
    TechNet Community Support

  • I am unable to open the microsoft word and excel and pdf files after upgratding to 4.3.3 os version

    I am unable to open the microsoft word and excel and pdf files after upgratding to 4.3.3 os version. I was able to access them in 4.3.1 .
    Can anybody tell when is this getting resolved.

    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile
    Your old Profile is located here in Vista & Win7: <br />
    ''drive'':\Users\''Windows login user name''\AppData\Roaming\Mozilla\Firefox\Profiles\''profile_name''

  • I have a MacBook Pro and I need to be able to access Internet Explorer in order to login to my work server (Microsoft server) and Online Business Banking system. How do I do it if Internet Explorer is not supported on Macs?

    I have a MacBook Pro and I need to be able to access Internet Explorer in order to login to my remote work server (Microsoft server) and Online Business Banking system (Bank of America Cash Pro). How do I do it if Internet Explorer is not supported on Macs?  Is there another option? Please help. 
    I also feel like such a moron as I am really new to Apple computers and don't even know what operating system I am using.  The below is what I have. Sorry to all that are well beyond me in the Mac world.  Have been a windows user for my whole life and haven't quite figured out where to find everything I need on my new laptop yet.  Thanks!
    With the following configuration:
    PROCESSOR     065-0154     2.7GHz Dual-core Intel Core i7
    MEMORY     065-0156     8GB 1333MHz DDR3 SDRAM - 2x4GB
    HARD DRIVE     065-0159     750GB Serial ATA Drive @ 5400
    OPTICAL DRIVE     065-0161     8x Double-Layer SuperDrive
    DVI Adapter     065-0162     None
    VGA Adapter     065-0164     None
    REMOTE     065-0166     None
    Apple Software - iWork     065-7672     No iWork preinstalled
    Apple Software - Final Cut Exp     065-7682     Final Cut Express preinstalled
    Apple Software - Aperture     065-0338     Aperture preinstalled
    Apple Software - Logic Express     065-7675     No Logic Express Preinstalled
    Apple Software - Filemaker     065-8307     No FileMaker Preinstalled
    Apple Software - MS Office     065-0278     MSO-HOME & BUSINESS EDITION
    KEYBOARD AND DOCUMENTATION     065-0172     Keyboard/Users Guide
    COUNTRY KIT     065-0175     Country Kit

    If you are New to Mac... you may also find these links of Value
    Mac 101
    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/     Switching from PC
    MBP Support
    http://www.apple.com/support/macbookpro
    Cheers,

  • I have Windows 7, Microsoft Outlook and PSE 13. I have used the "Share photos as embedded images" feature frequently, but today when I went to use it, it wasn't there, only the option to send email with files attached. How do I get back the ability to sen

    I have Windows 7, Microsoft Outlook and PSE 13. I have used the "Share photos as embedded images" feature frequently, but today when I went to use it, it wasn't there, only the option to send email with files attached. How do I get back the ability to send emails with photos embedded. I like adding the frames and backgrounds and I think it's easier for recipients to look at the photos. Thanks for any suggestions of things to try.
    Gail

    I had a similar problem in that my wife's iphone 5 could not send pics with imessage.  Had to set the settings to default to SMS or whatever.  After laboring many hours on the web I coincidentally was on the phone with the internet people to question my internet speed.  They changed the router channel, which is something that I am capable of doing myself.  After that, the pics go over imessage.  My own Iphone didn't have the problem.  We are both latest IOS 7.0.6.

  • When I disable my left windows key for gameing using Microsoft keyboard and mouse software, I can no longer type in firefox. How can i fix this?

    Microsoft Keyboard and Mouse Software that you install with Microsoft keyboard and mice, (latest version) allows you to disable your windows key so that you don't accidentally hit it when gaming. When I take advantage of this feature, I can no longer type in Firefox. Typing in Firefox is completely disabled. Other browsers, windows, applications work, but not Firefox. What is it about the windows key that firefox needs for typing. Strange problem, but annoying because I have to use a different browser while game. Certainly not a deal breaker, but kinda strange.

    Try:
    *[[/questions/947513]]

  • Windows Server 2003 and Microsoft Assessment and Planning tool (MAP)

    Preparing for the end of support for Windows Server 2003 (4/2015) and the need to migrate from Windows Server 2003, I have been directed on several sites run the Microsoft Assessment
    and Planning tool (MAP) to aid in identifying any software and hardware issues.   Apparently this tool has been recently updated (7/2014) and cannot be installed on a Windows Server 2003 system.  As it requires .NET Framework 4.5 to run.  Unfortunately,
    .NET Framework 4.5 cannot be installed on a Windows Server 2003 as it only supports .NET 4.0.x versions.  All older version links to the MAP tool have been updated to link directly to version 9.1.  Where can I get a MAP tool version that will run
    on Windows Server 2003?  

    Hi,
    Yes, i would agree with arnavsharma
    After the environment scan has been completed in Windows Server 2008r2 or another supported OS, MAP looks at computers running earlier versions of Windows.
    http://technet.microsoft.com/en-us/magazine/ee677580.aspx
    Meanwhile, for the MAP related issue, you'd better ask in MAP forums:
    https://social.technet.microsoft.com/Forums/en-US/home?forum=map
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Safari doesn't load, just crashes.

    Hi, Wondering if anyone can help me. Safari has started throwing errors up which means it doesn't load giving the below error message (it's not complete, can copy the rest if needed). Hadn't done any updates (I've just installed Mavericks in the hope

  • Camera in not found after Yosemite upgrade.

    2012 Macbook Pro Things we have already tried. (Several times) First - find out if the computer recognizes the camera. Check System Profiler (in the Utilities folder, inside the Applications folder). Under the USB header, check to see if the iSight c

  • Ghosting on 30" AC

    Has anyone ever had your monitors do any ghosting? In other words, I've set my background to be a neutral gray, when I move this Safari window I can still see it faintly where it was. Kind of a big deal when dealing with subtle colors, and awful anno

  • Trouble "ejecting" iPod

    Hi. I have a 4th Generation iPod 20GB with color display. Lately, I've had problems "ejecting" the iPod from iTunes. I also use my iPod as a portable drive, but I don't have any documents or files open or anything in the Trash waiting to be deleted.

  • I can't see MSSQL to create a connection

    Hi ! I don't have the possibility to create a MS SQL connection. I can only connect to Oracle or Access Database. I have the release 1.5.0.53 (the last I think) Thank you for your help