Hello,
> I found my problem, I was alreay running apache on port 8080!
>
> Oops. So I switch it to 8081 and it appears to be listening.
>
> Now when I view the xsp test server pages, I get:
> Error
This was a bug in the packaging of Mono, we are uploading new
pre-compiled packages. In the meantime, you can just stick the attached
machine.config in the /etc/mono/ directory.
Miguel
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="appSettings"
type="System.Configuration.NameValueFileSectionHandler, System" />
<sectionGroup name="system.web">
<section name="httpHandlers"
type="System.Web.Configuration.HttpHandlersSectionHandler, System.Web" />
<section name="httpModules"
type="System.Web.Configuration.HttpModulesConfigurationHandler, System.Web" />
</sectionGroup>
</configSections>
<system.web>
<httpHandlers>
<add verb="*" path="*.aspx"
type="System.Web.UI.PageHandlerFactory" />
<add verb="*" path="*.asax"
type="System.Web.HttpForbiddenHandler" />
<add verb="*" path="*.ascx"
type="System.Web.HttpForbiddenHandler" />
<add verb="*" path="*.config"
type="System.Web.HttpForbiddenHandler" />
<add verb="GET,HEAD" path="*"
type="System.Web.StaticFileHandler" />
<add verb="*" path="*"
type="System.Web.HttpMethodNotAllowedHandler" />
</httpHandlers>
<httpModules>
</httpModules>
</system.web>
<appSettings>
<!--<add key="yourkey" value="your value" /> -->
<!--<remove key="a key defined higher in the hierarchy" /> -->
<!--<clear/> Removes all defined settings -->
</appSettings>
</configuration>