View Full Version : Is it possible execute an application on the Web server through an ASP page?
laxy_m
09-25-2004, 09:44 AM
hi!!
Every one guide me Is it possible execute an application on the Web server through an ASP page?
Thanks
Laxy
www.funspot.com (http://www.funspot.com)
BigDaddy
09-27-2004, 05:31 PM
Such as?
What are you trying to do?
laxy_m
12-01-2004, 07:21 AM
I have created an FaxThread application for sending and recieving Fax and trying to use it through my ASP script..
regards,
Laxy
http://www.funspot.com
Roelf
12-01-2004, 07:33 AM
did you create that application as an activex component? then you can use asp to invoke it. If not (just commandline) then you have to create a wscript.shell object and execute the commandline that way
search for wscript.shell on this forum (or google) it will give you something to start with
ghell
12-01-2004, 01:15 PM
i disable execute on my ftp server when setting up accounts so its possible to do it remotely, i dont know about though asp
tboss132
12-01-2004, 02:39 PM
It's best to deploy it as an active x dll. That way you can call the functions from your asp code.
rynox
12-01-2004, 05:37 PM
did you create that application as an activex component? then you can use asp to invoke it. If not (just commandline) then you have to create a wscript.shell object and execute the commandline that way
search for wscript.shell on this forum (or google) it will give you something to start with
I didn't think IIS gave you script access to the WScript object for security. That is why you have to use the Server object... i.e. Server.CreateObject("ADODB.Recordset")
Roelf
12-01-2004, 10:07 PM
Server.CreateObject("WScript.Shell")
there you have it
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.