无法调试 asmx Web 服务
我尝试附加到进程 w3wp.exe 来调试我的 asmx Web 服务,添加断点。但没有任何反应(当前不会命中断点。尚未为此文档加载任何符号)。
我可以调试从其他项目中的 asmx 文件调用的代码。
请参阅asmx文件:
<%@ WebService Language="vb" Codebehind="~/App_Code/MyWebService.asmx.vb" Class="MyWebService.MyWebService" Debug="true" %>
请参阅Web.config:
<compilation defaultLanguage="vb" debug="true" targetFramework="4.0">
<compilers>
<compiler language="vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" extension=".VB" compilerOptions="/optimize+ /define:Trace=True /imports:Microsoft.VisualBasic,System,System.Collections,System.Data,System.Diagnostics,System.Web,System.Web.Services"/>
</compilers>
</compilation>
我使用win 2008 R2,VS 2010 SP1,IIS 7.5,.Net Framework 4 x86。
有人知道如何调试我的 asmx 文件吗?
I try attach to procees w3wp.exe to debug my asmx web service, add breakpoints. But nothing heppends (The breakpoint will not currently be hit. No symbols have been loaded for this document).
I can debug code that call from asmx file in othes projects.
See asmx file:
<%@ WebService Language="vb" Codebehind="~/App_Code/MyWebService.asmx.vb" Class="MyWebService.MyWebService" Debug="true" %>
See Web.config:
<compilation defaultLanguage="vb" debug="true" targetFramework="4.0">
<compilers>
<compiler language="vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" extension=".VB" compilerOptions="/optimize+ /define:Trace=True /imports:Microsoft.VisualBasic,System,System.Collections,System.Data,System.Diagnostics,System.Web,System.Web.Services"/>
</compilers>
</compilation>
I use win 2008 R2, VS 2010 SP1, IIS 7.5, .Net Framework 4 x86.
Is anybody has ideas how I can debug my asmx file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Visual Studio 中,确保您正在调试模式(而不是发布模式)下运行。另请尝试删除 /obj 和 /bin 文件夹,然后再次尝试重建整个解决方案。
In Visual Studio, make sure you are running in Debug mode (as opposed to Release mode). Also try deleting your /obj and /bin folders and try rebuilding your entire solution again.
这就是发生在我身上的事情:
我复制并粘贴了一个 asmx 文件,并且我有了新复制的 asmx 文件。
即,我将 MyWebService.asmx 复制到 MyWebService2.asmx
原始 .asmx 文件:
我忘记重命名类部分:
Class="MyWebService.MyWebService"
然后MyWebService2.asmx文件包含:
即使MyWebService2.asmx.cs文件包含MyWebService2,但后端将重定向到asmx文件:MyWebService
MyWebService2.asmx.cs:
我的错,当我双击.asmx文件时,VS将显示 .asmx.cs 文件,所以让我很困惑。
This is what happened to me :
I copy and paste a asmx file and I have new copied asmx file.
I.e, I copy MyWebService.asmx to MyWebService2.asmx
Original .asmx file:
I have forgotten to Rename Class Section :
Class="MyWebService.MyWebService"
Then the MyWebService2.asmx file contain :
Even the MyWebService2.asmx.cs file contain MyWebService2, but the asmx file the backend will redirected to : MyWebService
MyWebService2.asmx.cs:
My fault, when I double click the .asmx file, VS will show .asmx.cs file, so makes me confused.