How to send data to/from an ASP.NET and a Project (.exe)

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

    How to send data to/from an ASP.NET and a Project (.exe)

    Hi,

    You all have been so helpful to me before so I thought I'd ask this.

    I have a web page (ASP.NET) and I need to send data from this web
    page
    directly to an application (executable) I've developed that runs on a
    seperate server.
    I could write a file on the seperate server and have the executable
    check for new
    files every second or so, but that sounds like an old solution.

    Is there a way to write from anywhere (a URL for instance) to any
    application running
    on a particular server?

    Thanks much in advance.

    Steve
  • clintonG

    #2
    Re: How to send data to/from an ASP.NET and a Project (.exe)

    This objective is generally achieved using a Web Service. If you require
    time dependency another developer told me he used a Windows Service to solve
    the matter but he had control of his server to do so. You might also look
    into Microsoft's Synch Framework and the Windows RSS Platform.

    "S_K" <steve_kershaw@ yahoo.comwrote in message
    news:3283c5d4-2f7f-4f2e-bf97-f73ce1154b07@h1 g2000prh.google groups.com...
    Hi,
    >
    You all have been so helpful to me before so I thought I'd ask this.
    >
    I have a web page (ASP.NET) and I need to send data from this web
    page
    directly to an application (executable) I've developed that runs on a
    seperate server.
    I could write a file on the seperate server and have the executable
    check for new
    files every second or so, but that sounds like an old solution.
    >
    Is there a way to write from anywhere (a URL for instance) to any
    application running
    on a particular server?
    >
    Thanks much in advance.
    >
    Steve

    Comment

    Working...