I developed a website in JSF 2. But one page 'showroom' gives an exception in Internet Explorer when if I try to do the same thing in Google Chrome everything runs ok. I cannot say more about this exception 'cause I really don't know anything about it. Just this what I'm showing to you guys.
The exception occurs when I hit 'Lâmpada' (which in English means lamp). Here you can turn on/off a lamp remotely. As I said everything works fine, the whole site, even in IE. Just the page 'showroom' gives this error.

EDIT:
My showroom.xhtml page:
<h:form id="form_supervisory">
<h:panelGrid columns="1">
<p>
<APPLET CODE="YawApplet.class" ARCHIVE="YawApplet.jar" CODEBASE="http://valterhenrique.dyndns.info:8081/" WIDTH="645" HEIGHT="485">
<param name="Host" value="valterhenrique.dyndns.info" />
<param name="Port" value="8081" />
<param name="Zoom" value="true" />
</APPLET>
</p>
<h:commandButton value="Lâmpada" action="#{supervisoryc.light}" styleClass="button-5" >
<f:ajax execute="@form" render="@none" />
</h:commandButton>
</h:panelGrid>
</h:form>
The applet is to stream my webcam only, I use Yawcam.
The bean:
@ManagedBean(name="supervisoryc")
@SessionScoped
public class SupervisoryControl implements Serializable {
private static final long serialVersionUID = -2313043518176548344L;
public void light(){
Client client = new Client();
client.send("valterhenrique.dyndns.info", "lamp");
}
}
And the socket class:
public class Client {
public void send(String ip, String message){
Socket s = null;
PrintStream ps = null;
try{
s = new Socket(ip, 7000);
ps = new PrintStream(s.getOutputStream());
ps.println(message);
}catch(IOException ioe){
throw new RuntimeException(ioe.getMessage());
}finally{
try{
s.close();
}catch(IOException e){}
}
}
}
And that's all I need to my application works. Any idea why this is happening ?
<html>until with</html>and if necessary a managed bean class (you can omit obvious getters/setters for brevity). Mentioning the exact JSF impl/version, server impl/version and IE version would also be helpful. – BalusC Jan 30 at 17:25