English 中文(简体)
. svc handler managements for. Net 2. 0 application pool 在.Net 3.0 安装后工作?
原标题:.svc handler mappings for .Net 2.0 app pool working after a .Net 3.0 install?

这很奇怪。 我有一个网站在.Net 2. 0 应用程序库( 集成模式) 下运行, 无法连接到网站的 WCF 服务 。 读到“ 所请求的内容似乎是脚本, 并且不会被静态文件处理器服务” 的讯息会在我浏览到我盒子上的 URL 时突然出现 。

我检查了ISS 中用于此网站的处理器图解 s.svc 扩展名, 并查看了以下条目: svc- Introl- 4.0, svc- ISAPI-2.0- 和 svc- ISAPI- 2.0- 64 。 但是没有显示 svc- 整合, 我想问题就在于此 。

我在 http://blogs.microsoft.co.il/blogs/bursteg/archive/2008/12/01/wcf-on-iis7-on-vista-adding-svc-handler.aspx" rel=“nofollow” < this post ,但在我的框架2.0.5027子文件夹中,没有这样的执行实例。所以我升了一级,在我的框架3.0.0的文件夹中找到了它,然后从那里运行了它。Lo and seen, 东西现在起作用了,在绘图部分有一个新的操作器用于 svc- 集成。

但我的问题是:如果我为.Net3.0安装了这个,那么一个.Net 2.0 软件库使用它的情况如何?我以为会有一个兼容性问题?

最佳回答

我安装了这个用于.Net 3.0, 一个.Net 2.0 应用程序如何使用它? 我以为会有兼容性问题呢?

不,NET框架3.0 < a href=",http://msdn.microsoft.com/en-us/library/bb822049.aspx" rel=“nofollow”>继续使用2.0 CLR

IIS Apppools表示CLR版本,而不是框架版本。

问题回答

暂无回答




相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签