[Mono-list] Running MS compiled ASP.NET in Mono.
Gonzalo Paniagua Javier
gonzalo@ximian.com
Tue, 30 Sep 2003 16:30:38 +0200
El mar, 30-09-2003 a las 10:53, Mark Furniss escribió:
> Dear Gonzalo and fellow list gurus,
>
> Thanks for your help. I have now managed to get a simple "hello world"
> application to run fine having copied the dll's to server/test/bin.
> However, when I try to run a more complicated application (multiple
> assemblies) I receive the following error (see below). Any ideas??
>
> Thanks
> Mark
>
> Error in '/' Application
> Error
> Description: Error processing request.
>
> Error Message:
>
> Stack Trace:
>
> System.Reflection.TargetInvocationException: Exception has been thrown
> by the target of an invocation. ---> System.NullReferenceException: A
> null value was found where an object instance was required
> in <0x00075> 00
> MCGGraphics.Utilities.ErrorUtils.ErrorUtilities:SetErrorLogPath (string)
Does that work on windows? If so, compile that assembly with mcs -g (to
generate debug info) and run xsp like 'mono --debug xsp.exe ......' that
will tell you the line number where the exception is thrown.
-Gonzalo