herbert wrote:
...another strange thing:

The IE just stops showing the HTML-file, when the <applet>-tag is reached in
the source-code of the HTML-file, that is, every HTML-Tag before the
<applet>-tag is shown on the screen, every HTML-Tag after the <applet>-tag
is not shown on the screen.
If I ask the browser, to show me the (HTML) source code for the page, the
full page-code is available.

I don't know, what this it???

Hi.
I know we also had some trouble getting the same applet to work properly
in both IE and FF, because different browsers tend to interpret attributes slightly differently. Following is the tag we now use, which works in both. Maybe you can spot some difference with what you are using ?

<applet type="application/x-java-applet" width="600" height="350"
        name="jsapplet" id="jsapplet"
        codebase="/japps"
        code="UploadClient.class"
        archive="getmulti.jar"
        MAYSCRIPT="true"
>
        <param name="MAYSCRIPT" value="true" />
        <param name="language" value="en" />
        <param name="country" value="US" />
        <param name="script" value="/cgi-bin/multidox.pl" />
        <param name="formname" value="form-addcoll" />
        <param name="color" value="#c8d7e3" />
        <param name="debuglevel" value="1" />
Your Browser does not support the needed Java VM version. Please get Sun 1.4 JRE or higher.
</applet>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to