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.

exception image

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 ?

link|improve this question

78% accept rate
Are you using ajax with server side state saving? An SSCCE would help a lot. – BalusC Jan 30 at 16:40
What would be an SSCCE Bauke ? – Valter Henrique Jan 30 at 17:05
The minimum necessary but complete code which we could just copy'n'paste'n'run to reproduce exactly the problem you're seeing (in other words, you should by yourself also be able to just copy'n'paste'n'run it to see it yourself). For JSF that would be the entire view (smallest possible! thus all irrelevant tags/attributes omitted) from <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
Ok Bauke, I'm gonna do that, I'm not in my computer (where the project is hosted) but tomorrow I do that what you said friend, thanks. – Valter Henrique Jan 30 at 18:12
I update my post Bauke, thanks for the help. – Valter Henrique Jan 31 at 11:11
show 5 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.