vote up 2 vote down star
1

How can I use the browser as a UI for a desktop app? The ways I have come up with so far are...

  1. Use all HTML/Javascript. Problem: Can't access filesystem or just about anything else.
  2. Run a local webserver while the application is in use. Problem: How do I kill it when the user is done? My users are not technical enough to Ctrl+C.
  3. Embed a browser component in a regular GUI. Problem: Embedded browser components tend to be glitchy at best. The support for Javascript/CSS is never as good as it is in a real browser.
  4. ...?

The ideal solution would work with any technology. I know there are options like writing Firefox extensions, but I want to have complete freedom in the backend technology and browser independence.

flag

1  
Interesting you should ask: I am crafting an NPAPI plugin (Firefox, Chrome) for discovering "desktop applications" available through HTTP. It is based on Avahi mdns Service Discovery. – jldupont Oct 29 at 12:13
1  
I have also opened some "bugs" on Chromium for helping towards this goal. – jldupont Oct 29 at 12:14

5 Answers

vote up 1 vote down check

In Windows, you could embed the IE ActiveX control, which uses the same rendering engine as IE. (That's a plus and a minus) You can set the ScriptObject property in your host code and access it in Javascript as window.external to do things that Javascript cannot do.

If you run a local webserver, you could have an exit link in the app that kills the websever.

link|flag
What I'm having trouble figuring out is how to write the kill link. I've come up with one solution, but it's very hacky. The servers I've been trying have all been Python, but any kind of concrete example would be cool. – Daniel Straight Oct 29 at 12:15
And of course there's the problem that the user may not click the kill link. – Daniel Straight Oct 29 at 12:16
If you host a WebBrowser control, you could kill the server when the host app exits. Otherwise, you could kill the server some time after the last request, and send heartbeats in your pages in case the user leaves it alone for a while. Or, you could just leave it running. – SLaks Oct 29 at 12:19
I like the idea of sending heartbeats. I'm having trouble finding the off switch on any Python webserver though. They all seem to assume you would never want to kill the server in code. – Daniel Straight Oct 29 at 12:20
I can't help you there. You could ask a separate question here. – SLaks Oct 29 at 12:22
vote up 2 vote down

Please note that if you choose to run a local webserver, you're creating a security risk.

Any webpage running on the same machine that knows about your app can send requests to your server using Javascript, and you have no simple and reliable way of knowing what the request came from. (Don't trust the referer header)

Google Desktop, which uses a similar approach, has had several real-world vulnerabilities that allow any webpage to read any file on disk.

There are several ways to protect against this; I would recommend requiring each request to have a auth key which is randomly generated per-machine (and expires at some point), which you could put in the source for the actual pages. XHR protection would prevent malicious websites from reading the auth key, rendering them powerless.

link|flag
1  
Can't the local server be set to only accept requests from the same machine it's running on? – Daniel Straight Oct 29 at 12:28
Yes; I meant that Javascript on the same client could send such requests. – SLaks Oct 29 at 12:29
1  
Interesting.... – Daniel Straight Oct 29 at 12:31
Why does the XHR protection not prevent the requests in the first place? I'm not sure I'm completely understanding this here. – Daniel Straight Oct 30 at 13:15
XHR prevents other pages from reading the responses, but not from sending requests. The level of vulnerability depends on what the requests do. I'm not sure how the Google Desktop vulnerability allowed attackers to read files, but I beleive it did. – SLaks Oct 30 at 13:50
vote up 2 vote down

If you are looking for a python Web Server with a Kill link, you could always check CherryPy.

import webbrowser
import cherrypy
import threading

class MyApp:
    """ Sample request handler class. """

    @cherrypy.expose
    def index(self):
        return """<html><head><title>An example application</title></head>
<body>
<h1>This is my sample application</h1>
Put the content here...
<hr>
<a href="/exit">Quit</a>
</body></html>"""

    @cherrypy.expose
    def exit(self):
        raise SystemExit(0)


class MyBGThread(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
        self.start()

    def run(self):
        cherrypy.tree.mount(MyApp())
        cherrypy.quickstart()

myThread = MyBGThread()
webbrowser.open("http://127.0.0.1:8080")

This code is based on the sample from the SingleClickAndRun on the cherrypy website: http://tools.cherrypy.org/wiki/SingleClickAndRun

Note than in a normal WebApp you would probably use a templating engine and load templates from methods like main.

Something that would be nice would be to embbed a browser control in a gui window and close the server when the app exits.

For the security, you could possibly add an authentication scheme. There are a few that are supported by cherrypy, but you possibly could implement your own too, using tool modules.

link|flag
This is the kind of stuff I'm looking for. Thanks. – Daniel Straight Oct 30 at 3:18
vote up 1 vote down

You did not mention the OS you will need to target. But you might be able to create a program statared web server, then launced the default browser. Wait until the browser is terminated by the user and then shut down the web server.

So for example on windows you can use CreateProcess() to spawn the process then MsgWaitForMultipleObjects() to wait until it is finished executing.

link|flag
OS independence would be fabulous as well, but Windows is what I'm working on. This seems like it could work. The user could still leave the browser open and use it for browsing other sites, but at least I know eventually it will get closed. There may be an issue though if the browser decides to open the app in a new tab rather than new browser. I think Firefox does this even when called from the command line. – Daniel Straight Oct 29 at 12:19
2  
If you wait for the browser to close, you'll never stop waiting. Remember that all modern browsers support tabs, so that many people, myself included, run a browser 24/7. – SLaks Oct 29 at 12:20
1  
Also, if the browser is already running, you won't even get a new process to wait on. – SLaks Oct 29 at 12:21
... except on Google Chrome: each tab is a separate process. – jldupont Oct 29 at 12:30
Yes, but I don't think that that separate process is the same one that you launched. (I could be wrong, though) – SLaks Oct 29 at 12:33
vote up 0 vote down

HTML Applications (HTA, for short) have been around for a while. You can read all about them here. They are basically HTML and Javascript with some extra options to create a window and with access to the local file system. They seem to be exactly what you want. It is Microsoft technology, so this will only work with IE on Windows systems. I've successfully used this as a front-end for a CD-ROM which was used to distribute software to first year students

Another option would be to use Adobe Air. I'm not all that familiar with the technology, but it seems to provide a framework to deploy web pages as desktop applications. I can't post a second link as a guest, but just google it and you'll find it soon enough.

link|flag
Actually, this is exactly what I don't want, because "I want to have complete freedom in the backend technology and browser independence." – Daniel Straight Oct 29 at 15:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.