Local Computer....

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

    Local Computer....

    Is it possible to interact with local computer in some way with JavaScript ?
    Like sending a message (SendMessage/PostMessage) to a local
    program.

    I want to write a service; installed on the client computer. When a user is
    on the webpage the webpage can send some kind of messages to my
    service program.

    Is this possible or must I use Java ?


  • Lasse Reichstein Nielsen

    #2
    Re: Local Computer....

    "GTi" <nospam@online. com> writes:
    [color=blue]
    > Is it possible to interact with local computer in some way with JavaScript ?
    > Like sending a message (SendMessage/PostMessage) to a local
    > program.
    >
    > I want to write a service; installed on the client computer. When a user is
    > on the webpage the webpage can send some kind of messages to my
    > service program.[/color]

    If you have already installed something on the user's computer, then
    anything is possible. Just let the service communicate using HTTP,
    like a web server, and you can make connections to it using the normal
    browser features.

    /L
    --
    Lasse Reichstein Nielsen - lrn@hotpop.com
    DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
    'Faith without judgement merely degrades the spirit divine.'

    Comment

    • GTi

      #3
      Re: Local Computer....

      Ahhh, you are think of posting to 127.0.0.1 ?
      But is it possible to post anything without a window?


      "Lasse Reichstein Nielsen" <lrn@hotpop.com > wrote in message
      news:1xs7wyfr.f sf@hotpop.com.. .[color=blue]
      > "GTi" <nospam@online. com> writes:
      >[color=green]
      > > Is it possible to interact with local computer in some way with[/color][/color]
      JavaScript ?[color=blue][color=green]
      > > Like sending a message (SendMessage/PostMessage) to a local
      > > program.
      > >
      > > I want to write a service; installed on the client computer. When a user[/color][/color]
      is[color=blue][color=green]
      > > on the webpage the webpage can send some kind of messages to my
      > > service program.[/color]
      >
      > If you have already installed something on the user's computer, then
      > anything is possible. Just let the service communicate using HTTP,
      > like a web server, and you can make connections to it using the normal
      > browser features.
      >
      > /L
      > --
      > Lasse Reichstein Nielsen - lrn@hotpop.com
      > DHTML Death Colors:[/color]
      <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>[color=blue]
      > 'Faith without judgement merely degrades the spirit divine.'[/color]


      Comment

      • Thomas 'PointedEars' Lahn

        #4
        Re: Local Computer....

        GTi wrote:
        [color=blue]
        > Ahhh, you are think of posting to 127.0.0.1 ?[/color]

        Yes.
        [color=blue]
        > But is it possible to post anything without a window?[/color]

        You need a shell script for that, try (not)
        the Windows Script Host in M$ Windows.
        [color=blue]
        > [Top post][/color]

        Do not do that again, thanks.


        PointedEars

        Comment

        Working...