From 67f39e73b110664b5ac362106ecd3cdda2ca291a Mon Sep 17 00:00:00 2001 From: markpollack Date: Thu, 6 Nov 2008 23:43:38 +0000 Subject: [PATCH] update to new signature of ServiceProxyTypeBuilder --- src/Spring/Spring.Services/ServiceModel/ServiceExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Services/ServiceModel/ServiceExporter.cs b/src/Spring/Spring.Services/ServiceModel/ServiceExporter.cs index c8221a11..90f05315 100644 --- a/src/Spring/Spring.Services/ServiceModel/ServiceExporter.cs +++ b/src/Spring/Spring.Services/ServiceModel/ServiceExporter.cs @@ -192,7 +192,7 @@ namespace Spring.ServiceModel { string contextName = (applicationContext.Name == AbstractApplicationContext.DefaultRootContextName) ? null : applicationContext.Name; Type targetType = objectFactory.GetType(targetName); - IProxyTypeBuilder builder = new ServiceProxyTypeBuilder(contextName, targetName, targetType); + IProxyTypeBuilder builder = new ServiceProxyTypeBuilder(targetName, applicationContext, targetType); if (Contracts != null && Contracts.Length > 0) { builder.Interfaces = TypeResolutionUtils.ResolveInterfaceArray(Contracts);