It's mono 0.19 rpm's redhat 8.0

Moving the xsp tree inside /var/www (where my apache 2.0.40 lives) got
rid of the permision error but creates another one saying

System.Web.HttpException:  ---> System.IO.FileNotFoundException: File
'tmp659042721.dll' not found.
in (unmanaged) /usr/lib/libmono.so.0(mono_raise_exception+0x20)
[0x40ab38d4]
in (unmanaged) /usr/lib/libmono.so.0 [0x40acea62]
in <0x00101> 00
System.Web.Compilation.GlobalAsaxCompiler:GetCompiledType ()
in <0x000e6> 00
System.Web.Compilation.GlobalAsaxCompiler:CompileApplicationType
(string,System.Web.HttpContext)
in <0x0002c> 00 System.Web.HttpApplicationFactory:CompileApp
(System.Web.HttpContext)
in <0x00048> 00 System.Web.HttpApplicationFactory:InitializeFactory
(System.Web.HttpContext)
in <0x00070> 00 System.Web.HttpApplicationFactory:GetInstance
(System.Web.HttpContext)
in <0x00154> 00 System.Web.HttpRuntime:InternalExecuteRequest
(System.Web.HttpWorkerRequest)
--- End of inner exception stack trace ---


I atached the machine.config (I deleted some stuff to get rid of the
empty pages problem mentioned in the faq)

Thanks

On Mon, 2003-02-03 at 01:01, Daniel Lopez wrote:
> 
> Whcich version of Mono are you using, 0.19, CVS?
> Which OS version/distribution?
> What are the contents of machine.config? I am thinking this may be related to
> number 4 in http://www.apacheworld.org/modmono/FAQ.txt, although I have not
> seen the message you mention before
> 
> Cheers
> 
> Daniel
> 
> On Sun, Feb 02, 2003 at 01:12:05AM +0100, O.S. de Zwart,  endforward wrote:
> > Hello,
> > 
> > I am getting the following error:
> > 
> > System.Web.HttpException:  ---> System.UnauthorizedAccessException:
> > Access to the path "/home/ozwart/xsp/server/test/index.aspx" is denied.
> > 
> > at http://endforward.xs4all.nl/mono/index.aspx
> > 
> > the entire xsp tree is owned by apache apache and even 777. Any ideas?
> > -- 
> > Olle de Zwart
> > www.endforward.com
> > +31(0)6-52330739
> > [EMAIL PROTECTED]
> > 
> > _______________________________________________
> > Mono-list maillist  -  [EMAIL PROTECTED]
> > http://lists.ximian.com/mailman/listinfo/mono-list
> _______________________________________________
> Mono-list maillist  -  [EMAIL PROTECTED]
> http://lists.ximian.com/mailman/listinfo/mono-list
> 
> 
-- 
Olle de Zwart
www.endforward.com
+31(0)6-52330739
[EMAIL PROTECTED]
<?xml version="1.0" encoding="utf-8"?>

<configuration>

        <configSections>
                <section name="appSettings" 
type="System.Configuration.NameValueFileSectionHandler, System" />

                <section name="system.diagnostics" 
type="System.Diagnostics.DiagnosticsConfigurationHandler, 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" />
                        <section name="machineKey" 
type="System.Web.Configuration.MachineKeyConfigHandler, System.Web" />
                        <section name="authentication" 
type="System.Web.Configuration.AuthenticationConfigHandler, System.Web" />
                </sectionGroup>
        </configSections>
        <system.web>
                <httpHandlers>
                        <add verb="*" path="*.aspx" 
type="System.Web.UI.PageHandlerFactory, System.Web" />
                        <add verb="*" path="*.asax" 
type="System.Web.HttpForbiddenHandler, System.Web" />
                        <add verb="*" path="*.ascx" 
type="System.Web.HttpForbiddenHandler, System.Web" />
                        <add verb="*" path="*.config" 
type="System.Web.HttpForbiddenHandler, System.Web" />
                        <add verb="GET,HEAD" path="*" 
type="System.Web.StaticFileHandler, System.Web" />
                        <add verb="*" path="*" 
type="System.Web.HttpMethodNotAllowedHandler, System.Web" />
                </httpHandlers>
                <httpModules>
                        
                </httpModules>
                <machineKey validationKey="AutoGenerate" decryptionKey="AutoGenerate" 
validation="SHA1" />
        </system.web>
        
        <appSettings>
        <!--<add key="yourkey" value="your value" /> -->
        <!--<remove key="a key defined higher in the hierarchy" /> -->
        <!--<clear/> Removes all defined settings -->
        </appSettings>
        <system.diagnostics>
                <trace autoflush="false" indentsize="4" />
        </system.diagnostics>
</configuration>

Reply via email to