我有一个包含许多用户控件的仪表板项目。本周我创建了一个不仅仅是用户控件的应用程序,并将其集成到我的仪表板应用程序中似乎很痛苦。所以我搜索了解决方案,发现了MEF和PRISM。 MEF似乎比PRISM容易一些,我开始用this教程做一个Hello World MEF应用程序。它进展顺利,我成功注入了Hello World xap。
之后我尝试注入我的实际应用程序并遇到一些问题。我想指出我解决的问题,因为我可能以错误的方式解决它们,或者它们可能是我当前问题的原因。
注意:我的应用程序使用支持Silverlight的WCF Web服务来检索数据。
第一个问题
在xap包中找不到ServiceReferences.ClientConfig。 我将此文件添加为我的MEF项目客户端的链接。问题解决了。
第二个问题
我在客户端使用的Settings.xml包含端点,如:
<?xml version="1.0" encoding="utf-8" ?>
<Services>
<Service Name="MyService">
<HostPath Name="/ClientBin/MyComponent.xap">
<Endpoint Url="/MyService.svc"></Endpoint>
</HostPath>
<HostPath Name="MyComponent.Web/ClientBin/MyComponent.xap">
<Endpoint Url="MyComponent.Web/MyService.svc"></Endpoint>
</HostPath>
</Service>
</Services>
并阅读此内容以获取具有以下两个函数的WCF Web服务客户端:
public MyServiceClient GetMyServiceClient()
{
if (serviceClient == null)
{
serviceClient = new MyServiceClient();
Uri uriEndpointAddress = serviceClient.Endpoint.Address.Uri;
UriBuilder ub = new UriBuilder(uriEndpointAddress)
{
Host = Application.Current.Host.Source.Host,
Path =
GetURLForService("MyService",
Application.Current.Host.Source.AbsolutePath)
};
serviceClient.Endpoint.Address = new System.ServiceModel.EndpointAddress(ub.Uri);
}
return serviceClient;
}
private string GetURLForService(string ServiceName, string HostURL)
{
string retval = "";
XDocument doc = XDocument.Load("Settings.xml");
if (doc.Root != null)
{
XElement elmService = doc.Root.Elements("Service").FirstOrDefault(c =>
{
XAttribute xAttribute = c.Attribute("Name");
return xAttribute != null && xAttribute.Value.ToLower() == ServiceName.ToLower();
});
if (elmService != null)
{
XElement elmHostPath = elmService.Elements("HostPath").FirstOrDefault(c =>
{
XAttribute xAttribute = c.Attribute("Name");
return xAttribute != null && xAttribute.Value.ToLower() == HostURL.ToLower();
});
if (elmHostPath != null)
{
retval = elmHostPath.Element("Endpoint").Attribute("Url").Value;
}
}
}
return retval;
}
我已将Settings.xml文件添加为链接并解决了问题。
主要问题
解决了这两个问题后,我遇到了主要问题。 远程服务器返回错误:NotFound。
我甚至在我的Settings.xml中试过这个:
<HostPath Name="/MEFHubApp/ClientBin/MyComponent.xap">
<Endpoint Url="/MyComponent.Web/MyService.svc"></Endpoint>
</HostPath>
无论我尝试什么,我的MEF应用都无法找到/使用我的网络服务。
由于
答案 0 :(得分:0)
我找到了解决问题的方法。所以在这里,如果有人遇到同样的事情:
而不是来自settings.xml的GetMyServiceClient()
。我像这样初始化了我的服务客户端:
MyServiceClient client = new MyServiceClient("MyService_CustomBinding");
参数是我在ServiceReferences.ClientConfig中的绑定,瞧它就像一个魅力!