appfabric

Installing AppFabric 1.1 with PowerShell DSC results in modal dialog error

烂漫一生 提交于 2021-02-08 11:12:50
问题 I'm trying to automate the installation of AppFabric 1.1 on a Windows 2012 R2 server using PowerShell DSC. This is actually part of me trying to automate the SharePoint Foundation install and configuration, but AppFabric 1.1 is a pre-requisite. Below is a snippit from my DSC config script: Script InstallSharePointPreRequisites { GetScript = { Return "InstallSharePointPreRequisites" } TestScript = {$false} SetScript = { Start-Process -FilePath 'c:\temp\SharePoint\pre

Installing AppFabric 1.1 with PowerShell DSC results in modal dialog error

[亡魂溺海] 提交于 2021-02-08 11:12:34
问题 I'm trying to automate the installation of AppFabric 1.1 on a Windows 2012 R2 server using PowerShell DSC. This is actually part of me trying to automate the SharePoint Foundation install and configuration, but AppFabric 1.1 is a pre-requisite. Below is a snippit from my DSC config script: Script InstallSharePointPreRequisites { GetScript = { Return "InstallSharePointPreRequisites" } TestScript = {$false} SetScript = { Start-Process -FilePath 'c:\temp\SharePoint\pre

Where is the Increment method on the DataCache?

若如初见. 提交于 2020-03-03 15:53:46
问题 I want to use the Increment method from the DataCache documentation but the method is not available on my DataCache object. Clearly I don't have the version of Microsoft.ApplicationServer.Caching.Client.dll that matches the documentation but I can't seem to figure out what version contains that method and where to get the assembly??? The version I have 1.0.4632.0 I am using the AppFabric for Windows 1.1. 回答1: This method is part of Azure and not Windows Server. AppFabric exists in two

AppFabric / WF 4.0 instances stuck despite no bookmark and pending timer

妖精的绣舞 提交于 2020-01-17 05:22:10
问题 I already posted a question about this (Abandoned instances that will not continue execution (zombie instances)), but still haven't got an answer. A difference I have noticed from the last question is that it can happen also when the configuration of the service Action on unhandled exception is set AbandonAndSuspend. So the scenario is a long term Workflow service hosted in IIS using AppFabric persistence store. This service performs some actions and then polls the result from a database.

Abandoned instances that will not continue execution (zombie instances)

浪尽此生 提交于 2020-01-15 09:06:52
问题 I have a lot of WF instances hosted in IIS/WAS which are in a running (idle) state which will not do anything even though they don't have such a long delay or any active bookmark. Tracking is enabled (HealthMonitoringProfile). As the tracking data is deleted, they end up without any tracked instance or events. The only way to make them work again is to suspend and resume them, but this is sometimes failing and is always a pain. Has anyone had this issue? any help? Thanks in advance 回答1: In

How to fake a directory listing in IIS? VirtualPathProvider works for file but

有些话、适合烂在心里 提交于 2020-01-06 07:32:51
问题 We're using AppFabric 1.1 & IIS 8.0 to run our xamlx based workflows. To make the static xamlx files go away we're used Ron Jacobs perfect sample code to store them in a database and serve the xamlx content trough a VirtualPathProvider . http://blogs.msdn.com/b/rjacobs/archive/2011/06/15/how-to-load-wf4-workflow-services-from-a-database-with-iis-appfabric.aspx So far so good, the xamlx files are served if someone hits the right uri. But now the AppFabric Dashboard has no chance to collect and

How to fake a directory listing in IIS? VirtualPathProvider works for file but

杀马特。学长 韩版系。学妹 提交于 2020-01-06 07:32:08
问题 We're using AppFabric 1.1 & IIS 8.0 to run our xamlx based workflows. To make the static xamlx files go away we're used Ron Jacobs perfect sample code to store them in a database and serve the xamlx content trough a VirtualPathProvider . http://blogs.msdn.com/b/rjacobs/archive/2011/06/15/how-to-load-wf4-workflow-services-from-a-database-with-iis-appfabric.aspx So far so good, the xamlx files are served if someone hits the right uri. But now the AppFabric Dashboard has no chance to collect and

Windows Workflow Foundation On-Premise Hosting and Web Api

无人久伴 提交于 2020-01-05 05:48:11
问题 I want to use Windows Workflow Foundation 4.5 and trigger the workflows via web api. What are my hosting options now that MS is ending AppFabric support? Should I even use Windows Workflow Foundation or should I look into a 3rd party solution? This is on-premise and I don't have the ability to use azure. I've done a few workflows and seems like WWF isn't hard to use but it's not clear how to host it. Can I host inside a web api project without AppFabric? My main concern is being able to

AppFabric Caching - What are its serialization and deserialization requirements for an object?

非 Y 不嫁゛ 提交于 2020-01-04 03:13:29
问题 Problem: When caching an instance of a class and immediately getting it back out of cache, i get the object back (its not null), but all of its properties / fields are null or defaults. _cacheHelper.PutInCache("testModuleControlInfoOne", mci); //mci has populated fields var mciFromCacheOne = _cacheHelper.GetFromCache("testModuleControlInfoOne"); //mciFromCacheOne now has null or default fields So I suspect the way the object is structured is the problem and AppFabric is not serializing the

Using a mix of AppFabric local cache and server cache

寵の児 提交于 2020-01-03 16:49:03
问题 I'm just starting out using AppFabric... My application is in healthcare - we have about 15000 users of the system and they access patient information in bursts (e.g. think of a team of nurses/doctors accessing a patient when they are hospitalized). What I'd like to do is cache certain items (e.g. patient demographics info) in memory and other items (e.g. labs, medications, diagnostic imaging, reports) on the cache host server. The underlying data comes from various 3rd party systems, some of