如何在WCF Web服务中共享数据

发布于 2024-12-17 09:53:42 字数 3247 浏览 0 评论 0原文

为了动态调用 Web 服务,我使用 来自 Microsoft 的 WCF 动态代理

如果我正确理解了它的工作原理,代码会加载 wsdl 并在系统类上进行编译,以便使用远程 Web 服务。我将此代码放入“通用网络服务”中。其目标是通过参数中的请求来调用任何 Web 服务,并响应所调用的 Web 服务的答案。

但出现了一个问题:对此“通用 Web 服务”的每个请求都会拉取代理的新编译,并使用服务器的时间和资源。

我的目标是在一圈时间内保存每个代理的实例,并在达到这一圈时更新实例。

经过几个小时的谷歌搜索,我发现了两种方法:

  • “按会话”使用我的 WCF Web 服务,但我没有找到任何教程来解释如何轻松创建会话层
  • 使用单例来保存我的数据并将它们与所有数据交互webservice 的实例

我排除了第一个解决方案,因为我不知道如何做到这一点。所以我决定采用第二种方式。

这是我的实现:

  • FactoryTest 是单例,包含实例的哈希表
  • ProxyTest 是包含有关远程 Web 服务的每个实例的信息的类

有 FactoryTest 的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using WcfSamples.DynamicProxy;
using System.Threading;
using System.Collections;

namespace WS_Generic
{
    public sealed class FactoryTest
    {
        private static object syncRoot = new Object();
        private static Hashtable hashFactory = new Hashtable();

        public static DynamicProxy getProxy(String sServiceWsdl, String sContract)
        {
            if (hashFactory[sServiceWsdl] == null || ((ProxyTest)hashFactory[sServiceWsdl]).getTimeFromCreation().TotalSeconds > 60 * 60 * 6)
            {
                lock (syncRoot)
                {
                    if (hashFactory[sServiceWsdl] == null || ((ProxyTest)hashFactory[sServiceWsdl]).getTimeFromCreation().TotalSeconds > 60 * 60 * 6)
                    {
                        hashFactory.Add(sServiceWsdl, new ProxyTest(sServiceWsdl, sContract));
                    }
                }
            }

            return ((ProxyTest)hashFactory[sServiceWsdl]).getProxy();
        }

        public static bool isProxyExists(String sServiceWsdl, String sContract)
        {
            lock (syncRoot)
            {
                return hashFactory[sServiceWsdl] == null ? false : true;
            }
        }
    }
}

有 ProxyTest 的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using WcfSamples.DynamicProxy;

namespace WS_Generic
{
    public class ProxyTest
    {
        private DateTime instanceCreation;
        private String sServiceWsdl;
        private String sContract;
        private DynamicProxyFactory factory;
        private volatile DynamicProxy proxy;

        public ProxyTest(String sServiceWsdl, String sContract)
        {
            instanceCreation = DateTime.Now;
            this.sServiceWsdl = sServiceWsdl;
            this.sContract = sContract;
            this.factory = new DynamicProxyFactory(this.sServiceWsdl);
            this.proxy = factory.CreateProxy(this.sContract);
        }

        public DynamicProxy getProxy()
        {
            return proxy;
        }

        public TimeSpan getTimeFromCreation()
        {
            return DateTime.Now.Subtract(instanceCreation);
        }
    }
}

问题是 Web 服务似乎重置每次调用后 FactoryTest 的静态状态。因此,每次我调用 Web 服务时,我的哈希表都是空的,并且工厂会创建一个新实例。

如果有人已经遇到了 WCF Web 服务中不同线程之间共享数据的问题(并找到了解决方案),请提前感谢给我一些提示:)

PS:抱歉我的英语,那不是我的母语

In order to call webservices dynamicly, I use WCF Dynamic Proxy from Microsoft

If I understood properly how it works, the code load the wsdl and compile on system class in order to consume distant webservice. I put this code in a "generic webservice". Its goal is to call any webservice with a request in parameter, and respond the answer of the webservice called.

But a problem appears : each request to this "generic webservice" pulls a new compilation of the proxy, and use time and ressources of the server.

My objective is to save instance of each proxies during a laps of time, and renew the instance when this laps is reached.

After few hours of googling, I found two ways :

  • Use my WCF webservice "by session", but I don't find any tutorial which explains how create easily the session layer
  • Use a singleton in order to save my datas and mutualize them with all instances of webservice

I exclude the first solution because I don't know how to do this. So I decided to use the second way.

There is my implementation :

  • FactoryTest is the singleton, contening the hashtable with instances
  • ProxyTest is the class which contains information about each instances of distant webservices

There is the code of FactoryTest :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using WcfSamples.DynamicProxy;
using System.Threading;
using System.Collections;

namespace WS_Generic
{
    public sealed class FactoryTest
    {
        private static object syncRoot = new Object();
        private static Hashtable hashFactory = new Hashtable();

        public static DynamicProxy getProxy(String sServiceWsdl, String sContract)
        {
            if (hashFactory[sServiceWsdl] == null || ((ProxyTest)hashFactory[sServiceWsdl]).getTimeFromCreation().TotalSeconds > 60 * 60 * 6)
            {
                lock (syncRoot)
                {
                    if (hashFactory[sServiceWsdl] == null || ((ProxyTest)hashFactory[sServiceWsdl]).getTimeFromCreation().TotalSeconds > 60 * 60 * 6)
                    {
                        hashFactory.Add(sServiceWsdl, new ProxyTest(sServiceWsdl, sContract));
                    }
                }
            }

            return ((ProxyTest)hashFactory[sServiceWsdl]).getProxy();
        }

        public static bool isProxyExists(String sServiceWsdl, String sContract)
        {
            lock (syncRoot)
            {
                return hashFactory[sServiceWsdl] == null ? false : true;
            }
        }
    }
}

There is the code of ProxyTest :

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using WcfSamples.DynamicProxy;

namespace WS_Generic
{
    public class ProxyTest
    {
        private DateTime instanceCreation;
        private String sServiceWsdl;
        private String sContract;
        private DynamicProxyFactory factory;
        private volatile DynamicProxy proxy;

        public ProxyTest(String sServiceWsdl, String sContract)
        {
            instanceCreation = DateTime.Now;
            this.sServiceWsdl = sServiceWsdl;
            this.sContract = sContract;
            this.factory = new DynamicProxyFactory(this.sServiceWsdl);
            this.proxy = factory.CreateProxy(this.sContract);
        }

        public DynamicProxy getProxy()
        {
            return proxy;
        }

        public TimeSpan getTimeFromCreation()
        {
            return DateTime.Now.Subtract(instanceCreation);
        }
    }
}

The problem is the webservice seems to reset the static status of FactoryTest after each call. So each time I called the webservice, my hashtable is empty and the factory create a new instance.

If anybody had already the problem of share datas between differents threads in WCF webservice (and found the solution), thanks in advance to give me some tips :)

PS : Sorry for my english, that's not my native language

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼波传意 2024-12-24 09:53:42

如果将数据存储在静态变量 WCF 本身中不会影响它们的清除。问题一定出在其他地方(应用程序重新启动、应用程序域重新创建等)。

顺便提一句。该解决方案的用途非常有限,因为不应使用长期存在的共享代理,并且在许多情况下它可能会导致意外行为。它可能仅适用于使用 basicHttpBinding 的服务。

If you store data in static variable WCF itself will not affect their purging. The problem must be somewhere else (application restart, app domain recreation, etc.).

Btw. this solution has only very limited usage because long living shared proxies should not be used and in many cases it can result in unexpected behavior. It can perhaps work only for services using basicHttpBinding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文