> I'm trying to run a VB.NET web app under Linux using Mono and vbnc. > When I run xsp in the directory with the files and try to access > HelloWorld.aspx, I get a 500 client-side with this information: > Description: Error processing request. vbnc is not working with web apps yet (it will hopefully very soon) > DEBUG RUN > > > ** (/usr/local/lib/mono/1.0/vbnc.exe:15670): WARNING **: The class > System.Collections.Generic.Queue`1 could not be loaded, used in > System, Version=2.0.0.0, Culture=neutral, > PublicKeyToken=b77a5c561934e089 > Could not load type 'System.Collections.Generic.Queue`1' from assembly > 'System, Version=2.0.0.0, Culture=neutral, > PublicKeyToken=b77a5c561934e089'. > at <0x00000> <unknown method> > at vbnc.Main.Main (System.String[] CmdArgs) [0x00000] > > What assembly am I missing? Any suggestions?
For some reason it looks like vbnc.exe got into your v1.0 gac, while it is a v2.0 only assembly. What happens if you copy vbnc.exe to some other directory and then run "mono vbnc.exe test.vb"? Rolf _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
