[Mono-list] mod_mono, xsp 1.0.6 returning odd error

James Purser purserj@ksit.dynalias.com
Thu, 24 Feb 2005 21:23:31 +1100


I don't know if this has been raised before but I have just installed
the full 1.0.6 package list and am getting some odd errors on very basic
pages.

Basically the page is as below

<%@ Page Language="C#" %>
<%
Response.Write("hello world");
%>

And then I get the following error:

Server error in '/' application

________________________________________________________________________
Cannot find '10355.dll'.
Description: Error processing request. 

Error Message: HTTP 404. Cannot find '10355.dll'.

Below is the Apache config I use for this virtual host:

<VirtualHost 192.168.0.20:80>
DocumentRoot "/usr/local/apache2/htdocs/bigandbold"
AddType application/x-asp-net .aspx .ashx .asmx .ascx .asax .config
.ascx
ServerName bigandbold.com.au
DirectoryIndex index.aspx
ErrorLog logs/bigandbold.com.au_error.log
CustomLog logs/bigandbold.com.au_custom.log common
MonoDocumentRootDir "/usr/local/apache2/htdocs/bigandbold"
MonoUnixSocket "/tmp/VirtualHosts/bigandbold/mono_socket/monosock"
MonoWapiDir "/tmp/VirtualHosts/bigandbold/wapi"
MonoApplications "/:/usr/local/apache2/htdocs/bigandbold"
<Directory /usr/local/apache2/htdocs/bigandbold>
SetHandler mono
</Directory>
</VirtualHost>

I am using the tutorial that Steven Deobald wrote and the scripts he
wrote to manage the /tmp/VirtualHosts directories and permissions


James Purser