[Mono-aspnet-list] web service - type not found

Scott Emick scott.emick at gmail.com
Fri Mar 19 09:05:37 EDT 2010


I'm just trying to get a basic web service going.  I followed the
instructions at http://ruski.co.za/page/Install-Mono-on-Ubuntu.aspx and the
test web service seems to work, but when I install my own compiled web
service I get type Type CS_Cart_Int.cscartwebservice not found.  

I have the following in my apache conf file. What do I need to add to tell
mono to look for my dll in the location I have installed it?

<virtualhost webserv01.gva-twn.com:80>
	ServerAdmin webmaster at localhost
	DocumentRoot /var/www
	MonoDocumentRootDir /var/www/cscartint/
	MonoServerPath rootsite "/usr/local/bin/mod-mono-server2"
	MonoApplications rootsite "/:/var/www/cscartint"
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow,deny
		allow from all
	</Directory>
	<Directory /var/www/cscartint>
		MonoSetServerAlias rootsite
		SetHandler mono
		AddHandler mod_mono .aspx .ascx .asax .ashx .config .cs .asmx
	</Directory>
	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
	<Directory "/usr/lib/cgi-bin">
		AllowOverride None
		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
		Order allow,deny
		Allow from all
	</Directory>

	ErrorLog /var/log/apache2/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 192.168.0.0/255.255.0.0 ::1/128
    </Directory>

</virtualhost>
-- 
View this message in context: http://n4.nabble.com/web-service-type-not-found-tp1599317p1599317.html
Sent from the Mono - ASP.NET mailing list archive at Nabble.com.


More information about the Mono-aspnet-list mailing list