webdev.webserver

Stopping ASP WebDev and Selenium servers from command line

柔情痞子 提交于 2019-12-04 21:16:14
I am introducing Selenium tests into my build for the first time. I figured that to do this in NAnt, I would have to start the WebDev server first: <exec program="path/to/WebDev.WebServer.exe" commandline="/port:51150 /path:path/to/website" failonerror="true" resultproperty="selenium.webdev.server.running" spawn="true"> </exec> Then start the Selenium server: <exec program="path/to/java.exe" commandline="-jar path/to/selenium-server.jar" failonerror="false" spawn="true"> </exec> Then run my tests. This works. What i can't figure out is how do I kill the WebDev and Selenium servers when my

How to install WebDev.WebServer.exe as a Standalone application?

南楼画角 提交于 2019-12-04 13:43:57
问题 How can I install Visual Studio's Web Development Server (WebDev.WebServer.exe) as a Standlone application? So that our web designers can get the latest code from SVN, then run the MSBuild batch file to build the code, and then run a batch file to start the code using a local copy of the Web Development Server (WebDev.WebServer.exe). Note: I do not want to have to install Visual Studio on all their machines. EDIT : I have done as suggested below and I get this error: Faulting application

Is there a way to add a virtual directory to Visual Studio Development Server?

强颜欢笑 提交于 2019-12-03 23:23:40
问题 I'm using the Visual Studio Development Server, with a specific port. Is there a way to add a virtual directory to it? EDIT: Sorry, I wasn't very clear. I'd like to be able to add one or more virtual directories to arbitrary physical directories. For instance: http://localhost/c_drive/ would map to C:\, http://localhost:/d_drive/ would map to D:\, etc. 回答1: The Visual Studio Development Server is codenamed Cassini. From ASP.NET 2.0: A Getting Started Guide Cassini doesn't support virtual

How can I stop Visual Studio running all my web services

佐手、 提交于 2019-12-03 22:18:56
How to stop Visual Studio 2008 from automatically running my web services. I have a large Visual Studio 2008 solution that contains a number of web app projects and also several wcf web services. I have set the solution to have only one startup project, yet when I right-click on the web app project and select "Debug" > "Start New Instance" there appear multiple WebDev.WebServer icons in the system tray. There is one for every web service in the project. Note : My web app project does have one Web Reference, but not to any of the WCF web services that are being launched. I want to be able to

How to install WebDev.WebServer.exe as a Standalone application?

不羁岁月 提交于 2019-12-03 07:32:33
How can I install Visual Studio's Web Development Server (WebDev.WebServer.exe) as a Standlone application? So that our web designers can get the latest code from SVN, then run the MSBuild batch file to build the code, and then run a batch file to start the code using a local copy of the Web Development Server (WebDev.WebServer.exe). Note: I do not want to have to install Visual Studio on all their machines. EDIT : I have done as suggested below and I get this error: Faulting application WebDev.WebServer.EXE, version 9.0.30729.1, time stamp 0x488f1aa2, faulting module KERNEL32.dll, version 6.0

Is there a way to add a virtual directory to Visual Studio Development Server?

谁说胖子不能爱 提交于 2019-12-01 02:17:16
I'm using the Visual Studio Development Server, with a specific port. Is there a way to add a virtual directory to it? EDIT: Sorry, I wasn't very clear. I'd like to be able to add one or more virtual directories to arbitrary physical directories. For instance: http://localhost/c_drive/ would map to C:\, http://localhost:/d_drive/ would map to D:\, etc. The Visual Studio Development Server is codenamed Cassini. From ASP.NET 2.0: A Getting Started Guide Cassini doesn't support virtual directories, security settings, or any of IIS's other fancy features; it's just a very simple web server that

How to utilize WebDev.WebServer.exe (VS Web Server) in x64?

会有一股神秘感。 提交于 2019-11-30 11:20:37
Visual Studio is x86 until at least the 2010 release comes around update: this is still an issue in VS2010, there is no native 64bit Cassini support. My question is can anyone think of a way or know of an independent ASP.NET debug server that's x64 for 2008 or 2010? Background: Our ASP.NET application runs against Oracle as the DB. Since we're on 64-bit servers for memory concerns later, we need to use Oracle's 64-bit drivers (Instant Client). Setup: x64 OS (XP or Windows 7) IIS (6 or 7, both x64 App Pools) Oracle 64-bit Instant Client (Separate Directory, in the PATH) Visual Studio 2008 SP1

stop development server when i stop debugging

我只是一个虾纸丫 提交于 2019-11-30 11:11:59
How can automatically I stop the development web server when I stop debugging in Visual Studio? Justin There is no way to get the Asp.Net development service to automatically stop when you hit the "stop debugging" button, as all that does is detach the debugger. You could however explicitly kill the process yourself (which would in turn cause VS to stop debugging). This question shows how you might do this in a Macro: Automatically stop/restart ASP.NET Development Server on Build Alternatively take a look at mat3's answer on how you can force the development server to restart every time you

Visual Studio 2010 debug in a fixed port

本秂侑毒 提交于 2019-11-30 08:03:36
问题 Is it possible to choose a fixed port for the Visual Studio 2010 debug webserver? 回答1: If it's similar to VS2008, you can do the following to fix the port number: Click on the web site project node in Solution Explorer Hit F4 to bring up the properties tool window Set "Use dynamic ports" to false Set "Port number" to whatever you need 回答2: Should appear as an option in the web project properties, 'Web' tab. By default its set to auto-assign but theres an option to set a specific port. 来源:

How to utilize WebDev.WebServer.exe (VS Web Server) in x64?

梦想的初衷 提交于 2019-11-29 16:58:08
问题 Visual Studio is x86 until at least the 2010 release comes around update: this is still an issue in VS2010, there is no native 64bit Cassini support. My question is can anyone think of a way or know of an independent ASP.NET debug server that's x64 for 2008 or 2010? Background: Our ASP.NET application runs against Oracle as the DB. Since we're on 64-bit servers for memory concerns later, we need to use Oracle's 64-bit drivers (Instant Client). Setup: x64 OS (XP or Windows 7) IIS (6 or 7, both