Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
iis
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Neil_brown001
… the desktop. It needs special permissions to run, and the
IIS
app is very restricted by default. Programs with a visual… the overall app, the other can apply to subfolders. If
IIS
doesn’t seem to match what’s in web.config…, it could be due to caching or differences in how
IIS
reads settings versus Visual Studio. Why the port number is…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
…. > > It needs special permissions to run, and the
IIS
app is very restricted by default. > > Programs with… app, the other can apply to subfolders. > > If
IIS
doesn’t seem to match what’s in web.config…, it could be due to caching or differences in how
IIS
reads settings versus Visual Studio. > > Why the port…
Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
… to achieve something. I installed the latest .net framework, and
IIS
on the latest updated windows 11. I wish to achieve… confused why there were 2 web.config files, and the
IIS
interface didnt seem to match the web.config settings, and…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
> Are you sure
IIS
is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In
IIS
, under handler mappings for .asp files, under request restriction/access, script was chosen (not execute) for feature permissions, all 'read' 'script' 'execute' are chosen
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by pritaeas
Are you sure
IIS
is configured to allow running external scripts?
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by pritaeas
> while at the same time run the same exe on the local client pc. Not possible.
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by pritaeas
No, Javascript cannot run/start executables on the client machine.
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by rproffitt
I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . You can get there.
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
Why does the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript" %> <!DOCTYPE html> <html> <Body> <% Dim objShell Dim command Dim result ' Path to the executable command = "C:\…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
> I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. > > For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . > > You can …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by john_111
Let me expand on what rproffitt said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would be hacked into tiny pieces and cease to exist. No one would ever use the web, it would be so totally insecure. So web pages are prohibited from running programs on your computer. They can …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by Salem
https://xyproblem.info/ * User wants to do X. Sometime later... > My boss just asked me to create a prototype as proof of concept. There is no specific language/tool I must use * User asks for help with Y. Initially asked... > Have a webpage with a button, when pressed, it will launch a webpage that runs a server side exe (eg, …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by Reverend Jim
>No, Javascript cannot run/start executables on the client machine. Technically correct but there are ways around it. For example, save a file in a special folder on the target computer, which has a folder watch on that folder. The watching task could then trigger a local task.
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by gediminas.bukauskas.7
Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets.
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
> Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above new …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Salem
> When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. So did it even give you `print("Waiting for a connection...")` ? Consider making your server main like this. if __name__ == "__main__": print('Server Begin') …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
> > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. > > So did it even give you `print("Waiting for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "__main__": >…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
I fixed the problem by ensuring the path is including python. Also on the server I must run pip install Thank you all All working now
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by Salem
Congrats on getting going. > Even if i run the setup and ticked the option "add to path", the echo %PATH% command didnt seem to show what i expected. Yeah, this won't transform the PATH of any existing process. In increasing annoyance order, you may have to: 1. Start a new cmd window 2. Log out and log in again 3. Reboot …
Re: Running Apache Tomcat behind a IIS reverse proxy with SSL termination
Programming
Web Development
2 Months Ago
by blud
…; actually has a lot of different subcategories in
IIS
, so the first thing is to figure out…you can enable [failed request tracing](https://www.
iis
.net/learn/troubleshoot/using-failed-request-tracing/troubleshooting-failed…-requests-using-tracing-in-
iis
) to track this down Connection Terminated - This …
Running Apache Tomcat behind a IIS reverse proxy with SSL termination
Programming
Web Development
2 Months Ago
by riahc3
… idea would be to (on the same server) install a
IIS
and use it a content switcher and also as a… SSL terminator. This was depending on the URL, the
IIS
would redirect to one spot or another. All of this… Ive tried to setup this with ARR, URL rewrite and
IIS
but for now Im only getting a "Bad Gateway…
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
WEB security now rejects mail sent from any computer. Select some mail provider and send mail using it. Using certificated WEB serve is an another solution. Obtain legal certificate, register it on WEB server (
IIS
, Apache, NGINX, ...)
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
… when anybody could to send a mail from Apache (or
IIS
) installed on local computer but internet spammers have used that…
IIS 6.0 ODBC Logging
Hardware and Software
Microsoft Windows
15 Years Ago
by Alex_808
IIS
6.0 Does not log every hit on are web … a bunch of errors loged in the Evenet Viewer: [B]
IIS
ODBC Logging failed to log data to data source HTTPLog…
Re: Iis, apache, firefox
Programming
Web Development
15 Years Ago
by Webhost4life
IIS
should be running on the Windows, Apache should be running on the Linux Seems I didn't encounter a hosting company can offer this 2
iis
on one same server. I know the PHP, ASP, ASP.NET can be run on the Windows hosting, some of good ASP, ASP.NET web hosting service providers can be found on the page [URL removed] Good Luck!
IIS
Programming
Web Development
16 Years Ago
by Ninad16
I am a beginner.Please help me out... What is
IIS
?How do we run and install
IIS
?Why is
IIS
required?
Re: IIS
Programming
Software Development
13 Years Ago
by Luc001
Hi, For more information about
IIS
, look [URL="http://learn.
iis
.net/page.aspx/243/aspnet-integration-with-
iis
-7/"]here.[/URL]
Re: IIS
Programming
Web Development
14 Years Ago
by ajwei810192
… studio 2008,but when I put it in \wwwroot in
IIS
, database not working.PLS solve my problem.[/QUOTE] I have… problems also with
IIS
. I am trying to learn ASP.NET, and I installed…
IIS
and Microsoft .Net Framework 3.5. I then restarted my …
IIS Help
Hardware and Software
Microsoft Windows
14 Years Ago
by Reliable
… have made there seems to be a problem with my
IIS
. I'm using XP Pro SP3 and I have…
IIS
5.1. When trying to access my local host I …
IIS
Programming
Software Development
13 Years Ago
by Netcode
… i have tried to host it on the local server (
IIS
) but i keep getting the following error message from…
IIS
: HTTP Error 500.21 - Internal Server Error Handler "PageHandlerFactory-…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC