473,657 Members | 2,604 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Urgent: help deploying an ASP.NET app!!

RCS
I am trying to deploy an app to a WLBS cluster. We've been testing on our QA
WLBS cluster. In VS.NET 2K3, I typically use the "Copy Project" button to
copy the project to the next tier. This is the first ASP.NET app that is
going on the production cluster. I've been writing a testing (and deploying
from dev to the QA cluster) quite a bit.

When I try to copy I get "Internal Server Error" from BOTH servers (I try
copying to each individually).

Where this is copying TO - are two servers that are set up identical (our
production intranet), there are new "virtual websites". These servers have
..NET 1.0 and 1.1 installed. This is a 1.1 application.

I re-installed FPSE on that website and that looks normal, I re-ran
aspnet_regiis.e xe -i

I am also logged on (and have connected) to both servers as an
administrator - security shouldn't be an issue in this particular
environment.

I still get the same error on both machines. Does this ring any bells?? ANY
IDEAS???? thanks
Nov 16 '05 #1
5 1425
RCS
Any have any ideas??? I got a bunch of people hounding me, I wasn't
expecting an error this uncorrectable at the last minute!!!

I re-created the virtual website, re-extended FPSE 2K2, ran aspnet_regiis
again, checked permissions.. I still get "Internet server error" if I try to
copy the source out there - or if I manually copy the files out there and
try to run a page.

Any ideas at all??

"RCS" <rs****@gmail.c om> wrote in message
news:eg******** *********@newss vr31.news.prodi gy.com...
I am trying to deploy an app to a WLBS cluster. We've been testing on our
QA WLBS cluster. In VS.NET 2K3, I typically use the "Copy Project" button
to copy the project to the next tier. This is the first ASP.NET app that is
going on the production cluster. I've been writing a testing (and deploying
from dev to the QA cluster) quite a bit.

When I try to copy I get "Internal Server Error" from BOTH servers (I try
copying to each individually).

Where this is copying TO - are two servers that are set up identical (our
production intranet), there are new "virtual websites". These servers have
.NET 1.0 and 1.1 installed. This is a 1.1 application.

I re-installed FPSE on that website and that looks normal, I re-ran
aspnet_regiis.e xe -i

I am also logged on (and have connected) to both servers as an
administrator - security shouldn't be an issue in this particular
environment.

I still get the same error on both machines. Does this ring any bells??
ANY IDEAS???? thanks

Nov 16 '05 #2
does it help if you turn off friendly errors?

Nov 16 '05 #3
RCS
What's odd is the application is "/WAS/" and the regular browser error is:

Server Error in '/' Application.

So it doesn't even recognize /WAS as an application - and yes, I've gone
into IIS and even went as far as making it "Isolated" and it's own
application. Same result.

I have a .NET DLL that's used on this page (for a legacy ASP app that
consumes it as a COM+ object) - but aside from that, this is the first real
..NET app and first ASP.NET app on this server...

thanks for the response!
<jo************ *@yahoo.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
does it help if you turn off friendly errors?

Nov 16 '05 #4
The server error is too generic to troubleshoot what the problem may
be.
In your web.config file, change the
<customErrors mode="RemoteOnl y"/>
default setting to
<customErrors mode="Off"/>
Access the page again locally and see what detailed error it gives you.

Maybe we can help you from there...

RCS wrote:
What's odd is the application is "/WAS/" and the regular browser error is:
Server Error in '/' Application.

So it doesn't even recognize /WAS as an application - and yes, I've gone into IIS and even went as far as making it "Isolated" and it's own
application. Same result.

I have a .NET DLL that's used on this page (for a legacy ASP app that consumes it as a COM+ object) - but aside from that, this is the first real .NET app and first ASP.NET app on this server...

thanks for the response!
<jo************ *@yahoo.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
does it help if you turn off friendly errors?


Nov 16 '05 #5
RCS
I have a web.config in the root AND in /WAS that already has that - still
same error

