473,770 Members | 1,901 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

deploying website VS 2005

Hello

I have no idea how to deploy my website to another server (in virtual folder
I cannot see dlls file). Is thate any simple and quick manner to deploy web
site to another servers?

Best Regards

Dariusz Tomon

Jan 15 '07 #1
5 3328
Hi,

Dariusz Tomon wrote:
Hello

I have no idea how to deploy my website to another server (in virtual folder
I cannot see dlls file). Is thate any simple and quick manner to deploy web
site to another servers?

Best Regards

Dariusz Tomon
With the new "website" model in VS2005, you don't need to deploy DLLs,
only ASPX and CS files (code behind). The DLLs are compiled on demand.

If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you install
the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Jan 15 '07 #2
Thank you for explanation but I'm trying to run my website and get error:
Server Error in '/' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuratio n>
Line 3: <configSections >
Line 4: <sectionGroup name="microsoft .web"
type="Microsoft .Web.Configurat ion.MicrosoftWe bSectionGroup,
Microsoft.Web.E xtensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">
Line 5: <sectionGroup name="scripting "
type="Microsoft .Web.Configurat ion.ScriptingSe ctionGroup,
Microsoft.Web.E xtensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">
Line 6: <sectionGroup name="webServic es"
type="Microsoft .Web.Configurat ion.ScriptingWe bServicesSectio nGroup,
Microsoft.Web.E xtensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">
Source File: c:\inetpub\wwwr oot\aplikacja2\ web.config Line: 4

--------------------------------------------------------------------------------

Version Information: Microsoft .NET Framework Version:1.1.432 2.2300; ASP.NET
Version:1.1.432 2.2300

What could be wrong? at http://localhost/apliakcja1 - it works perfect when
I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error

Best Regards

Dariusz Tomon
"Laurent Bugnion [MVP]" <ga*********@bl uewin.chwrote in message
news:O8******** ******@TK2MSFTN GP06.phx.gbl...
Hi,

Dariusz Tomon wrote:
>Hello

I have no idea how to deploy my website to another server (in virtual
folder I cannot see dlls file). Is thate any simple and quick manner to
deploy web site to another servers?

Best Regards

Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy DLLs,
only ASPX and CS files (code behind). The DLLs are compiled on demand.

If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you install the
SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch

Jan 15 '07 #3
Dariusz Tomon wrote:
Thank you for explanation but I'm trying to run my website and get
error:

Server Error in '/' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a
configuration file required to service this request. Please review
the specific error details below and modify your configuration file
appropriately.
Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuratio n>
Line 3: <configSections >
Line 4: <sectionGroup name="microsoft .web"
type="Microsoft .Web.Configurat ion.MicrosoftWe bSectionGroup,
Microsoft.Web.E xtensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">
Line 5: <sectionGroup name="scripting "
type="Microsoft .Web.Configurat ion.ScriptingSe ctionGroup,
Microsoft.Web.E xtensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">
Line 6: <sectionGroup name="webServic es"
type="Microsoft .Web.Configurat ion.ScriptingWe bServicesSectio nGroup,
Microsoft.Web.E xtensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken= 31bf3856ad364e3 5">
Source File: c:\inetpub\wwwr oot\aplikacja2\ web.config Line: 4

--------------------------------------------------------------------------------

Version Information: Microsoft .NET Framework Version:1.1.432 2.2300;
ASP.NET Version:1.1.432 2.2300

What could be wrong? at http://localhost/apliakcja1 - it works
perfect when I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error
You probably didn't notice, but your error message mentions
that the site is running on ASP.NET 1.1.

Go to Control Panel, Administrative Tools, Internet Information Manager,
right click on your web site (aplikacja2), Properties, go to the ASP.NET tab
and
change the version to 2.0.

