Re: Cannot run exe from asp.net Programming Web Development by lennyli ….SOCK_STREAM) client_socket.connect(('REMOTE_IP_ADDRESS', 9999)) # Replace with the server's IP address while True: command = input("Enter command….connect(('192.168.0.2', 9999)) # Replace with the server's IP address ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^ TimeoutError: [WinError 10060] A connection attempt… Re: Cannot run exe from asp.net Programming Web Development by lennyli …for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "…gt; > Your client failed with the timeout because your server isn't running. > > > A …successfully, but as i said disappointingly the python server.py command didnt output any text before returning control… Re: Cannot run exe from asp.net Programming Web Development by Salem …When I run the command "python server.py" on the server pc, it held for a second, …if __name__ == "__main__": print('Server Begin') main() print('Server End') You can add more prints in the… Your client failed with the timeout because your server isn't running. A very basic test: At… Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 …Notepad, but: It will run in the background on the server, not visibly on the desktop. It needs special permissions …your site in Visual Studio, it uses a development web server (Kestrel or IIS Express), which picks a random port.…you want a button that launches an app: On the server: Only for background tasks, not for opening windows. On… Re: Cannot run exe from asp.net Programming Web Development 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 by lennyli … on client machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above… Re: Cannot run exe from asp.net Programming Web Development 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 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: Custom Media Server Hardware and Software Linux and Unix by Vince_6 I used Plex and a Mac for years to stream to my TV. When I switched to linux, PLex ran but couldn't find my media directories. I finally found a product called Emby. It has a server that runs and aps for many different divices. It even has one for my FireTV. Works great. Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes Programming Web Development by Neil_brown001 … routes where components at multiple levels depend on both initial server-side data and real-time client-side updates via WebSockets… atomic reactivity and state consistency across nested layouts/components when: Server-rendered state initializes the component. WebSocket pushes real-time updates… Is linux your daily driver? Hardware and Software Linux and Unix by Dani Linux has come a long way, but it's still primarily a server OS, correct? How many of you linux fanboys and girls use it as your primary operating system for daily tasks? How does it compare to Windows or macOS in terms of productivity and overall user experience? What are some underrated React JS best practices? Programming Software Development by James_228 … see often in junior dev codebases? Have you used React Server Components or Signals yet? Share your tips, tools, or even… Cannot run exe from asp.net Programming Web Development by lennyli …, when pressed, it will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr), while at… Re: Cannot run exe from asp.net Programming Web Development by lennyli …\wwwroot\ribbons.scr" ' Create a shell object Set objShell = Server.CreateObject("WScript.Shell") ' Run the executable result = objShell… Re: Cannot run exe from asp.net Programming Web Development by lennyli … be seen as a notebook computer that has a web server installed. It is connected only to a wifi router without… Re: Cannot run exe from asp.net Programming Web Development by john_111 … handle data transfers such as access a database on the server. Or a javascript to alter the web page if you… Re: Cannot run exe from asp.net Programming Web Development by Salem …, when pressed, it will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr), while at… Re: Page Speed Issue Digital Media Digital Marketing by ashleydent4u …-built and heavier in structure. Things like lazy loading, efficient server-side rendering, and minimizing JS/CSS manually can be trickier… Re: Is linux your daily driver? Hardware and Software Linux and Unix by Reverend Jim I've tried loinux several times over the years on spare computers, virtual machines, and a Raspberry Pi. I gave up on all of them because it was too difficult to maintain. Now all I use it for is Live USB recovery tools. Re: Is linux your daily driver? Hardware and Software Linux and Unix by Salem I use it all day, every day. TBH, M$ stopped being an OS company after Windows 7 and the so-called OS just became a marketing tool to ram ever more crap in front of your face. Re: Is linux your daily driver? Hardware and Software Linux and Unix by Vince_6 I used Linux on and off for years. I was finally willing to commit to Windows 11 when it installed some updates and it went into a reboot loop afterwards. I said screw it and went back to Linux. Been using it for months as my primary OS and I am quite happy with the decision. Re: Is linux your daily driver? Hardware and Software Linux and Unix by Dani I started this thread thinking about James, DaniWeb's sysadmin, who I was surprised to hear uses Windows as his daily driver, despite his proficiency in Linux. I believe he quoted things like Linux not being ideal for gaming. I'm macOS only these days. Re: Is linux your daily driver? Hardware and Software Linux and Unix by Benjamin_17 The last time I used Windows was Windows XP when I got a blue screen of death trying to install it. Since then, I have been daily driving with Linux (Ubuntu then Pop! then back to Ubuntu) since then. No real problems, yes I do not play the games I use to, but within Steam there is still quite a healthy choice to pick from. Honestly I would struggle… Re: Question/Answering over SQL Data Using LangGraph Framework Programming Computer Science by Pelorus_1 Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever. Re: Is linux your daily driver? Hardware and Software Linux and Unix by jkon I exclusively use Linux on my personal PCs, currently the Ubuntu distribution. I switched from Windows between 2010 and 2012. Before that, I used Linux on a different PC for several years, followed by a period of dual booting. Thanks to WINE, I have yet to encounter software I cannot run on my PC. I believe Ubuntu has become so user-friendly that … Re: Is linux your daily driver? Hardware and Software Linux and Unix by Reverend Jim When I ran into problems with linux I found the online help was less than helpful. The help, when offered, consisted of experts explaining things to other experts, even though I mentioned that I was anything but. All help assumed I had much more knowledge than I did. The explanations sounded like Trek techno-babble. Re: Is linux your daily driver? Hardware and Software Linux and Unix by Reverend Jim >Yes , that is still an issue... Many years back a neighbour was taking an evening course to become more computer literate. She was confused one day, telling me that her instructor had tried to explain to the class what "formatting a disk" meant. He talked about magnetic fields, tracks, sectors, etc. but she was still in the dark as… Re: Is linux your daily driver? Hardware and Software Linux and Unix by Dani Wow, I'm surprised how many people here are primarily Linux users compared to how infrequently our Linux forum gets posted in these days. Re: Cannot run exe from asp.net Programming Web Development 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 by pritaeas No, Javascript cannot run/start executables on the client machine.