How to invoke client ActiveX via javascript
        Posted  
        
            by Captain Kidd
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Captain Kidd
        
        
        
        Published on 2010-03-25T02:14:06Z
        Indexed on 
            2010/03/25
            2:23 UTC
        
        
        Read the original article
        Hit count: 519
        
Hi I want to let server to invoke client ActiveX via javascript. The script work well as it run on my local system. Then I place it into Apache Server and it's malfunction.
Script:
<object id="lv_obj"  classid = "CLSID:30A92485-94D2-4CBA-AC32-EF276B7F777B" CODEBASE="" ></OBJECT>
try {
   document.all.lv_obj.Init("PCS_Tes");
} catch (err) {
   window.alert("????: " + err.message);
}
I guess the reason is script on server can't invoke user client ActiveX. If I need config something on Apache?
© Stack Overflow or respective owner