When you upload it to another server, make sure that the same
extensions are installed on that server (I guess you're using AJAX).

--

Riki
"Laurent Bugnion [MVP]" <ga*********@bl uewin.chwrote in message
news:O8******** ******@TK2MSFTN GP06.phx.gbl...
>Hi,

Dariusz Tomon wrote:
>>Hello

I have no idea how to deploy my website to another server (in
virtual folder I cannot see dlls file). Is thate any simple and
quick manner to deploy web site to another servers?

Best Regards

Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy
DLLs, only ASPX and CS files (code behind). The DLLs are compiled on
demand. If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you
install the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch

Jan 15 '07 #4
Hi

I changed to change the version to 2.0. and AJAX is installed but the error
is still the same ...
On my development environment I have Visual Studio 2005 with
AjaxControlTool kit set up - it's the difference between my laptop and the
remote server.

Any idea?

Dariusz Tomon

"Riki" <ri**@dontnagme .comwrote in message
news:uw******** ******@TK2MSFTN GP04.phx.gbl...
Dariusz Tomon wrote:
>Thank you for explanation but I'm trying to run my website and get
error:

Server Error in '/' Application.
--------------------------------------------------------------------------------

Configuratio n Error
Description: An error occurred during the processing of a
configuratio n file required to service this request. Please review
the specific error details below and modify your configuration file
appropriatel y.
Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuratio n>
Line 3: <configSections >
Line 4: <sectionGroup name="microsoft .web"
type="Microsof t.Web.Configura tion.MicrosoftW ebSectionGroup,
Microsoft.Web. Extensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35">
Line 5: <sectionGroup name="scripting "
type="Microsof t.Web.Configura tion.ScriptingS ectionGroup,
Microsoft.Web. Extensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35">
Line 6: <sectionGroup name="webServic es"
type="Microsof t.Web.Configura tion.ScriptingW ebServicesSecti onGroup,
Microsoft.Web. Extensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToken =31bf3856ad364e 35">
Source File: c:\inetpub\wwwr oot\aplikacja2\ web.config Line: 4

--------------------------------------------------------------------------------

Version Information: Microsoft .NET Framework Version:1.1.432 2.2300;
ASP.NET Version:1.1.432 2.2300

What could be wrong? at http://localhost/apliakcja1 - it works
perfect when I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error

You probably didn't notice, but your error message mentions
that the site is running on ASP.NET 1.1.

Go to Control Panel, Administrative Tools, Internet Information Manager,
right click on your web site (aplikacja2), Properties, go to the ASP.NET
tab and
change the version to 2.0.

When you upload it to another server, make sure that the same
extensions are installed on that server (I guess you're using AJAX).

--

Riki
>"Laurent Bugnion [MVP]" <ga*********@bl uewin.chwrote in message
news:O8******* *******@TK2MSFT NGP06.phx.gbl.. .
>>Hi,

Dariusz Tomon wrote:
Hello

I have no idea how to deploy my website to another server (in
virtual folder I cannot see dlls file). Is thate any simple and
quick manner to deploy web site to another servers?

Best Regards

Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy
DLLs, only ASPX and CS files (code behind). The DLLs are compiled on
demand. If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you
install the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch


Jan 15 '07 #5
One more thing: Is the folder in question designated an application on the
server?

"Dariusz Tomon" <d.*****@mazars .plwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
Hi

I changed to change the version to 2.0. and AJAX is installed but the
error is still the same ...
On my development environment I have Visual Studio 2005 with
AjaxControlTool kit set up - it's the difference between my laptop and the
remote server.

Any idea?

Dariusz Tomon

"Riki" <ri**@dontnagme .comwrote in message
news:uw******** ******@TK2MSFTN GP04.phx.gbl...
>Dariusz Tomon wrote:
>>Thank you for explanation but I'm trying to run my website and get
error:

Server Error in '/' Application.
--------------------------------------------------------------------------------

Configurati on Error
Description : An error occurred during the processing of a
configurati on file required to service this request. Please review
the specific error details below and modify your configuration file
appropriately .
Parser Error Message: Unrecognized attribute 'type'.

Source Error:
Line 2: <configuratio n>
Line 3: <configSections >
Line 4: <sectionGroup name="microsoft .web"
type="Microso ft.Web.Configur ation.Microsoft WebSectionGroup ,
Microsoft.Web .Extensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToke n=31bf3856ad364 e35">
Line 5: <sectionGroup name="scripting "
type="Microso ft.Web.Configur ation.Scripting SectionGroup,
Microsoft.Web .Extensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToke n=31bf3856ad364 e35">
Line 6: <sectionGroup name="webServic es"
type="Microso ft.Web.Configur ation.Scripting WebServicesSect ionGroup,
Microsoft.Web .Extensions, Version=1.0.610 25.0, Culture=neutral ,
PublicKeyToke n=31bf3856ad364 e35">
Source File: c:\inetpub\wwwr oot\aplikacja2\ web.config Line: 4

--------------------------------------------------------------------------------

Version Information: Microsoft .NET Framework Version:1.1.432 2.2300;
ASP.NET Version:1.1.432 2.2300

What could be wrong? at http://localhost/apliakcja1 - it works
perfect when I copied files to another location on the same server
http://localhost/aplikacja2 it generates above error

You probably didn't notice, but your error message mentions
that the site is running on ASP.NET 1.1.

Go to Control Panel, Administrative Tools, Internet Information Manager,
right click on your web site (aplikacja2), Properties, go to the ASP.NET
tab and
change the version to 2.0.

When you upload it to another server, make sure that the same
extensions are installed on that server (I guess you're using AJAX).

--

Riki
>>"Laurent Bugnion [MVP]" <ga*********@bl uewin.chwrote in message
news:O8****** ********@TK2MSF TNGP06.phx.gbl. ..
Hi,

Dariusz Tomon wrote:
Hello
>
I have no idea how to deploy my website to another server (in
virtual folder I cannot see dlls file). Is thate any simple and
quick manner to deploy web site to another servers?
>
Best Regards
>
Dariusz Tomon

With the new "website" model in VS2005, you don't need to deploy
DLLs, only ASPX and CS files (code behind). The DLLs are compiled on
demand. If you dislike this, you can either

- Use the "publish" menu in the "Build" menu. This will give you an
assistant to deploy the website.
- Use the "Web Application Project" add-on for VS2005.
http://webproject.scottgu.com/
Note: The WAP add-on is not included in VS2005 SP1, so if you
install the SP1, you must uninstall the WAP add-on first!

The WAP offers the same compilation model as VS2003, so you have full
control over the produced assemblies.

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum : http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch



Jan 15 '07 #6

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

Similar topics

2
1859
by: timsohn | last post by:
I am trying to deploy the most basic web service (Hello World) example to my website, but am having significant trouble doing so. Here is what I am doing: 1) Create a New Web Service in VS 2005 2) Build the website 3) Verify that it works by clicking "View in Browser" 4) Click Copy Website to copy to my webserver 5) Navigate to the website where I just deployed the service
1
1253
by: Records For Living Support | last post by:
I've just upgraded from Visual Studio 2003 to 2005 and I've finally got my website working on my laptop. WHen I try to send it over to the real webserver - it fails miserably. I've had MULTIPLE problems - but right now - the proble appears to be that teh 2.0 assembly cache contains an invalid copy of my web assembly - and I want to force it to clear the cache - and use the one I'm uploading to my website. THe MANAGE program seems to...
3
1295
by: Nerd | last post by:
All, I am trying to deploy my .Net 2.0 web application and I am looking for the best approach. The setup and deployment project seems to copy the whole source files also. Is there a better way to do this? Or am I doing anything wrong? My solution has one web project and 3-4 web services. Please advice which is th best way to deploy my application. Thanks in advance
1
1646
by: Sweety | last post by:
I used to use the copy option(with Select the Only files needed to run this application) to copy a project whenever I do a build in VS.Net1.1. Whats the equivalent of this in .Net2.0? I have tried the publish option but it also copies all the source files. I would appreciate it if someone can tell me a better way of doing this. Thanks a lot in advance
2
1341
by: CFTK | last post by:
Hi everyone! Today I had the first demonstration of my Website and I realised that I couldn´t access to it from another PC different from mine... I had been reading tutorials and I have seen the posibility of putting it in a IIS Server as with ASP.NET 1.0 but... isn´t there any other simplest way to do quick demos..? isn´t it supposed to include a 'light webserver'...? Thanks in advance for your help!!
6
5538
by: Ryan | last post by:
Is there any way to save a VB 2005 created application as an .MSI install file? The only method I see is to publish as a .EXE. Curious because I want to push out an application with Group Policy. Thanks, Ryan
8
2818
by: =?Utf-8?B?V2hpc2tleVJvbWVv?= | last post by:
I am trying to copy files and folders onto a production machine (Windows 2003 web edition -- we had to install the .NetFramework 2.0 on it). I wasn't even sure which files to copy for a ASP.NET 2.0 application. But I followed the steps I do for a 1.1 ASP.Net applications. I get the following error message when I try to run it. The application run fine in VS2005 on the development machine. It is set up properlly as far as IIS 6.x is...
10
1930
by: =?Utf-8?B?UmljaGFyZA==?= | last post by:
Hi, I usually deploy my ASP .NET application to the server by publishing, using Visual Studio 2005 publish feature. This creates the Bin folder on the server, with the compiled DLLs. I've been asked to publish by copying the files manually instead. I stopped IIS for the application, deleted the application files and subfolders from the server, copied the files and folders from my local PC's project,
3
2778
by: kkao77 | last post by:
can you show me in more detail? I have same problem where on the page it's https://service.premilance.com/Company.svc, but the svcutil tells me to get it from https://pserver1/Company.svc?wsdl which is incorrect.. I have no clue how to fix it and i'm struggling for two days already :( On Mar 13, 3:09 pm, "Tiago Halm" <th...@nospam.hotmail.comwrote:
0
9618
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9454
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10259
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10101
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8933
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2849
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.