I have since re-installed .NET 1.1 sp1 and rebooted - still the same... this
seems like some sort of fundamental configuration problem, but I've tried
everything I can think of!!
"sze tan" <sz*********@gm ail.com> wrote in message
news:11******** **************@ z14g2000cwz.goo glegroups.com.. .
The server error is too generic to troubleshoot what the problem may
be.
In your web.config file, change the
<customErrors mode="RemoteOnl y"/>
default setting to
<customErrors mode="Off"/>
Access the page again locally and see what detailed error it gives you.

Maybe we can help you from there...

RCS wrote:
What's odd is the application is "/WAS/" and the regular browser

error is:

Server Error in '/' Application.

So it doesn't even recognize /WAS as an application - and yes, I've

gone
into IIS and even went as far as making it "Isolated" and it's own
application. Same result.

I have a .NET DLL that's used on this page (for a legacy ASP app that

consumes it as a COM+ object) - but aside from that, this is the

first real
.NET app and first ASP.NET app on this server...

thanks for the response!
<jo************ *@yahoo.com> wrote in message
news:11******** *************@z 14g2000cwz.goog legroups.com...
> does it help if you turn off friendly errors?
>

Nov 16 '05 #6

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

Similar topics

8
1346
by: andrewcw | last post by:
In this case I would like my application to be able to use exisiting registered COM components. I dont want to re-register them. While I am copying the interop DLL with the exe to the same directory, I get a message that says the COM component or one of its dependencies cannot be found. I also tried just using the File Scripting Object ( scrun.dll ), but that also gave drove out a permission error.
1
1269
by: Bob Smith | last post by:
Hi Everyone, I started getting the following error msg and the web users are unable to log into the web application: ----------------------- The system has called a custom component and that component has failed and generated an exception. This indicates a problem with the custom component. Notify the developer of this component that a failure has occurred and provide them with the information below. Component Prog ID: Server...
0
1193
by: Stephen | last post by:
Hi I am having trouble with a third party component that I am attempting to use on our web application (Xceed Graph Component). When I develop locally it all works fine, but as soon as I try to deploy it to our web hosts server it has a security problem. I contacted our web host and they sent me their machine.config and web_minimaltrust.config files so I could debug using their settings. But whilst I can now replicate the problem on...
5
1193
by: RCS | last post by:
I am trying to deploy an app to a WLBS cluster. We've been testing on our QA WLBS cluster. In VS.NET 2K3, I typically use the "Copy Project" button to copy the project to the next tier. This is the first ASP.NET app that is going on the production cluster. I've been writing a testing (and deploying from dev to the QA cluster) quite a bit. When I try to copy I get "Internal Server Error" from BOTH servers (I try copying to each...
0
1112
by: cj_trap | last post by:
Hi I have a small app which needs to be able to send out email (via outlook) under certain conditions. I've got it working perfectly on my PC, but I'm not sure how to deploy it. The (apparently valid) assumption is that the user will have outlook installed and will be logged in as a valid outlook user. My project has 3 outlook-related dlls referenced - Interop.Microsoft.Office.Core.dll, Interop.Outlook.dll, and stdole.dll.
3
1083
by: neilmcguigan | last post by:
my local web.config on my development machine is different than the live version, ex some hardcoded paths (required by a stupid control) and debug=true vs false what's a good way to keep live and test web.configs synchronized, ie if i add a setting, but maintain the necessary differences? TIA neil
6
5526
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
1
1451
by: z1freeride | last post by:
I tried to install my app an a machine without the .net framework. In my Publish/Prerequisite settings (C# express 2008), I had "Download prerequisites from the component vendor's web site" check. But unfortunately, I received an error and it did not download from Microsoft's site. I would like to try to download the prerequisites from my website. So I found the .net redistributable but I'm not exactly sure how to go about including it with...
2
3870
by: subhash a | last post by:
When I deploy my WPF Solution to the File System. I didnt see app.exe.config being deployed.
0
8303
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
8821
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
8723
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...
1
8502
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7316
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...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4300
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1941
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1601
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.