Derek Ekins
Derek Ekins

Reputation: 11391

Debugging xsp on windows

Is it possible to debug a website running under xsp on windows? I would like to attach to the process from visual studio if that is possible.

I modified my xsp2.bat file to enable debuging @"C:\PROGRA~1\Mono-2.4\bin\mono.exe" --debug=mdb-optimizations "C:\PROGRA~1\Mono-2.4\lib\mono\2.0\winhack\xsp2.exe" %*

but it doesn't seem to help.

Any ideas?

Upvotes: 2

Views: 534

Answers (3)

knocte
knocte

Reputation: 17939

As balint points out, the mdb debugger is Linux only. However, you should be able to use the SoftDebugger.

Upvotes: 0

Kris Erickson
Kris Erickson

Reputation: 33834

Looks like this functionality is coming soon from Novell. Mono Tools For Visual Studio.

Upvotes: 2

balint
balint

Reputation: 3431

no you can't do this, mono-debug is linux only.. (there's even no mdb.exe in the %Program Files/Mono-2.4/bin folder)

Upvotes: 1

Related Questions