Hello, Telerik Team.
I have been developing a web application in the following environment:
- Windows XP Professional Version 2002 Service Pack 3
- Microsoft .Net Framework Version 4.0.30319 RTMRel
- Visual Studio 2010 Version 10.0.30319.1 RTMRel
- RadControls for ASP.NET AJAX Q2 2011 SP1
While testing the application, launched from Visual Studio, no errors are reported.
After deploying the application to my local IIS, no errors are reported as well.
However, after deploying the application to IIS in a computer running Windows Server 2003 R2 Standard Edition Service Pack 2, the attached error message is displayed when one of the aspx pages is launched.
Using remote debugging, I have added a breakpoint at the very beginning of each method implemented on the server side of the page that crashes. Without any exception, all of them are executed without errors.
The last method successfully executed before the application crashes is the following:
On the client side of the page that crashes, "debugging" has been added at the very beginning of all JavaScript functions. None of the breakpoints are reached.
Based on the error message, would it be possible to identify why the application crashes?
Are there methods I should create on the server side that could identify the problem?
Are there functions I should create on the client side that could identify the problem?
Thank you in advance.
Paulo
I have been developing a web application in the following environment:
- Windows XP Professional Version 2002 Service Pack 3
- Microsoft .Net Framework Version 4.0.30319 RTMRel
- Visual Studio 2010 Version 10.0.30319.1 RTMRel
- RadControls for ASP.NET AJAX Q2 2011 SP1
While testing the application, launched from Visual Studio, no errors are reported.
After deploying the application to my local IIS, no errors are reported as well.
However, after deploying the application to IIS in a computer running Windows Server 2003 R2 Standard Edition Service Pack 2, the attached error message is displayed when one of the aspx pages is launched.
Using remote debugging, I have added a breakpoint at the very beginning of each method implemented on the server side of the page that crashes. Without any exception, all of them are executed without errors.
The last method successfully executed before the application crashes is the following:
protected
void
RadScheduler1_ResourcesPopulating(
object
sender, ResourcesPopulatingEventArgs e)
// Description: this methods initializes the extended properties of the scheduling information.
{
String aux = System.Web.HttpContext.Current.Session[
"ClubId"
].ToString();
Int16 clubId = Convert.ToInt16(aux);
e.SchedulerInfo =
new
SchedulerInfoExt(e.SchedulerInfo, clubId, System.Web.HttpContext.Current.Session[
"ResourceType"
].ToString());
}
On the client side of the page that crashes, "debugging" has been added at the very beginning of all JavaScript functions. None of the breakpoints are reached.
Based on the error message, would it be possible to identify why the application crashes?
Are there methods I should create on the server side that could identify the problem?
Are there functions I should create on the client side that could identify the problem?
Thank you in advance.
Paulo