我已经从Tomcat 6 Web应用程序中更改了嵌入在网页中的applet,以便能够调用Javascript函数(import netscape.javascript。*;),现在突然间我在访问网页时遇到404错误使用IE9文本:
错误404 - 未找到。 此服务器上没有上下文匹配或处理此请求。 此服务器已知的上下文是: html_javascript(/ html_javascript)
和Chrome一样。
我需要做一些额外的事情来完成这项工作吗?为什么会出现这个错误?
答案 0 :(得分:0)
通过将MAYSCRIPT添加到html中的applet标记来解决问题。
像这样:
<applet code="com.example.MyApplet.class" name="myapplet" codebase="http://localhost:8080/example/classes" align="baseline"
width="200" height="200" MAYSCRIPT>
<PARAM NAME="model" VALUE="models/HyaluronicAcid.xyz">
alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason."
Your browser is completely ignoring the <APPLET> tag!
</applet>