PC Review


Reply
Thread Tools Rate Thread

Advantages of using the Visual Studio Development Server (VSDS)compared to IIS

 
 
jeeji
Guest
Posts: n/a
 
      18th Mar 2008
Hi

I have just installed Visual Studio 2005, and ported a 2003 Web
Application to VS 2005. I noticed that I can choose to debug my
application using either the IIS Web Server or the Visual Studion
Development Server (VSDS)
- Are there any advantages in using the VSDS
- Where can I find anything about that on the internet. I have
searched the whole internet for documents that compare both, but I
found nothing.

Thanks in advance
Jeeji
 
Reply With Quote
 
 
 
 
Eliyahu Goldin
Guest
Posts: n/a
 
      18th Mar 2008
> - Are there any advantages in using the VSDS
Only that you don't have to setup IIS. Setting up IIS in most cases is
straightforward but sometimes may turn to be a headache. I may want to avoid
IIS also for security reasons if you don't want to care about limiting
access to your computer.

Sometimes you have to use IIS. An example is if you need to create a virtual
directory on your site that will point to some location outside of your
site. I don't know how it can be done with the development server.

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


"jeeji" <(E-Mail Removed)> wrote in message
news:e134b7ef-421f-42b8-ac95-(E-Mail Removed)...
> Hi
>
> I have just installed Visual Studio 2005, and ported a 2003 Web
> Application to VS 2005. I noticed that I can choose to debug my
> application using either the IIS Web Server or the Visual Studion
> Development Server (VSDS)
> - Are there any advantages in using the VSDS
> - Where can I find anything about that on the internet. I have
> searched the whole internet for documents that compare both, but I
> found nothing.
>
> Thanks in advance
> Jeeji



 
Reply With Quote
 
BobF
Guest
Posts: n/a
 
      18th Mar 2008
Maybe this will help:

<http://msdn2.microsoft.com/en-us/library/58wxa9w5(VS.80).aspx>



--


Reality is what, when you stop believing in it, doesn't go away.




"jeeji" <(E-Mail Removed)> wrote in message
news:e134b7ef-421f-42b8-ac95-(E-Mail Removed)...
> Hi
>
> I have just installed Visual Studio 2005, and ported a 2003 Web
> Application to VS 2005. I noticed that I can choose to debug my
> application using either the IIS Web Server or the Visual Studion
> Development Server (VSDS)
> - Are there any advantages in using the VSDS
> - Where can I find anything about that on the internet. I have
> searched the whole internet for documents that compare both, but I
> found nothing.
>
> Thanks in advance
> Jeeji



 
Reply With Quote
 
Cowboy \(Gregory A. Beamer\)
Guest
Posts: n/a
 
      18th Mar 2008

"jeeji" <(E-Mail Removed)> wrote in message
news:e134b7ef-421f-42b8-ac95-(E-Mail Removed)...
> Hi
>
> I have just installed Visual Studio 2005, and ported a 2003 Web
> Application to VS 2005. I noticed that I can choose to debug my
> application using either the IIS Web Server or the Visual Studion
> Development Server (VSDS)
> - Are there any advantages in using the VSDS


You don't have to install IIS. That is pretty much it.

It is also a bit easier, as you do not have to type in
http://localhost/{SiteName} when you create a site, as it can go on the
default directory.

BTW, you can work with both at the same time. Create a file based web site
in one instance of VS. Then, open Windows Explorer, right click the
directory and go to the web sharing tab and share it. Now, open a website
via http://localhost/{SiteName} in another instance. Same site, two ways.

Would I do the above in real life? Only to illustrate that it can be done.

I, personally, do everything in IIS. Not quite true. When speaking, I will
sometimes create a file based web, as I can share it easier (primarily
zipping it up without having it under Inetpub). As I can switch it to IIS at
any time, it is not an issue.

> - Where can I find anything about that on the internet. I have
> searched the whole internet for documents that compare both, but I
> found nothing.


Not sure. If you want to see how it works, or at least how a previous
incarnation worked, look up Cassini. You can download it from here:
http://www.asp.net/downloads/archived/cassini/

