[Mono-list] mono/linux newbie needing xsp test help
Miguel de Icaza
miguel@ximian.com
10 Dec 2002 16:28:51 -0500
--=-Bw4qhQDOqomKbfVGi1rd
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
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
--=-Bw4qhQDOqomKbfVGi1rd
Content-Disposition: attachment; filename=machine.config
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; name=machine.config; charset=ISO-8859-1
<?xml version=3D"1.0" encoding=3D"utf-8"?>
<configuration>
<configSections>
<section name=3D"appSettings" type=3D"System.Configuration.NameVal=
ueFileSectionHandler, System" />
<sectionGroup name=3D"system.web">
<section name=3D"httpHandlers" type=3D"System.Web.Configuration.HttpHand=
lersSectionHandler, System.Web" />
<section name=3D"httpModules" type=3D"System.Web.Configuration.HttpModul=
esConfigurationHandler, System.Web" />
</sectionGroup>
</configSections>
<system.web>
<httpHandlers>
<add verb=3D"*" path=3D"*.aspx" type=3D"System.Web.UI.PageHandlerFactory=
" />
<add verb=3D"*" path=3D"*.asax" type=3D"System.Web.HttpForbiddenHandler"=
/>
<add verb=3D"*" path=3D"*.ascx" type=3D"System.Web.HttpForbiddenHandler"=
/>
<add verb=3D"*" path=3D"*.config" type=3D"System.Web.HttpForbiddenHandle=
r" />
<add verb=3D"GET,HEAD" path=3D"*" type=3D"System.Web.StaticFileHandler" =
/>
<add verb=3D"*" path=3D"*" type=3D"System.Web.HttpMethodNotAllowedHandle=
r" />
</httpHandlers>
<httpModules>
</httpModules>
</system.web>
=09
<appSettings>
<!--<add key=3D"yourkey" value=3D"your value" /> -->
<!--<remove key=3D"a key defined higher in the hierarchy" /> -->
<!--<clear/> Removes all defined settings -->
</appSettings>
</configuration>
--=-Bw4qhQDOqomKbfVGi1rd--