473,395 Members | 1,666 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Running a web App on PC using the Development Server?

Is the Development Server part of the .net 2x runtime package or
installed with one installs VS 2005? I wish to run a small web app on
a machine, with the runtime installed, and need to know if I need to
include the Development Server in the install. If the latter, what
files need to be included? (Exe, DLL, etc)

Finally, can I legally re-distrubte the Development Server?

Jan 30 '07 #1
4 1937
You need a web server, capable of running ASP.NET. The simplest way is to
have IIS running (If the computer runs on Win2K Pro or WinXP or Win2K
Server, or Win2003).

"David" <me@me.comwrote in message
news:jc********************************@4ax.com...
Is the Development Server part of the .net 2x runtime package or
installed with one installs VS 2005? I wish to run a small web app on
a machine, with the runtime installed, and need to know if I need to
include the Development Server in the install. If the latter, what
files need to be included? (Exe, DLL, etc)

Finally, can I legally re-distrubte the Development Server?

Jan 30 '07 #2
re:
You need a web server, capable of running ASP.NET.
WebDev.WebServer.exe *is* a web server and it can run ASP.NET.

re:
what files need to be included? (Exe, DLL, etc)
AFAIK, only WebDev.WebServer.exe.
You'll find it in the Windows\Microsoft.net\v2.0.50727 directory.

There's also a WebDev.WebServer.exe.manifest file in that directory,
but I haven't witnessed any ill effects from not including it with the executable.

I haven't tested all scenarios, so you 'd do well to test it by copying
WebDev.WebServer.exe to a clean machine and checking out its functionality.

If you do that, please let us know how it went.

The command-line syntax for launching the Dev Server is :
WebDeb.WebServer /port:<port number/path:<physical path[/vpath:<virtual path>]

I've never been able to get the [/vpath:<virtual path>] parameter to work,
so you could try to do without it ( running the app in the root space ).

For example, you could launch the webserver using the following syntax:

start /B webdev.webserver.exe /port:81 /path:"c:\pathtoyourwebfiles"

You can set the port to any port number you want to (preferrably one higher than 1024),
but don't use port 80, as your clients might have a webserver at that port.

re:
Finally, can I legally re-distribute the Development Server?
It's distributed with the .Net Framework 2.0 redistributable,
so I doubt that there's any onus related to its distribution.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Norman Yuan" <No*****@NotReal.notwrote in message news:uZ*************@TK2MSFTNGP06.phx.gbl...
You need a web server, capable of running ASP.NET. The simplest way is to have IIS running (If
the computer runs on Win2K Pro or WinXP or Win2K Server, or Win2003).
"David" <me@me.comwrote in message news:jc********************************@4ax.com...
>Is the Development Server part of the .net 2x runtime package or
installed with one installs VS 2005? I wish to run a small web app on
a machine, with the runtime installed, and need to know if I need to
include the Development Server in the install. If the latter, what
files need to be included? (Exe, DLL, etc)

Finally, can I legally re-distrubte the Development Server?


Jan 30 '07 #3
Are you sure the WebDev.WebServer.exe is included in .NET2.0
redistributable? I'd believe it only comes with .NET2.0 SDK. I've checked a
few computers in my office, on which only .NET2.0 framework installed, not
2.0 Framework SDK. There is no WebDev.WebServer.exe in the folder
"C:\Windows\Microsoft.NET\Framework\v2.0.50727 ".

If the "development server" mentioned in OP only has .NET2.0 framework, not
SDK, he need to either run IIS, or distribute WedDev.WebServer.exe and make
sure it is running when needed.
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
re:
>You need a web server, capable of running ASP.NET.

WebDev.WebServer.exe *is* a web server and it can run ASP.NET.

re:
>what files need to be included? (Exe, DLL, etc)

AFAIK, only WebDev.WebServer.exe.
You'll find it in the Windows\Microsoft.net\v2.0.50727 directory.

There's also a WebDev.WebServer.exe.manifest file in that directory,
but I haven't witnessed any ill effects from not including it with the
executable.

I haven't tested all scenarios, so you 'd do well to test it by copying
WebDev.WebServer.exe to a clean machine and checking out its
functionality.

If you do that, please let us know how it went.

The command-line syntax for launching the Dev Server is :
WebDeb.WebServer /port:<port number/path:<physical path>
[/vpath:<virtual path>]

I've never been able to get the [/vpath:<virtual path>] parameter to work,
so you could try to do without it ( running the app in the root space ).

For example, you could launch the webserver using the following syntax:

start /B webdev.webserver.exe /port:81 /path:"c:\pathtoyourwebfiles"

You can set the port to any port number you want to (preferrably one
higher than 1024),
but don't use port 80, as your clients might have a webserver at that
port.

re:
>Finally, can I legally re-distribute the Development Server?

It's distributed with the .Net Framework 2.0 redistributable,
so I doubt that there's any onus related to its distribution.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Norman Yuan" <No*****@NotReal.notwrote in message
news:uZ*************@TK2MSFTNGP06.phx.gbl...
>You need a web server, capable of running ASP.NET. The simplest way is
to have IIS running (If
the computer runs on Win2K Pro or WinXP or Win2K Server, or Win2003).

