Run exe from webserver

M

me_asDeveloper

Hi ,
We have been stugling with this issue for quite some time. Our basic
requirement was to develop a web based tool for windows performance
monitoring and reporting. We have been using visual studio 2005 and sql for
this. We have developed the application in windows form using c# and have
created an exe of the same. we have also developed a web front end which is
hosted in web server.We need to call this exe from web environment. We tried
this in local environment (ie local pc with out hosting web) and it worked
with the path we gave , but is not working when we try to connect using web.
Pls help us out a way to get windows application to be launched when we
click and web page link.
Also we require to run exe and not go with download option.
Thaks in advance,




--
Saif ,
Developer,
empahsis pvt ltd,
bangalore
560065
 
W

Willy Denoyette [MVP]

me_asDeveloper said:
Hi ,
We have been stugling with this issue for quite some time. Our basic
requirement was to develop a web based tool for windows performance
monitoring and reporting. We have been using visual studio 2005 and sql
for
this. We have developed the application in windows form using c# and have
created an exe of the same. we have also developed a web front end which
is
hosted in web server.We need to call this exe from web environment. We
tried
this in local environment (ie local pc with out hosting web) and it worked
with the path we gave , but is not working when we try to connect using
web.
Pls help us out a way to get windows application to be launched when we
click and web page link.
Also we require to run exe and not go with download option.
Thaks in advance,




--
Saif ,
Developer,
empahsis pvt ltd,
bangalore
560065

Hmm... do you really suppose that the Windows application (the exe) will run
at the client?
Actually when you start a Windows application from a Webserver application,
the Windows application will run at the server, this in an invisible
desktop. So what you are trying makes no sense at all, you really need to
move the functionality (what you have now in your Windows Foms app.) in a
web application or in a WebService.

Willy.
 
P

parez

Hi ,
We have been stugling with this issue for quite some time. Our basic
requirement was to develop a web based tool for windows performance
monitoring and reporting. We have been using visual studio 2005 and sql for
this. We have developed the application in windows form using c# and have
created an exe of the same. we have also developed a web front end which is
hosted in web server.We need to call this exe from web environment. We tried
this in local environment (ie local pc with out hosting web) and it worked
with the path we gave , but is not working when we try to connect using web.
Pls help us out a way to get windows application to be launched when we
click and web page link.
Also we require to run exe and not go with download option.
Thaks in advance,

--
Saif ,
Developer,
empahsis pvt ltd,
bangalore
560065

when you say web based tool for windows monitoring? is it for the same
windows server as the web server or do have a network of windows
server?

If i have understood correctly, you mite have to write a web
service( that gets the information from somewhere) and spits out the
data and a win forms application or ( smart client application ) that
reads the web service data and displays it.


Check out the links below.. they mite come handy..

http://download.microsoft.com/download/9/a/1/9a1115fd-8ba8-4aa0-a82e-07044bd12ac0/SCAG.pdf


http://www.visualwebgui.com/Default.aspx?tabid=275
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top