Java and Internet Exploner

My Internet Exploner don`t show me Java Applets .
What can I do ? Java is activate.
Where is the problem.I have Windows 95.
Hope someone can help me by my problem.
[email protected]

download the java html converter (search for it on this site).... it will add something in your html file so that the virtual machine can work with IE

Similar Messages

  • Java and Internet Explorer automation

    Hi,
    I would like to create a routine in java that would simulate a user browing the web.
    Ex: A user vistiting a certain page, clicking on a few links etc...
    Is their a java library that can server as a bridge beetween java and internet explorer in order to automate this process.
    Thank you.

    You want to see it all happening on the screen? If so, you could maybe look into IECanvas or some other Java/COM bridge that would let you embed IE in the Java app. I'm not sure what kind of API is available such that would allow for that.
    Another idea is java.awt.Robot which would let you move the mouse and enter text and click on things on any application, but the problem here is that you'd need to know exact coordinates to click on. You could use it to grab screen shots if you can deal with the image manipulation to figure out what is where.

  • Java and internet access

    Hello all,
    I have been trying to upload a URL in my java application but I am always getting URL not reachable error message generating from a thrown exception. I know this may be easy but I am not able to find any solution for this is there a way to set java access to the internet other than modifying the plugin with the proper proxy setting ?

    Try searching with Google and find an answer in seconds.
    http://www.javaworld.com/javaworld/javatips/jw-javatip42.html
    http://www.rgagnon.com/javadetails/java-0085.html

  • Java and  Internet Explorer ?

    Hello every one.
    Could someone tell me how to call Internet Explorer from a Java Application, passing a string containing the URL?
    thank a lot in advance.

    Can anyone tell me as to how do I locate the installation directory of an application during run time? i.e. in case you have two drives c: and d: - IEcan be installed in either of the drives. Also, though the default installation directory is <drive>:/Program Files/Internet Explorer at times user might decide to instal in elsewhere. My question is thru java code, how do I get the path dynamically. Is it possible to search for a file "iexplore.exe" and save the directory path where the file is found in some string variable which I can subsequently use within the code (may be to call a method like exec()).
    It's a little urgent. Please help.
    Regards,
    Raj

  • WebDynpro (JAVA) and Internet Sales..

    Hello experts,
    I would like to know if there is a way to develop or extend Internet Sales through WebDynpro (for JAVA) instead of JSPs, if so.. could anybody point me the right direction how to accomplish that.
    Links, documents or whatever are welcome.
    Thanks in advance..
    JV

    Hi
    download these documents may help you
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50c7a90f-21a3-2910-87b5-e1f0e39462ae
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/59bea890-0201-0010-9683-cf0715c48912
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1c22cf90-0201-0010-92be-b6ef4c2df31c
    Reward if helpful
    Regards
    Manohar

  • Java and Internet

    Hi,
    How to find out, a machine is got internet conection or not? Using Java.
    Please Help me,
    Thanks

    Weather the machine is got internet connection ornot?
    You didn't read my first reply, did you?Seemingly not. They always seem to need to be told the answer repeatedly. This one, at least, seems to have gotten the message after being told only twice. Most don't get it until being told at least five times, if ever. ;-)

  • PDF will not open in my firefox browser although i have updated my jave and adobe, they open in internet explore

    I recently downloaded the latest version of adobe reader, jave and the newest firefox version. I think 3.6.4 (but i could be mistaken). Ever since my firefox updated today 3/8/10 it has stopped opening pdf's in browser. All i see is a blank screen or sometimes just the loading blue bar. It will not open. I do not have this problem when i try an open the same files using internet explorer.

    See if the solutions in this article help to solve your problem: [[Opening PDF files within Firefox]]. For more information on using Adobe within Firefox, see [[Using the Adobe Reader plugin with Firefox]].

  • Dynamic faces and Internet Explorer

    Thanks for taking a second to read my post, i hope you can help. I am almost complete with my web app using Netbeans VWP and Dynamic Faces. I have come across a simple application that i can not get working in Internet Explorer and as simple as it is I am surprised that it is not working. I cant believe that the Dynamic Faces team would just ignore compatability with IE altogether. Basically i am trying to get AJAX interaction going on by adding text into a textbox and adding a new DynaFaces.fireAjaxTransaction(this); to the submit however it does not seem to work. Maybe you can help...
    Here is my page:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <webuijsf:page binding="#{testies.page1}" id="page1">
                <webuijsf:html binding="#{testies.html1}" id="html1">
                    <webuijsf:head binding="#{testies.head1}" debug="true" id="head1">
                        <webuijsf:link binding="#{testies.link1}" id="link1" url="/resources/stylesheet.css"/>
                    </webuijsf:head>
                    <webuijsf:body binding="#{testies.body1}" focus="form1:layoutPanel1:textField1" id="body1" style="-rave-layout: grid">
                        <webuijsf:form binding="#{testies.form1}" id="form1">
                            <webuijsf:button actionExpression="#{testies.button1_action}" binding="#{testies.button1}" id="button1"
                                onClick="new DynaFaces.fireAjaxTransaction(this);" style="left: 144px; top: 110px; position: absolute" text="Button"/>
                            <webuijsf:staticText binding="#{testies.staticText1}" id="staticText1" style="position: absolute; left: 170px; top: 185px"/>
                            <webuijsf:textField binding="#{testies.textField1}" id="textField1" style="position: absolute; left: 75px; top: 55px"/>
                        </webuijsf:form>
                    </webuijsf:body>
                </webuijsf:html>
            </webuijsf:page>
        </f:view>
    </jsp:root>-------------------------------------
    Here is my backing bean:
    * testies.java
    * Created on July 10, 2007, 8:39 PM
    package mypkg;
    import com.sun.rave.web.ui.appbase.AbstractPageBean;
    import com.sun.webui.jsf.component.Body;
    import com.sun.webui.jsf.component.Button;
    import com.sun.webui.jsf.component.Form;
    import com.sun.webui.jsf.component.Head;
    import com.sun.webui.jsf.component.Html;
    import com.sun.webui.jsf.component.Link;
    import com.sun.webui.jsf.component.Page;
    import com.sun.webui.jsf.component.PanelGroup;
    import com.sun.webui.jsf.component.PanelLayout;
    import com.sun.webui.jsf.component.StaticText;
    import com.sun.webui.jsf.component.TextField;
    import javax.faces.FacesException;
    import javax.faces.component.html.HtmlPanelGrid;
    * <p>Page bean that corresponds to a similarly named JSP page.  This
    * class contains component definitions (and initialization code) for
    * all components that you have defined on this page, as well as
    * lifecycle methods and event handlers where you may add behavior
    * to respond to incoming events.</p>
    public class testies extends AbstractPageBean {
        // <editor-fold defaultstate="collapsed" desc="Managed Component Definition">
        private int __placeholder;
         * <p>Automatically managed component initialization.  <strong>WARNING:</strong>
         * This method is automatically generated, so any user-specified code inserted
         * here is subject to being replaced.</p>
        private void _init() throws Exception {
        private Page page1 = new Page();
        public Page getPage1() {
            return page1;
        public void setPage1(Page p) {
            this.page1 = p;
        private Html html1 = new Html();
        public Html getHtml1() {
            return html1;
        public void setHtml1(Html h) {
            this.html1 = h;
        private Head head1 = new Head();
        public Head getHead1() {
            return head1;
        public void setHead1(Head h) {
            this.head1 = h;
        private Link link1 = new Link();
        public Link getLink1() {
            return link1;
        public void setLink1(Link l) {
            this.link1 = l;
        private Body body1 = new Body();
        public Body getBody1() {
            return body1;
        public void setBody1(Body b) {
            this.body1 = b;
        private Form form1 = new Form();
        public Form getForm1() {
            return form1;
        public void setForm1(Form f) {
            this.form1 = f;
        private TextField textField1 = new TextField();
        public TextField getTextField1() {
            return textField1;
        public void setTextField1(TextField tf) {
            this.textField1 = tf;
        private Button button1 = new Button();
        public Button getButton1() {
            return button1;
        public void setButton1(Button b) {
            this.button1 = b;
        private StaticText staticText1 = new StaticText();
        public StaticText getStaticText1() {
            return staticText1;
        public void setStaticText1(StaticText st) {
            this.staticText1 = st;
        // </editor-fold>
         * <p>Construct a new Page bean instance.</p>
        public testies() {
         * <p>Callback method that is called whenever a page is navigated to,
         * either directly via a URL, or indirectly via page navigation.
         * Customize this method to acquire resources that will be needed
         * for event handlers and lifecycle methods, whether or not this
         * page is performing post back processing.</p>
         * <p>Note that, if the current request is a postback, the property
         * values of the components do <strong>not</strong> represent any
         * values submitted with this request.  Instead, they represent the
         * property values that were saved for this view when it was rendered.</p>
        public void init() {
            // Perform initializations inherited from our superclass
            super.init();
            // Perform application initialization that must complete
            // *before* managed components are initialized
            // TODO - add your own initialiation code here
            // <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">
            // Initialize automatically managed components
            // *Note* - this logic should NOT be modified
            try {
                _init();
            } catch (Exception e) {
                log("testies Initialization Failure", e);
                throw e instanceof FacesException ? (FacesException) e: new FacesException(e);
            // </editor-fold>
            // Perform application initialization that must complete
            // *after* managed components are initialized
            // TODO - add your own initialization code here
         * <p>Callback method that is called after the component tree has been
         * restored, but before any event processing takes place.  This method
         * will <strong>only</strong> be called on a postback request that
         * is processing a form submit.  Customize this method to allocate
         * resources that will be required in your event handlers.</p>
        public void preprocess() {
         * <p>Callback method that is called just before rendering takes place.
         * This method will <strong>only</strong> be called for the page that
         * will actually be rendered (and not, for example, on a page that
         * handled a postback and then navigated to a different page).  Customize
         * this method to allocate resources that will be required for rendering
         * this page.</p>
        public void prerender() {
         * <p>Callback method that is called after rendering is completed for
         * this request, if <code>init()</code> was called (regardless of whether
         * or not this was the page that was actually rendered).  Customize this
         * method to release resources acquired in the <code>init()</code>,
         * <code>preprocess()</code>, or <code>prerender()</code> methods (or
         * acquired during execution of an event handler).</p>
        public void destroy() {
         * <p>Return a reference to the scoped data bean.</p>
        protected ApplicationBean1 getApplicationBean1() {
            return (ApplicationBean1)getBean("ApplicationBean1");
         * <p>Return a reference to the scoped data bean.</p>
        protected RequestBean1 getRequestBean1() {
            return (RequestBean1)getBean("RequestBean1");
         * <p>Return a reference to the scoped data bean.</p>
        protected SessionBean1 getSessionBean1() {
            return (SessionBean1)getBean("SessionBean1");
        // Get the text from the textbox and set it in the staticTextField
        public String button1_action() {
            String str = (String)textField1.getValue();
            staticText1.setText(str);
            return null;
    }Any help is appreciated. thx.
    Message was edited by:
    b12s

    > Hello. I have a problem with a Remote Panel and Internet Explorer. I
    > create a measurement system in LabVIEW. It?s composed of a main front
    > panel and a few subVIs with independent front panels opened from main
    > Front Panel when I press appropriate button.
    I think you have two options. You can open most modal subVI panels
    directly on a remote machine. The popup panels won't be in a web page,
    but it will work with few changes.
    A second approach would be to change the app slightly. The buttons that
    launch the subVIs will turn into URL links. The links will open a web
    page with a different embedded panel.
    Greg McKaskle

  • Java and SOAP

    I am trying to use Java and SOAP to call a Coldfusion CFC file. The problem is that I can not figure out how to call the coldfusion function by using a url to direct the SOAP request, within java. The cfc file does sql queries on a separate network so I need to send a string parameter to the function and be able to return one back to the java program.
    I have done a lot of internet research and I can not get it to work out right. My coldfusion is working correctly.

    But the Coldfusion server would still have to present a "service". This could be using web services or it could be something as simple as a small HTTP based page to take the parameters and pass back results. Somehow the Coldfusion server must present a service for this to work.
    Think of a standard HTML page with a form on it. What you're describing is similar to that - you take in parameters (the HTML form) and return results (the result from an HTTP POST). Coldfusion is acting as the web server and your Java client is acting as the browser. Until the Coldfusion server is ready to accept requests (in your case SOAP formatted requests) there is not point worrying about the client side (the Java client in your case).
    Is the Coldfusion server presenting something that can run the CFC file and return the results? Again, it could be a web service or even a REST-like service (like I described above) that your client could talk to.

  • Java and javadeveloper_for_mac_os_x_10.7.dmg

    i am having problems installing java and javadeveloper_for_mac_os_x_10.7.dmg, i keep getting an error saying,
    "...can't be installed on this disk. An error occurred while evaluating JavaScript for the package"
    On my Lion 10.7.1 running in VMWare, I can't install java or javadeveloper
    $ uname -a
    Darwin Builds-Mac.local 11.1.0 Darwin Kernel Version 11.1.0: Tue Jul 26 16:07:11 PDT 2011; root:xnu-1699.22.81~1/RELEASE_X86_64 x86_64
    on my host (Lion 10.7.2) I have java installed but I can't install javadeveloper.dmg
    $ uname -a
    Darwin Rajinders-MacBook-Pro.local 11.2.0 Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64 x86_64
    java -version
    java version "1.6.0_26"
    Java(TM) SE Runtime Environment (build 1.6.0_26-b03-383-11A511)
    Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02-383, mixed mode)
    I am trying to build firefox, there is a link here for the javadeveloper.dmg here
    https://developer.mozilla.org/En/Simple_Firefox_build

    My situation is similar in that I want to install Java runtime on Mac OS X 7.3 .. MBP ..
    When querying Terminal>Java -version it states that:
    "To open Java you need to install a Java runtime but you are not connected to the Internet"
    BUT, I assure you I am .. thoughts, ladies and gentlemen ?

  • Datasocket: link between java and labview

    Hi,
    I would like to link java and labview for a real time animation and i would like to use datasockets.
    Can somebody proficient in using datasockets help me out.
    My email id is [email protected]
    Thank u.
    jagadish.

    The person who wrote the book (literally) on LabVIEW and Java is Jeffrey Travis. His book "Internet Applications in LabVIEW" has examples. His web site is here. You can also get the book on Amazon.

  • SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.rar CRC error?

    HI,
    I've downloaded the file:
    SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.rar
    of SAP NetWeaver 7.0 - Java and ABAP Trial Version on Linux - VMware Edition
    four times and everytime a get a CRC error in the RAR file. Is the file wrong or the download incorrect?
    Regards, Edwin Slee

    Hi Henry.
    I’ve downloaded the file again. Now it is called:
    SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    But it is a RAR file.
    As you suggested I open the file with WINRAR 3.61 and select
    Tools -> repair archive
    In the directory a file:is created with the name:
    rebuilt.SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    The WINRAR message box reads:
    Detecting archive type...
    ---> RAR
    Build fixed.SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    Searching for recovery record
    ---> recovery record not found
    Build rebuilt.SAP NetWeaver 70 - Java and ABAP VMware Trial.part02.tgz
    Found SLES10SP1_Test_Drive(2)-s002.vmdk
    Found SLES10SP1_Test_Drive(2)-s003.vmdk
    Found SLES10SP1_Test_Drive(2)-s004.vmdk
    Found SLES10SP1_Test_Drive(2)-s005.vmdk
    When I open this file with WINRAR again a try to extract
    SLES10SP1_Test_drive(2)-s003.vmdk I still get a CRC error, the archive file is corrupted.
    I think the error isn’t due to the download, because I’ve downloaded the file using three different internet connections (8 times now) and all the files are identical, with a CRC error !
    Regards, Edwin Slee

  • Why are Java and Video Player updates appearing in Safari

    Today these fake Java and Video Player update pop ups started appearing in Safari 6.2.4, in OS 10.8.5.  The Java updates say I need  version 13 which doesn't exist and the video player pop ups are gray with a red square that resemble the Adobe colors.  These are popping up on almost every page I load in Safari.
    I've looked in the Launch Daemons folder and that other Launch folder that keeps being recommended in the post that says I don't need to download anything and there is nothing out of the ordinary there.  How do I stop these pop ups?
    Tracy

    The update alerts are indeed fake, and are intended to dupe you into installing malware or disclosing private information so that your identity can be stolen.
    You might get the alerts when visiting a website that has been hacked. Don't visit the site again. If applicable, notify the site administrator of the problem, but don't send email to an unknown party.
    If you get the alerts when visiting more than one well-known website, such as Google, YouTube, or Facebook, then they may be the result of an attack on your router that has caused you to get false results from looking up the addresses of Internet servers. Requests sent to those sites are redirected to a server controlled by the attacker. It's possible, but less likely, that the DNS server used by your ISP has been attacked.
    Back up all data.
    Unlock the Network preference pane, if necessary, by clicking the lock icon in the lower left corner and entering your password. Cllck Advanced, open the DNS tab, and change the server addresses to the following:
              8.8.8.8
              8.8.4.4
    That's Google DNS. Click OK, then Apply.
    In Safari, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. If you’re using another browser, empty the cache. Test. If the fake update alerts stop, see below. Otherwise, ask for instructions.
    The router's documentation should tell you how to reset it to the factory default state. Usually there's a pinhole switch somewhere in the back. It may be labeled "RESET." Insert the end of a straightened paper clip or a similar tool and press the button inside for perhaps 15 seconds, or as long as the instructions specify.
    After resetting the router, quit the web browser and relaunch it while holding down the shift key. From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Do the equivalent if you use another browser. Open the Downloads folder and delete anything you don't recognize.
    Then go through the router's initial setup procedure. I can't be specific, because it's different for every model. The key points are these:
    1. Don't allow the router to be administered from the WAN (Internet) port, if it has that option. Most do.
    2. Set a strong password to protect the router's settings: at least ten random upper- and lower-case letters and digits. Don't use the default password or any other that could be guessed. Save the password in your keychain. Any password that you can remember is weak.
    3. If the router is wireless, or if you have a wireless access point on the network, use "WPA 2 Personal" security and set a different strong password to protect the network. If the router or access point doesn't support WPA 2, it's obsolete and must be replaced.
    During the time the router was compromised, you were redirected to bogus websites. If you ever connected to a secure site and got a warning from your browser that the identity of the server could not be verified, and you dismissed that warning in order to log in, assume that your credentials for the site have been stolen and that the attacker has control of the account. This warning also applies to all websites on which you saw the fake update alerts.
    Check the router manufacturer's website for a firmware update.
    If you downloaded and installed what you thought was a software update, ask for instructions.

  • Having problems with java and website

    Can anyone help with a problem I am having using a Java Chat application on a website?
    I have tried to use Java Chat and the applet, when clicking the "private message" link, takes a long time to open up, and locks up my computer when it is doing so.
    I did download the latest version of Java to my computer and this problem exists using both the Netscape and Internet Explorer latest browsers.
    I am using Windows XP on a Dell Computer with a DSL connection.
    The website is http://www.gay.com/chat
    I did get an error message one time that saved a file to my desktop.
    Can anyone advise me what is going on?
    Any help would be greatly appreciated.
    I have contacted technical support at http://www.gay.com to no avail.
    Please write me back directly to [email protected]
    Here is the code which I am not sure has anything to do with the problem or not:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D07014F
    Function=Java_sun_awt_windows_WColor_getDefaultColor+0x28D4
    Library=C:\Program Files\Java\j2re1.4.1_02\bin\awt.dll
    Current Java thread:
         at sun.awt.windows.WToolkit.eventLoop(Native Method)
         at sun.awt.windows.WToolkit.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\IEXPLORE.EXE
    0x77F50000 - 0x77FF7000      C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000      C:\WINDOWS\system32\kernel32.dll
    0x77C10000 - 0x77C63000      C:\WINDOWS\system32\msvcrt.dll
    0x77D40000 - 0x77DC6000      C:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000      C:\WINDOWS\system32\GDI32.dll
    0x77DD0000 - 0x77E5D000      C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x7807F000      C:\WINDOWS\system32\RPCRT4.dll
    0x70A70000 - 0x70AD4000      C:\WINDOWS\system32\SHLWAPI.dll
    0x71700000 - 0x71849000      C:\WINDOWS\System32\SHDOCVW.dll
    0x71950000 - 0x71A34000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll
    0x773D0000 - 0x77BC2000      C:\WINDOWS\system32\SHELL32.dll
    0x77340000 - 0x773CB000      C:\WINDOWS\system32\comctl32.dll
    0x771B0000 - 0x772D1000      C:\WINDOWS\system32\ole32.dll
    0x5AD70000 - 0x5ADA4000      C:\WINDOWS\System32\uxtheme.dll
    0x75F80000 - 0x7607C000      C:\WINDOWS\System32\BROWSEUI.dll
    0x72430000 - 0x72442000      C:\WINDOWS\System32\browselc.dll
    0x75F40000 - 0x75F5F000      C:\WINDOWS\system32\appHelp.dll
    0x76FD0000 - 0x77048000      C:\WINDOWS\System32\CLBCATQ.DLL
    0x77120000 - 0x771AB000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77050000 - 0x77115000      C:\WINDOWS\System32\COMRes.dll
    0x77C00000 - 0x77C07000      C:\WINDOWS\system32\VERSION.dll
    0x76200000 - 0x76298000      C:\WINDOWS\system32\WININET.dll
    0x762C0000 - 0x76348000      C:\WINDOWS\system32\CRYPT32.dll
    0x762A0000 - 0x762AF000      C:\WINDOWS\system32\MSASN1.dll
    0x76F90000 - 0x76FA0000      C:\WINDOWS\System32\Secur32.dll
    0x76620000 - 0x7666E000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661B000      C:\WINDOWS\System32\CSCDLL.dll
    0x76670000 - 0x76757000      C:\WINDOWS\System32\SETUPAPI.dll
    0x10000000 - 0x1001C000      C:\Program Files\Norton SystemWorks\Norton AntiVirus\NavShExt.dll
    0x01470000 - 0x0148A000      C:\WINDOWS\System32\ccTrust.dll
    0x55900000 - 0x55961000      C:\WINDOWS\System32\MSVCP60.dll
    0x76B20000 - 0x76B35000      C:\WINDOWS\System32\ATL.DLL
    0x014D0000 - 0x016D1000      C:\WINDOWS\System32\msi.dll
    0x016E0000 - 0x01704000      C:\Program Files\Microsoft Money\System\mnyviewer.dll
    0x763B0000 - 0x763F5000      C:\WINDOWS\system32\comdlg32.dll
    0x1A400000 - 0x1A47A000      C:\WINDOWS\system32\urlmon.dll
    0x76170000 - 0x761F8000      C:\WINDOWS\System32\shdoclc.dll
    0x74770000 - 0x747FF000      C:\WINDOWS\System32\mlang.dll
    0x71AD0000 - 0x71AD8000      C:\WINDOWS\System32\wsock32.dll
    0x71AB0000 - 0x71AC5000      C:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\System32\WS2HELP.dll
    0x71A50000 - 0x71A8B000      C:\WINDOWS\system32\mswsock.dll
    0x71A90000 - 0x71A98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76EE0000 - 0x76F17000      C:\WINDOWS\System32\RASAPI32.DLL
    0x76E90000 - 0x76EA1000      C:\WINDOWS\System32\rasman.dll
    0x71C20000 - 0x71C6E000      C:\WINDOWS\System32\NETAPI32.dll
    0x76EB0000 - 0x76EDB000      C:\WINDOWS\System32\TAPI32.dll
    0x76E80000 - 0x76E8D000      C:\WINDOWS\System32\rtutils.dll
    0x76B40000 - 0x76B6C000      C:\WINDOWS\System32\WINMM.dll
    0x5CD70000 - 0x5CD77000      C:\WINDOWS\System32\serwvdrv.dll
    0x5B0A0000 - 0x5B0A7000      C:\WINDOWS\System32\umdmxfrm.dll
    0x75E90000 - 0x75F37000      C:\WINDOWS\System32\SXS.DLL
    0x76F20000 - 0x76F45000      C:\WINDOWS\System32\DNSAPI.dll
    0x76D60000 - 0x76D77000      C:\WINDOWS\System32\iphlpapi.dll
    0x76FB0000 - 0x76FB7000      C:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000      C:\WINDOWS\system32\WLDAP32.dll
    0x722B0000 - 0x722B5000      C:\WINDOWS\System32\sensapi.dll
    0x75A70000 - 0x75B15000      C:\WINDOWS\system32\USERENV.dll
    0x0FFD0000 - 0x0FFF3000      C:\WINDOWS\System32\rsaenh.dll
    0x76FC0000 - 0x76FC5000      C:\WINDOWS\System32\rasadhlp.dll
    0x63580000 - 0x6382C000      C:\WINDOWS\System32\mshtml.dll
    0x746F0000 - 0x74716000      C:\WINDOWS\System32\msimtf.dll
    0x74720000 - 0x74764000      C:\WINDOWS\System32\MSCTF.dll
    0x76390000 - 0x763AC000      C:\WINDOWS\System32\IMM32.DLL
    0x32520000 - 0x32532000      C:\Program Files\Microsoft Office\Office10\msohev.dll
    0x02430000 - 0x0244B000      C:\Program Files\Common Files\Symantec Shared\Script Blocking\scrauth.dll
    0x02560000 - 0x0257E000      C:\Program Files\Common Files\Symantec Shared\Script Blocking\ScrBlock.dll
    0x76C30000 - 0x76C5B000      C:\WINDOWS\System32\wintrust.dll
    0x76C90000 - 0x76CB2000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x73D50000 - 0x73D60000      C:\WINDOWS\System32\cryptnet.dll
    0x6B700000 - 0x6B790000      c:\windows\system32\jscript.dll
    0x746C0000 - 0x746E7000      C:\WINDOWS\System32\MSLS31.DLL
    0x73300000 - 0x73375000      c:\windows\system32\vbscript.dll
    0x03380000 - 0x03509000      C:\WINDOWS\System32\macromed\flash\Flash.ocx
    0x72D20000 - 0x72D29000      C:\WINDOWS\System32\wdmaud.drv
    0x72D10000 - 0x72D18000      C:\WINDOWS\System32\msacm32.drv
    0x77BE0000 - 0x77BF4000      C:\WINDOWS\System32\MSACM32.dll
    0x77BD0000 - 0x77BD7000      C:\WINDOWS\System32\midimap.dll
    0x65000000 - 0x65009000      C:\WINDOWS\System32\ddrawex.dll
    0x51000000 - 0x51047000      C:\WINDOWS\System32\DDRAW.dll
    0x73BC0000 - 0x73BC6000      C:\WINDOWS\System32\DCIMAN32.dll
    0x6BDD0000 - 0x6BE03000      C:\WINDOWS\System32\dxtrans.dll
    0x6BE10000 - 0x6BE65000      C:\WINDOWS\System32\dxtmsft.dll
    0x74CB0000 - 0x74D1F000      C:\WINDOWS\System32\mshtmled.dll
    0x05230000 - 0x05237000      C:\Program Files\Microsoft Money\System\urlmapps.dll
    0x71B20000 - 0x71B31000      C:\WINDOWS\system32\MPR.dll
    0x75F60000 - 0x75F66000      C:\WINDOWS\System32\drprov.dll
    0x71C10000 - 0x71C1D000      C:\WINDOWS\System32\ntlanman.dll
    0x71CD0000 - 0x71CE6000      C:\WINDOWS\System32\NETUI0.dll
    0x71C90000 - 0x71CCC000      C:\WINDOWS\System32\NETUI1.dll
    0x71C80000 - 0x71C86000      C:\WINDOWS\System32\NETRAP.dll
    0x71BF0000 - 0x71C01000      C:\WINDOWS\System32\SAMLIB.dll
    0x75F70000 - 0x75F79000      C:\WINDOWS\System32\davclnt.dll
    0x75970000 - 0x75A61000      C:\WINDOWS\System32\MSGINA.dll
    0x76360000 - 0x7636F000      C:\WINDOWS\System32\WINSTA.dll
    0x1F7B0000 - 0x1F7E1000      C:\WINDOWS\System32\ODBC32.dll
    0x1F850000 - 0x1F866000      C:\WINDOWS\System32\odbcint.dll
    0x767F0000 - 0x76814000      C:\WINDOWS\System32\schannel.dll
    0x0FFA0000 - 0x0FFC1000      C:\WINDOWS\System32\dssenh.dll
    0x66E50000 - 0x66E8B000      C:\WINDOWS\System32\iepeers.dll
    0x73000000 - 0x73023000      C:\WINDOWS\System32\WINSPOOL.DRV
    0x71D40000 - 0x71D5B000      C:\WINDOWS\System32\actxprxy.dll
    0x6CC60000 - 0x6CC6B000      C:\WINDOWS\System32\dispex.dll
    0x6D820000 - 0x6D82F000      C:\Program Files\Java\j2re1.4.1_02\bin\npjpi141_02.dll
    0x6D780000 - 0x6D796000      C:\Program Files\Java\j2re1.4.1_02\bin\jpiexp32.dll
    0x6D7C0000 - 0x6D7D4000      C:\Program Files\Java\j2re1.4.1_02\bin\jpishare.dll
    0x6D340000 - 0x6D46A000      C:\PROGRA~1\Java\J2RE14~1.1_0\bin\client\jvm.dll
    0x6D1E0000 - 0x6D1E7000      C:\PROGRA~1\Java\J2RE14~1.1_0\bin\hpi.dll
    0x6D310000 - 0x6D31E000      C:\PROGRA~1\Java\J2RE14~1.1_0\bin\verify.dll
    0x6D220000 - 0x6D239000      C:\PROGRA~1\Java\J2RE14~1.1_0\bin\java.dll
    0x6D330000 - 0x6D33D000      C:\PROGRA~1\Java\J2RE14~1.1_0\bin\zip.dll
    0x6D000000 - 0x6D105000      C:\Program Files\Java\j2re1.4.1_02\bin\awt.dll
    0x6D190000 - 0x6D1E0000      C:\Program Files\Java\j2re1.4.1_02\bin\fontmanager.dll
    0x5C000000 - 0x5C0C8000      C:\WINDOWS\System32\D3DIM700.DLL
    0x6D720000 - 0x6D731000      C:\Program Files\Java\j2re1.4.1_02\bin\jpicom32.dll
    0x6D2E0000 - 0x6D2EE000      C:\Program Files\Java\j2re1.4.1_02\bin\net.dll
    0x6D140000 - 0x6D162000      C:\Program Files\Java\j2re1.4.1_02\bin\dcpr.dll
    0x67F00000 - 0x67F07000      C:\Program Files\America Online 8.0\idleproc.dll
    0x05420000 - 0x05427000      C:\Program Files\Yahoo!\Messenger\idle.dll
    0x1FCF0000 - 0x1FFBE000      C:\WINDOWS\System32\wmploc.dll
    0x732E0000 - 0x732E5000      C:\WINDOWS\System32\RICHED32.DLL
    0x74E30000 - 0x74E9A000      C:\WINDOWS\System32\RICHED20.dll
    0x6D2B0000 - 0x6D2D1000      C:\Program Files\Java\j2re1.4.1_02\bin\jsound.dll
    0x6D290000 - 0x6D2AE000      C:\Program Files\Java\j2re1.4.1_02\bin\jpeg.dll
    0x6D510000 - 0x6D58D000      C:\WINDOWS\system32\DBGHELP.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Sun Apr 20 21:23:14 2003
    Elapsed Time = 30584
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)

    Having closely scrutinised your code for many hours, I am at a loss with this one. The one thing that is suspicious is the exclamation mark after Yahoo in the 8th line from the bottom.
    Get rid of it and give it a try.

  • Netscape 6 and Internet Explorer 5

    Could some one tell me the highest and second highest versions of Java that Netscape 6 and Internet Explorer 5 support. And where do I find out the bugs for each of these browsers get with Java ????
    Thanks
    Ben Black

    "both support Java 2 SDK 1.3.1 and the beta 1.4 version. Earlier IE versions will not support anything above 1.1"
    You must remember I have very little experience with Java, that is why I'm looking for the best book to buy to help me with it. And to buy this book I need to know what versions of Java the popular browsers support. I'm at the moment going for NS6 and IE5. So could some one explain what this Java 2 SDK and other stuff is about... I find it more than confussing....
    What I basically want to do is create a game which has loads of moving grapics, chat, loading files from the users computers and the web server. (A bit like www.habbohotel.com which is a chat place where you as a graphic can move around a hotel and chat).
    And also what would YOU recommend as being the best version of Java and what sort of Java (i.e you talk about this Java 2??) for me to do the above ????
    Sorry for being an idoit and thanks for all your help
    Ben Black

Maybe you are looking for