Javascript interface with RS-232 Serial Port - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:46:43Z http://stackoverflow.com/feeds/question/592099 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port 1 Javascript interface with RS-232 Serial Port Neil 2009-02-26T19:46:01Z 2009-04-07T17:14:00Z <p>I am currently working on a project that involves a 4 Port A/V switch. This switch can be controlled via RS-232.</p> <p>The computer that will interface with the switch runs Vista. I would like to create a sidebar gadget that has 4 buttons- 1 for each port on the switch. When the user presses the button, it switches to that port. </p> <p>I have done a bit of googling, and it seems that there isn't a very good way to interface between javascript and rs-232.</p> <p>Does anyone have any suggestions for me?</p> <p>Thanks!</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/592119#592119 4 Answer by Diodeus for Javascript interface with RS-232 Serial Port Diodeus 2009-02-26T19:50:22Z 2009-02-26T19:50:22Z <p>I think you'll need to add a Java or Active-X layer in between. JavaScript is pretty well isolated (deliberately) from the OS.</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/592285#592285 1 Answer by ironfroggy for Javascript interface with RS-232 Serial Port ironfroggy 2009-02-26T20:26:25Z 2009-02-26T20:26:25Z <p>You could try looking at something like V8 and writing a small wrapper for the C library to expose to the VM.</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/592384#592384 1 Answer by svinto for Javascript interface with RS-232 Serial Port svinto 2009-02-26T20:51:26Z 2009-02-26T20:51:26Z <p>You need a RS-232 ActiveX component that you install on the system and then create an object from in the javascript code in your sidebar widget. Note that there is no standard to create objects from ActiveX components, this is only available in JScript, Microsoft's implementation of the language we all know as Javascript.</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/592424#592424 2 Answer by Adam Davis for Javascript interface with RS-232 Serial Port Adam Davis 2009-02-26T20:59:54Z 2009-02-26T20:59:54Z <p>Do you like convoluted hacks?</p> <p>Install a webserver. Use CGI, Python, PHP, Perl, or some other method to control the serial port from a page on the webserver.</p> <p>Point the control at the webpage.</p> <p>-Adam</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/592437#592437 2 Answer by TJ for Javascript interface with RS-232 Serial Port TJ 2009-02-26T21:02:56Z 2009-02-26T21:02:56Z <p>I don't have a solution, but here could be a start of one.</p> <ol> <li>Signed java applet would give you access to the system</li> <li>Use RXTX (Java Serial COM API) to connect to serial ports</li> <li>Applet would need to install files to the jre/ext folder. Restart the app after doing so.</li> </ol> <p>Now if you're running the javascript from your own machine you could use <a href="http://en.wikipedia.org/wiki/HTML%5FApplication" rel="nofollow">HTA</a> to have full access to the system.</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/592446#592446 2 Answer by Jason S for Javascript interface with RS-232 Serial Port Jason S 2009-02-26T21:07:09Z 2009-02-26T21:07:09Z <p>Javascript in particular, or just from the browser with some method? And which browser? (IE or Firefox?) Firefox plugins using XUL + javascript are pretty easy, although you'd still have to implement something in XPCOM (the Mozilla equivalent of ActiveX/COM) to work the RS232.</p> <p>Alternatively you could use <a href="http://www.jsdb.org" rel="nofollow">JSDB</a> as an impromptu web server (on an alternate port of the local machine). It's ridiculously easy to use the RS232 port in JSDB:</p> <pre><code>c:\&gt;jsdb js&gt;S=new Stream('com1://115200'); com1 js&gt;S.write('\x00'); // send ASCII character 0 to the serial port 1 js&gt; </code></pre> <p>So your browser-side implementation could just be whatever your favorite bookmark/link/thingy is that links to <code>http://localhost:9999/comport/1</code> where 9999 is the port # JSDB is listening to, and "1" is the serial port switch. The JSDB code would listen to the port and send the appropriate RS232 command after parsing a GET request from the browser.</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/592518#592518 0 Answer by Neil for Javascript interface with RS-232 Serial Port Neil 2009-02-26T21:27:26Z 2009-02-26T21:27:26Z <p>I'm sorry to be posting under my own question- I hadn't registered, so now I cannot edit it.</p> <p>I wanted to implement a Vista Sidebar Gadget for the task. unfortunately it looks like those are just basically html documents with javascript, so it doesn't look like that is going to be a good solution for me. I'll probably just write a little .Net application or something.</p> <p>Thank you for all of your input though. If any one still has ideas, I'll take them.</p> http://stackoverflow.com/questions/592099/javascript-interface-with-rs-232-serial-port/726716#726716 0 Answer by Tracker1 for Javascript interface with RS-232 Serial Port Tracker1 2009-04-07T17:14:00Z 2009-04-07T17:14:00Z <p>AFAIK, Vista gadget's runtime supports the use of signed ActiveX controls. You may also be able to use Java. You can create an ActiveX wrapper to .Net which has a fair amount of support for serial devices. For the most part ActiveX + Serial communications is limited to commercial controls.</p>