Configuration :: Application Deployment On Local Server?

Jun 16, 2010

I am new to the asp .net (c#) technology.I got an assignment to work on a existing C# project which is alreay live and working.I have downloaded all the code files from the given FTP server on my local server.My Local Server Environment Details :OS - WinXP.NET Framework Version - 2.0 ( There are different versions on the machine i.e. 1.0,1.1,2.0,3.0,3.5 but through IIS i have enabled 2.0 because the application is developed in 2.0)Visual Studio - 2003 In the downloaded source code i did not found any solution file to open the project in Visual Studio , So i created the new project and by using the add existing elements i added all the project files to the newly created project.Am i doing right way.Will my application will work when i will upload the code on live server because the solution file would have mylocal machine configuration.Suggest me how can i proceed in long term vision so that in future i do not face any problem during application release.

View 1 Replies


Similar Messages:

Configuration :: Running 2.0 Application On Local Server?

Jun 11, 2010

while running my aspx pages on local iis 5.1 of my system, it doesnot shows the images and also when i tried to login with the same credentials that i was using with visual studio2005 it always give me error of wrong credentials

View 1 Replies

Configuration :: Unable To Create Web Application In Local IIS Server

Oct 9, 2010

I have created a virtual directory in IIS(7.0) to create web application using visual studio 2010 ultimate edition. But when i open the Browse option in visual studio to create http hosted website , it vs2010 keeps on teling me that i need to have IIS Component installed. below is the eror message;

To access local IIS websites, you must install the follwoing IIS components

You must run Visual studio in the context of an administrator account. For more information, press F1

NB:i have installed the IIS 7.0 and its running fine

OS: windows7 Home Professional

View 2 Replies

SQL Server :: 2008 Express Deployment And Local Databases

Jan 13, 2011

I am fairly new to ASP.net - comming from a PHP / MYSQL background sometimes certain things in ASP.net confuse the hell out of me. In PHP - when writing an application you always connect to an external database server (MYSQL , PostGreSQL ) using a username and password and aswell a datbase server address(mostly localhost). Now with ASP.net i noticed that you can connect to an existing database within SQL server or you can create a local database in the App_Data folder.

The local database seems much easier to work with however my concern is what would you store in a local database? surely you cannot use it as a main database to store all your data(compared to a MYSQL database)? Secondarily with SQL server - when i login into SQL server management express , it uses "Windows Authetication" , i tried to select "Sql Server authentication" and enter my own username and password to login but that did'nt work. How do i deploy a database from SQL server to the web? - in MYSQL for example we would have a SQL dump file , which can be simply imported/exported from server to server.

View 4 Replies

Security :: VS2008 Development Server (local Host) & Hosted IIS7 Site Different Configuration - How To Test Application

Mar 19, 2010

How can I test an application that I am publishing to a remote provider's IIS7 hosted site, with the VS2008 development server that is built in with VS2008 on an XP Machine?

My membership/roles work perfectly up on the remote host. On ths hosted IIS7 site when I try to access a secure directory it redirects to login, and I am able to login, however when I launch (debug - F5) from VS2008, it will provide that folder/resource, no questions asked. Same build, config, etc... nothing has changed.

I am running XP, and local IIS version installed is 5.1.

My guess is what is happening is that the new format required in the web.config is configured properly for IIS7 deployment, which is why it works remotely, but when running locally through VS2008/XP it is running with an older version on IIS and does not recoginize the new tags.

View 3 Replies

Configuration :: Web Application Deployment?

Feb 23, 2011

Can any one explain what is web application deployment.and how it is useful.in the sense of advantages.also steps for web deployment.

View 5 Replies

Configuration :: Deployment Asp Application?

Mar 16, 2010

How to deploy the asp application.Please explain in simple term.

View 2 Replies

Configuration :: How To Debug The Application After Deployment

Mar 10, 2010

I want to know what are the ways to debug the application after deployment. Let's say I have used x-copy deployment, to copy dll and also some source code files. If I want to modify some source code and recopy them into production. Can somebody tell me how to debug those modified files?

View 2 Replies

C# - Application Finds Local Resource Files In Web Development Server But Not Local IIS

Sep 22, 2010

When I run the application using the Web Developer it works fine. However when I run it using local IIS I get the following error:

The resource class for this page was not found. check if the resource file exists and try again. Description: An unhandled exception occurred during the execution of the current web request. review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The resource class for this page was not found. heck if the resource file exists and try again.

Source Error:

Line 81: private void PopulateLanguageList()
Line 82: {
Line 83: DropDownListLanguage.Items[0].Text = (string)HttpContext.GetLocalResourceObject(
Line 84: "Default.aspx", SelectLanguage, Thread.CurrentThread.CurrentCulture);
Line 85: }

Stack Trace:

[InvalidOperationException: The resource class for this page was not found. Please check if the resource file exists and try again.]
System.Web.Compilation.LocalResXResourceProvider.CreateResourceManager() +4038050
System.Web.Compilation.BaseResXResourceProvider.EnsureResourceManager() +23
System.Web.Compilation.BaseResXResourceProvider.GetObject(String resourceKey, CultureInfo culture) +24
System.Web.Compilation.ResourceExpressionBuilder.GetResourceObject(IResourceProvider resourceProvider, String resourceKey, CultureInfo culture, Type objType, String propName) +32
System.Web.HttpContext.GetLocalResourceObject(String virtualPath, String resourceKey, CultureInfo culture) +56
APPortal.Login.PopulateLanguageList() in c:inetpubwwwrootAPPortalDefault.aspx.cs:83
APPortal.Login.Page_Load(Object sender, EventArgs e) in c:inetpubwwwrootAPPortalDefault.aspx.cs:20
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +25
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +42
System.Web.UI.Control.OnLoad(EventArgs e) +132
System.Web.UI.Control.LoadRecursive() +66
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428

View 1 Replies

Configuration :: Open File After Deployment Application?

Jun 24, 2010

I have build an asp.net application and have use the setup wizard for deployment. Is there some option to add this to my setup:

Open a file? For example a readme.txt file.

View 2 Replies

Configuration :: Application Deployment - Database Connection?

Sep 28, 2010

I finished an intranet application using webconfig to store my connection string to an Access database which has linked tables to SQL Server 2005.

Everything works perfectly, but when I publish the application on a IIS server service, it seems like all connections fail... :(

I looked up on internet but found nothing on this. I think my webconfig file is correct :

[Code]....

View 16 Replies

Configuration :: Web Application Using Visual Studio 2010 And Deployment On IIS And AjaxToolKit ?

Dec 2, 2010

I have developed a web application using Visual Studio 2010 and in that application I have used AjaxControlToolkti 3.5 in some pages. When I go to Solution Explorer->References I have AjaxControlToolKit.dll file and if I take the property of that file i see the following in PATH field E:My DataEBPMinAjaxControlToolkit.dll which is a path of my development machine.

After that I went to my UAT machine (windows xp + IIS 6.0) copy the entire project in a folder of UAT machine, created a virtual directory, provided Alias and the Directory.Now when I access my UAT server from outside it works perfect except it throws "RunTime Error" on those pages where I have used

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>

I guess as my AjaxControlToolkit path is refereing to my development machine location therefore its throwing error...what's the solution without making proper deployment. Actually on our UAT all the applications are using IIS 6.0 and if i go on proper deployment and IIS 7.0 (i guess it requires for deployment from Visual Studio 2010) I will have to reconfigure all the applications on UAT which I cannot do at this moment.

View 2 Replies

Configuration :: Can Create An Incremental Deployment Package Using Either Visual Studio 2010 Web Deployment Projects

Mar 27, 2011

Can I create an incremental deployment package using either Visual Studio 2010 Web Deployment Projects or Web Deploy (Web Deployment Tool) .

I need to automatically select changed files from a source and destination or a change set on TFS and build a deployment package only with the changed files.

View 9 Replies

Configuration :: Deployment On Client Server?

Jul 23, 2010

I have developed an ASP.NET MVC 2 application for a client using Framework 4.0 & Visual Studio 2010 and tested it on IIS 7 locally. My client has a windows 2003 server running IIS 6 and Framework 2.0 installed. They are already running some web forms applications on that server.I have a few queries regarding deployment of my application to that server:1. Do I need to install anything else other than Framework 4.0 on that server? Any ASP.NET MVC Components?2. Will installing Framework 4.0 break their existing applications?3. What is the best deployment strategy ?

View 1 Replies

Configuration :: Application Root - Local IIS?

Oct 15, 2010

I recently got abused on these forums because I was testing with the cassini in my development environment. So now I use local iis via the settting in the properties --> web tab and then creating a virtual directory.

The problem now is that the url is:

http://Localhost/Website

The problem is that http://Localhost/ is still the root - so its gone and broke all my css and JQuery ajax calls.

I've tried playing with application root setting in the properties tab with no luck. I have been querying the interwebs and realise that I need to do something in IIS -

View 3 Replies

Configuration :: Unable To Login After Deployment To Web Server

Feb 7, 2011

Web Config file...

[Code]....

In Code behind .. one of the files... I use this.

[Code]....

I use aspnet login control and tables, and I am not able to log in using the userid and password. I checked the tables and the userid exists and the password is also right. I am just not able to go past the first login page .. no problems in development.

View 7 Replies

IIS Configuration :: WCF Service Not Working On Deployment Server

Nov 30, 2013

WCF service call by AutoCompleteExtender but "404 file not found" return.

service path is correct.

code run correctaly on devlopent server.

View 1 Replies

Configuration :: Host Application From Local Machine?

Feb 1, 2011

I have to host an asp.net that user can access that website something like http://111.11.11.11/myapp/homepage.aspx. ( my ip address will be 111.11.11.11). All I have local IIS installed. I want that if any user clicks on the link. He should be able to access that web application.

View 9 Replies

Configuration :: Deployment Of ASP 2.0 Website On Windows Server 2003

Jun 8, 2010

I have developed a website in ASP.NET and deployed on IIS 6.0 server on windows Server 2003.I used asp.net 2.0,SQL server 2005,AJAX and javascript .It is working.The problem I have that this website is slow. How did I deployed website on IIS? I went to Build-->Publish Web Site and it then created a folder with all pages, I simply copied that folder on webserver and put path in IIS. Is that a correct way to deploy aps.net webite or not? let me know is any other best way to deploy website that can make my website faster.

View 3 Replies

Configuration :: Deployment Of SQL Sever 2005 Database N Remote Server?

May 11, 2010

i am new to asp.net development and create my website using asp.net 2.0 and sqlserver2005express edition how can i upload the database on remote server i m using plesk acount. and what changes are require in web.config.

View 1 Replies

Configuration :: Deploy Application To UNC Location Instead Of Local Hard Disk

Aug 18, 2010

I am planning to deploy and asp.net application to a UNC path and create a virtual directory that points to the UNC path. For example the location of the asp.net application would be:

View 3 Replies

Configuration :: Deployment Of Web Application With Aspx.cs Or Aspx Files Only?

Feb 28, 2011

If we are deploying ASP.NET web application, Do we need to copy both *.aspx and *.aspx.cs files on the server?Also what if I am using different framework version? I mean 1.1 / 2.0 /3.0 /3.5 /4.0? What will be the answer in different .NET Framework versions?

View 5 Replies

Configuration :: Deployment Error -Failed To Generate A User Instance Of SQL Server Due To A Failure In Copying Database Files

Jul 28, 2010

I have created roles and users using ASP.NET configurations for login validations, it works fine if I run my application within project but when I publish my site and try to run from my Inetpub it giving this error. I tried all shorts of solutions posted in website but nothing worked for me.

"Failed to generate a user instance of SQL Server due to a failure in copying database files. The connection will be closed"

View 5 Replies

Configuration :: Hosting The Site On Local Server On IIS 7?

May 4, 2010

I am trying to host a site on my local system and also tried it on my university server but am finding a great difficulty hosting the site. The site is made in ASP.NET C# and also have silverlight application in it. I am not able to configure or wither host the site on the server. I am having IIS 7 and Windows 7 as the OS. I have enabled IIS 7 on it. (I am using the SQL Server 2005 Express Edition and have almost no knowledge on hosting on IIS 7)

View 2 Replies

Configuration :: Copy Website From Web Server To Local IIS

Oct 20, 2010

There's a project I'm doing now which is an ASP.net 2.0 written website with SQL database. (it was just assigned to me for deployment and no contact to programmer who is AWOL :-)

Scope of project is to move everything from live site to local server and display/execute exactly the way it does on the livesite (web).

Already configured Windows 2003 server as IIS and successfully restored the database through SQL 2008.

Since I am new to ASP.net deployment this is where my trouble starts: manually copied httpdocs folder to local server, copy website through MS web developer and tried to run it on local machine http://127.0.x.x/default.aspx for the home page. from there I am getting a server error log specifically the line " <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">"

I know I have some work to do in here I do want to call the attention of ghw123 since he

is familiar with the dynamics of IIS and moving websites. Another thing I would like to point is the local server doesn't display any IP address when running ipconfig or ping from command prompt i simply pull out the ip info from the running IIS service itself. Lastly, I need to figure out which file/folders are really running on the livesite since there are lots of them (for other purpose maybe) on the remote server it is hosted.

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved