browser based application without web server

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sagar

    #1

    browser based application without web server

    Hello friends,

    I want to know if it is possible to develop a browser based application
    for the local desktop (running win XP) without the need for a web
    server.

    This should be something like google desktop search. I should be able
    to submit a form to say a php script but without the web server
    running. Google desktop search uses the following url (on my pc)
    http://127.0.0.1:4664/&s=eHBfrbI3_MvaWmn9J9x2UG-xh6U .

    If this is atall possible please tell me the details like where the php
    script is to be stored and what url is to be used to access the same.



    Regards,
    Sagar Arlekar

  • Kim André Akerø

    #2
    Re: browser based application without web server

    sagar wrote:
    [color=blue]
    > Hello friends,
    >
    > I want to know if it is possible to develop a browser based
    > application for the local desktop (running win XP) without the need
    > for a web server.
    >
    > This should be something like google desktop search. I should be able
    > to submit a form to say a php script but without the web server
    > running. Google desktop search uses the following url (on my pc)
    > http://127.0.0.1:4664/&s=eHBfrbI3_MvaWmn9J9x2UG-xh6U .
    >
    > If this is atall possible please tell me the details like where the
    > php script is to be stored and what url is to be used to access the
    > same.[/color]

    Google Desktop Search actually runs a small web server on your PC
    that's not available to anyone outside the computer. A web server can
    also run on any port; the one for Google Desktop Search runs on port
    4664.

    In short, to make a browser-based application that utilizes PHP, you
    will need to run a web server as well. A light-weight web server that's
    able to run PHP scripts will do.

    --
    Kim André Akerø
    - kimandre@NOSPAM betadome.com
    (remove NOSPAM to contact me directly)

    Comment

    • sagar

      #3
      Re: browser based application without web server

      Hi Kim,

      Thanks a lot for your reply.
      Just some more help, do you know any really-really small webserver that
      works with PHP.



      Sagar

      Comment

      • juglesh

        #4
        Re: browser based application without web server


        sagar wrote:[color=blue]
        > Hello friends,
        >
        > I want to know if it is possible to develop a browser based application
        > for the local desktop (running win XP) without the need for a web
        > server.[/color]

        maybe this:

        --
        j

        Comment

        • Csaba  Gabor

          #5
          Re: browser based application without web server

          Kim André Akerø wrote:[color=blue]
          > sagar wrote:[color=green]
          > > I want to know if it is possible to develop a browser based
          > > application for the local desktop (running win XP) without the need
          > > for a web server.
          > >
          > > This should be something like google desktop search. I should be able[/color][/color]
          ....[color=blue]
          > Google Desktop Search actually runs a small web server on your PC
          > that's not available to anyone outside the computer. A web server can
          > also run on any port; the one for Google Desktop Search runs on port
          > 4664.
          >
          > In short, to make a browser-based application that utilizes PHP, you
          > will need to run a web server as well. A light-weight web server that's
          > able to run PHP scripts will do.[/color]

          This is not, strictly speaking, true. There are different
          architectures for creating browser based applications. For example,
          using VBScript it is possible to have a program that monitors whenever
          a new instance of IE is invoked, and even whenever any new page is
          loaded. And since PHP 5 does COM, client side PHP can do the same
          thing, including event driven interaction with a browser page. Because
          the script is empowered (trusted), it can interact with the desktop,
          too, so that there is no reason for a server. All the same, there is
          scant documentation on this - I recommend having a local server as a
          better option.

          Csaba Gabor from Vienna

          Comment

          Working...