>"David" <me@me.comwrote in message
news:jc********************************@4ax.com.. .
>>Is the Development Server part of the .net 2x runtime package or
installed with one installs VS 2005? I wish to run a small web app on
a machine, with the runtime installed, and need to know if I need to
include the Development Server in the install. If the latter, what
files need to be included? (Exe, DLL, etc)

Finally, can I legally re-distrubte the Development Server?



Jan 31 '07 #4
re:
Are you sure the WebDev.WebServer.exe is included in .NET2.0 redistributable? I'd believe it only
comes with .NET2.0 SDK.
Hmmm, you're right.
It's also included with VWD (besides VS 2005, of course).

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Norman Yuan" <No*****@NotReal.notwrote in message news:eS**************@TK2MSFTNGP03.phx.gbl...
Are you sure the WebDev.WebServer.exe is included in .NET2.0 redistributable? I'd believe it only
comes with .NET2.0 SDK. I've checked a few computers in my office, on which only .NET2.0 framework
installed, not 2.0 Framework SDK. There is no WebDev.WebServer.exe in the folder
"C:\Windows\Microsoft.NET\Framework\v2.0.50727 ".
If the "development server" mentioned in OP only has .NET2.0 framework, not SDK, he need to either
run IIS, or distribute WedDev.WebServer.exe and make sure it is running when needed.
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
>re:
>>You need a web server, capable of running ASP.NET.

WebDev.WebServer.exe *is* a web server and it can run ASP.NET.

re:
>>what files need to be included? (Exe, DLL, etc)

AFAIK, only WebDev.WebServer.exe.
You'll find it in the Windows\Microsoft.net\v2.0.50727 directory.

There's also a WebDev.WebServer.exe.manifest file in that directory,
but I haven't witnessed any ill effects from not including it with the executable.

I haven't tested all scenarios, so you 'd do well to test it by copying
WebDev.WebServer.exe to a clean machine and checking out its functionality.

If you do that, please let us know how it went.

The command-line syntax for launching the Dev Server is :
WebDeb.WebServer /port:<port number/path:<physical path[/vpath:<virtual path>]

I've never been able to get the [/vpath:<virtual path>] parameter to work,
so you could try to do without it ( running the app in the root space ).

For example, you could launch the webserver using the following syntax:

start /B webdev.webserver.exe /port:81 /path:"c:\pathtoyourwebfiles"

You can set the port to any port number you want to (preferrably one higher than 1024),
but don't use port 80, as your clients might have a webserver at that port.

re:
>>Finally, can I legally re-distribute the Development Server?

It's distributed with the .Net Framework 2.0 redistributable,
so I doubt that there's any onus related to its distribution.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Norman Yuan" <No*****@NotReal.notwrote in message news:uZ*************@TK2MSFTNGP06.phx.gbl...
>>You need a web server, capable of running ASP.NET. The simplest way is to have IIS running (If
the computer runs on Win2K Pro or WinXP or Win2K Server, or Win2003).

>>"David" <me@me.comwrote in message news:jc********************************@4ax.com...
Is the Development Server part of the .net 2x runtime package or
installed with one installs VS 2005? I wish to run a small web app on
a machine, with the runtime installed, and need to know if I need to
include the Development Server in the install. If the latter, what
files need to be included? (Exe, DLL, etc)

Finally, can I legally re-distrubte the Development Server?




Jan 31 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Damien Renwick | last post by:
I have a php script which simply stops midway through a while loop that processes records returned by a MySQL query. The HTML page continues trying to load the page but the php has stopped running...
1
by: qwejohn | last post by:
Hello, I had posted this question in the twisted mailing list but did not got a solution ; I hope that the python Gurus of this forum can help me a bit. I am trying the exmaple in the python...
4
by: Mee Yamo | last post by:
Fellas!! This is a very complicated one and it took me a few days to figure out exactly what's going on, but here's the final story: I have a production environment running on .NET with a SQL...
1
by: N S S | last post by:
Hi I am getting Error " Visual studio .NET has detected that the specified web server is not runnin ASP.NET 1.1" When i am trying to publish the web site on the Testing server from my...
2
by: anyeone | last post by:
This one is going to be hard to explain so please bear with me. I have a web project in folder "myapp". This is where the web config lives. I've set this to be the IIS webroot. The file...
1
by: Aaron West | last post by:
Try this script to see what queries are taking over a second. To get some real output, you need a long-running query. Here's one (estimated to take over an hour): PRINT GETDATE() select...
10
by: TS | last post by:
i just noticed the website i created in VS 2005 is running on a different port than the default. I see that it is running on the local web server, and also that the website i created isn't in IIS....
11
by: John Sheppard | last post by:
Hello there, I am running a webservice on IIS6, sometimes it runs at a reasonable speed, sometimes it runs painfully slow and sometimes inbetween. The application that consumes the service is...
1
by: raknin | last post by:
For some reason when I try to run any login PHP script that comes with the roscript login package (http://www.roscripts.com/PHP_login_script-143.html ) in any browser I got a blank page with nothing...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.