mod-mono

Saving Files in the Root Website Directory in Apache

I have an ASP.NET application running on Apache server with mod_mono. If I have a folder called "temp" located in the website's root directory and run the following code System.IO.TextWriter tw = new System.IO.StreamWriter("temp/test.txt"); tw.WriteLine(DateTime.Now); tw.Close(); it saves test.txt in C:\Program Files\Mono-2.6.4\bin\te...

C# PDF library for headless Linux server

Hi, I'm currently trying to find a PDF library which will run without a running X server. I have already tried the following... Migradoc/PDFSharp (requires X) ITextSharp (requires X) SharpPDF (might work, but I am looking for something with a bit more features) The library does not have to be opensource or free. My solution runs on...

mod_mono question: Could not resolve the name 'ConfigurationManager'

Hello, I'm running mod_mono 2.4.4 on Ubuntu and I'm finding that I've had to go through my VB files and add "imports System.Configuration" to all of them to resolve the name error. This was not necessary in mod_aspdotnet on the Windows side. I have, however, run into one error of which I can't find the source: System.Web.Co...

call stack missing info on mono with apache and mod_mono

How do i enable debugging/stacktrace with filenames and numbers with apache2/mod_mono? Instead of filenames and numbers i get something like this at System.Web.StaticFileHandler.ProcessRequest (System.Web.HttpContext context) [0x00000] in <filename unknown>:0 I tried using MonoDebug true in apache and recompile mod_mono with --enable...

MySQL Connector with mod_mono and mono 2.6.7

I've been having quite a bit of trouble getting an MVC2 web application to find the MySQL connector. I am running CentOS 5. I've installed the DLL into the GAC using the 2.0 version of the tool $ mono /usr/local/lib/mono/2.0/gacutil.exe -i v2/mysql.data.dll Installed v2/mysql.data.dll into the gac (/usr/local/lib/mono/gac) I verify t...

How to map a custom file extension to mono?

I have mapped *.xyz extension to my own custom handler in asp.net and can run it on Windows asp.net. How can I do the same thing on mono (Linux/Apache - ubuntu)? I have this in my web.config: <httpHandlers><add path=".xyz" verb="" type="MyCustomHandler,..."/>... I also added similar things to mod_mono.conf and several other files but...