Could not launch the web server.The "xsp4" web server cannot be starte
2012-09-04 00:19 Format Deng 阅读(789) 评论(0) 编辑 收藏 举报
最近两天尝试着在Linux(Suse)平台上搭建.net开发环境,在安装了mono 2.11.4和monodevelop3.1.0之后,创建一个简单Asp.Net项目,能够正常编译,也能通过xsp运行网站,但是一在monodevelop中调试就报错,错误提示
[code]
Could not launch the web server.The "xsp4" web server cannot be starte
[/code]
用locate找了之后发现是存在xsp4的,纠结再三之后在google找了一圈,发现是个已知bug
https://bugzilla.xamarin.com/show_bug.cgi?id=5065
知道问题解决就简单了
[code]
cp /usr/lib/mono/4.0/xsp4.exe /usr/lib/mono/4.5/
[/code]