cancel
Showing results for 
Search instead for 
Did you mean: 

Crystal Reports in Hyper-V

Former Member
0 Kudos

I have an application developed in VS2003 with CR XI. The application is installed on a machine Windows Server 2008 and works properly.

When moving the machine where I have the application installed to Hyper-V or install my application on a machine to Hyper-V application stops working.

In Global.asa of my application I create empty report, when aplication Start, in order to optimize production of maps from Crystal.

Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)

Dim Mapa As ReportDocument

Dim Dados As DataSet

Dim Tabela As DataTable

Dim Coluna As DataColumn

Try

Coluna = New DataColumn

Coluna.ColumnName = "Id"

Coluna.DataType = System.Type.GetType("System.Int32")

Tabela = New DataTable("Tabela")

Tabela.Columns.Add(Coluna)

Dados = New DataSet

Dados.Tables.Add(Tabela)

Mapa = New rptBase

Mapa.SetDataSource(Dados)

Catch

Throw

Finally

Dados.Dispose()

Tabela.Dispose()

Coluna.Dispose()

Mapa.Dispose()

End Try

End Sub

When starting my application the following internal error appears:

"Faulting application w3wp.exe, version 7.0.6002.18005, time stamp 0x49e023cf, Faulting module unknown, version 0.0.0.0, time stamp 0x00000000, exception code 0xc0000005, fault offset 0x042f5e08, process id 0x44c, application start time 0x01ca11fb2199fcb5."

and the following Warning:

"A process serving application pool 'ASP.NET 1.1' suffered a fatal communication error with the Windows Process Activation Service. The process id was'1720 '. The data field contains the error number."

The page displayed show the following error message:

"Internet Explorer cannot display the webpage

What you can try:

Diagnose Connection Problems

More information"

Any suggestions to solve this problem?

Best Regards,

Paulo Silva

Accepted Solutions (1)

Accepted Solutions (1)

former_member183750
Active Contributor
0 Kudos

Only version 10.5 and version 12.x of Crystal Reports is supported on WIN 2008. It is good to hear that it works for you as long as it is not installed to Hyper-V, but your 1st thing to do should be going with a supported product.

See the [Supported Platforms|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e09198a1-911e-2b10-179f-ce8eed51aed0] documentation for more details.

Ludek

Answers (1)

Answers (1)

Former Member
0 Kudos

HI Paulo,

Just wondering did you find the solution for that problem?

Thanks,

Yin