Cassini was the original file based server for ASP.NET before it was
included with VS.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

*************************************************
| Think outside the box!
|
*************************************************


 
Reply With Quote
 
Juan T. Llibre
Guest
Posts: n/a
 
      18th Mar 2008
re:
!> the IIS Web Server or the Visual Studio Development Server (VSDS)

Two observations :

1.
The "NETWORK SERVICES" account referenced in that article doesn't exist.

I have added a note to that MSDN article which makes clear that the correct account,
when IIS runs under Windows 2003 Server, is NT AUTHORITY\NETWORK SERVICE,
unless ASP.NET impersonation is configured.

2.
The security context varies.

The ASP.NET identity, when IIS runs under Windows 2003 Server, is NT AUTHORITY\NETWORK SERVICE.

The ASP.NET identity, when the ASP.NET Development Server is used, is the machine's logged-in account.
That account usually is the machine's administrator, but can be a different account.





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/
======================================
"BobF" <(E-Mail Removed)> wrote in message news:%(E-Mail Removed)...
> Maybe this will help:
>
> <http://msdn2.microsoft.com/en-us/library/58wxa9w5(VS.80).aspx>
>
>
>
> --
>
>
> Reality is what, when you stop believing in it, doesn't go away.
>
>
>
>
> "jeeji" <(E-Mail Removed)> wrote in message
> news:e134b7ef-421f-42b8-ac95-(E-Mail Removed)...
>> Hi
>>
>> I have just installed Visual Studio 2005, and ported a 2003 Web
>> Application to VS 2005. I noticed that I can choose to debug my
>> application using either the IIS Web Server or the Visual Studion
>> Development Server (VSDS)
>> - Are there any advantages in using the VSDS
>> - Where can I find anything about that on the internet. I have
>> searched the whole internet for documents that compare both, but I
>> found nothing.
>>
>> Thanks in advance
>> Jeeji

>
>



 
Reply With Quote
 
jeeji
Guest
Posts: n/a
 
      18th Mar 2008
Hi

And thank you all for the nice replies. This link was all that I
wanted.

I have however one last question:
Is it true that the VSDS enables you to debug using "Edit and
Continue" whereas IIS does not have that feature?

Jeeji

On 18 Mar., 14:39, "BobF" <rNfOrSePeA...@charter.net> wrote:
> Maybe this will help:
>
> <http://msdn2.microsoft.com/en-us/library/58wxa9w5(VS.80).aspx>
>
> --
>
> Reality is what, when you stop believing in it, doesn't go away.
>
> "jeeji" <jihad...@yahoo.com> wrote in message
>
> news:e134b7ef-421f-42b8-ac95-(E-Mail Removed)...
>
>
>
> > Hi

>
> > I have just installed Visual Studio 2005, and ported a 2003 Web
> > Application to VS 2005. I noticed that I can choose to debug my
> > application using either theIISWeb Server or the Visual Studion
> > Development Server (VSDS)
> > - Are there any advantages in using the VSDS
> > - Where can I find anything about that on the internet. I have
> > searched the whole internet for documents that compare both, but I
> > found nothing.

>
> > Thanks in advance
> >Jeeji- Skjul tekst i anførselstegn -

>
> - Vis tekst i anførselstegn -


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Slow Images with Visual Studio Development Server headware Microsoft ASP .NET 2 28th Apr 2009 05:58 PM
Use IIS web Server Vs. Visual Studio Development Server with Port Lit Microsoft ASP .NET 1 3rd Aug 2007 07:16 PM
Visual Studio Web Development Server Setup =?Utf-8?B?RGVkZ2U=?= Microsoft ASP .NET 0 10th Apr 2007 05:26 PM
How to allow classic ASP pages in Visual Studio 2005 development server? Jude Microsoft ASP .NET 3 14th Mar 2007 01:51 PM
Visual Studio development server listen interfaces thelemmings@gmail.com Microsoft ASP .NET 2 18th Jan 2007 02:53 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:52 AM.