tags:

views:

153

answers:

2

I have a webservice.asmx file with a webservice.asmx.cs

If I make changes to the file... How do I reset Mono, so that it will pick up these changes?

I have tried an apache restart - but this only restarts apache, not the mono engine.

It seems mono scans and caches everything on start...

Thanks

+3  A: 

You can restart mod-mono using the Control Panel. See this

Amit G
+4  A: 

"sudo killall mono" to brute-force restart all mono processes.

xanadont
+1 for the sheer brutality
grenade
That will also kill other Mono websites hosted on the machine, if any.
Amit G
sudo killall -9 monoFor good measure ;)
Corey D