English 中文(简体)
视窗服务从共享点所需的框架开始。
原标题:Windows service won t start with framework needed for Share Point

我有一个窗口服务,为客户连接打开了WCF终点。 这项服务还参考了SongPoint图书馆使用客户物体模型。 当我使用Song Point图书馆时,我的建筑失败了,因为它说,它没有发现Song Point的参考点,而当时它显然在那里。 为了确定这一点,我了解到,我不得不将框架工作从“网络框架4客户概况”改为“网络框架4”。

问题在于我试图开始这项服务时,它突然失败了“1053错误: 该处没有及时对开办或控制请求作出回应。

当框架是“网络框架4客户概况”时,服务就没有问题。

是否有任何人知道问题是什么以及如何解决这一问题?

<>Update: 我将这一 app改成一个ole子,看看正在发生什么。 一旦评估开始,我就需要安装www.net框架。 我安装了所有可能的框架,我仍然收到这一错误信息。 任何想法?

最佳回答

有几个事情需要检查。

首先,“共享点”客户标本模型只有64-bit/.net 3.5,因此,某些客户正在汇编成“净3.5”,并配有全方位的64-bit或任何职业。

其次,共有3个客户标本模型,分别用于 Java本和银根。 通常的客户物体模型只能使用共享点服务器,而不是用户机器,而另外两个用户一般在浏览器内使用(不过严格限于这种)。

第三,为了与“共同点目标模式”(标准一)一起开发,“共同点”的例子必须放在开发机器上。

如果其中任何问题都存在,你也许需要根据共享点网络服务而不是目标模式制定方案来解决这一问题。

问题回答

暂无回答




相关问题
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 ...

热门标签