我有一个WCF服务,它有2个端点(1个webHttpBinding和1个basicHttpBinding),它们托管在IIS中。客户端可以毫无问题地发出http请求。我能够通过WCFTestClient连接并调用SOAP端点,并能够成功地将服务引用添加到我的客户端项目中。问题是没有在Reference.cs文件中生成代码或客户端上的app.config文件 ......它们都是空的。
我的问题是,为什么我能够通过WCFTestClient连接并调用SOAP端点而不会出现问题,而不是通过添加服务引用方法?
编辑:我在程序集中添加服务引用似乎是一个问题。我正在引用另一个类库(服务上存在相同的库),并在构建解决方案时收到此警告:Warning 12 Custom tool warning: Cannot import wsdl:portType
Detail: An exception was thrown while running a WSDL import extension: System.ServiceModel.Description.DataContractSerializerMessageContractImporter
Error: Referenced type 'MyNamespace.KPI.ChartObject`2, MyNamespace.KPI.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=3e720b7e8a51f8d5' with data contract name 'ChartObjectOfdecimalZKPIPeriodaU4eboDJ' in namespace 'http://schemas.datacontract.org/2004/07/MyNamespace.KPI' cannot be used since it does not match imported DataContract. Need to exclude this type from referenced types.
应该注意的是,这个特定的类是一个通用类......我不知道这是否与错误有关。
答案 0 :(得分:1)
你需要关注你的ABC:
通过HTTP公开的地址只需要一个部署URL。互联网信息系统正在为您处理所有这些问题。然而;如果您在没有正确定义的情况下尝试使用Service Reference
,则不会显示。因为它没有没有详细信息。
一旦你定义了这个标准,就应该按照正常情况出现。
<强>更新强>
您可以通过相同的服务合同达到SOAP和REST的最终结果,也可以将它们分开。在这个例子中;我会将它们分开。
创建服务:
[ServiceContract]
public interface IMath
{
[OperationContract]
int Add(int Number1, int Number2);
}
创建休息服务合同:
[ServiceContract]
public interface IMathRest
{
[OperationContract]
[WebGet(UriTemplate = "/Add/{Number1}/{Number2}", RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json)]
int AddRest(string Number1, string Number2);
}
在上述服务中;它是明确设置消息格式。
实施服务:“绑定”
public class Math : IMath, IMathRest
{
public int Add(int Number1, int Number2)
{
return Number1 + Number2;
}
public int AddRest(string Number1, string Number2)
{
int num1 = Convert.ToInt32(Number1);
int num2 = Convert.ToInt32(Number2);
return num1 + num2;
}
}
配置服务:
<serviceBehaviors>
<behavior name = "servicebehavior">
<serviceMetadata httpGetEnabled = "true" />
<serviceDebug includeExceptionDetailInFaults = "false" />
</behavior>
</serviceBehaviors>
以上将服务设置为Basic / Web Http。
配置好serviceBehavior
后,您需要定义端点:
<endpointBehaviors>
<behavior name="restBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
这会将您的Rest端点配置为上面指定的webHttpBinding
。现在你需要定义你的肥皂。
<endpoint name = "SoapEndPoint"
contract = "Namespace in which Service Resides goes here"
binding = "basicHttpBinding" <!-- Mirrors are above configuration -->
address = "soap" />
以上内容将进入您的配置;但是在使用服务时 - 需要端点名称。端点将在基地址/肥皂地址中提供。使用的绑定已指定。
除了我们只配置了肥皂,而不是我们的休息。所以我们需要指定我们的端点:
<endpoint name = "RestEndPoint"
contract = "Namespace that our Rest Interface is located goes here"
binding = "webHttpBinding"
address = "rest"
behaviorCOnfiguration = "restBehavior" />
我们的Rest端点将在我们的Url(基地址/休息/添加/参数/参数)中调用。我们已经明确了我们的约束力;并设置我们的休息行为。
当你把整个东西放在一起时;它看起来像是:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name ="servicebehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="restbehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<services>
<service name ="MultipleBindingWCF.Service1"
behaviorConfiguration ="servicebehavior" >
<endpoint name ="SOAPEndPoint"
contract ="MultipleBindingWCF.IService1"
binding ="basicHttpBinding"
address ="soap" />
<endpoint name ="RESTEndPoint"
contract ="MultipleBindingWCF.IService2"
binding ="webHttpBinding"
address ="rest"
behaviorConfiguration ="restbehavior"/>
<endpoint contract="IMetadataExchange"
binding="mexHttpBinding"
address="mex" />
</service>
</services>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
<强>消费:强>
消耗我们的肥皂很简单;直截了当。制作服务参考并拨打电话。
static void CallingSoapFunction()
{
SoapClient proxy = new SoapClient("SoapEndPoint");
var result = proxy.Add(7,2); // Proxy opens the channel, we invoke our method, we input our parameters.
Console.WriteLine(result);
}
除了我们的宁静消费略有不同;特别是因为我们必须将它格式化为Json。所以我们需要准确指定名称。
Rest将依赖于Json对数据进行反序列化。
static void CallRestFunc()
{
WebClient RestProxy = new WebClient();
byte[] data = RestProxy.DownloadData(new Uri("http://localhost:30576/MathRest.svc/Rest/Add/7/2")); // As you see it is following the exact location of the project, invoking method / parameter and so on down the line.
Stream stream = new MemoryStream(data);
DataContractJsonSerializer obj = new DataContractJsonSerializer(typeof(string));
string result = obj.ReadObject(stream).ToString();
Console.WriteLine(result);
}
以上将使用Rest Uri下载数据。反序列化该数据;并显示出来。
希望这有助于澄清。
如果未在配置文件中创建正确的项目;然后它将不允许适当的消费。 ABC在WCF中至关重要。如果未在配置文件中创建它,则需要在代码中以编程方式创建它们。
<强>更新强>
static void Main(string[] args)
{
var binding = new BasicHttpBinding();
var endpoint = new EndpointAddress("http://localhost:8080/");
using (var factory = new ChannelFactory<IPerson>(binding, endpoint))
{
var request = new Dictionary<Guid, Person>();
request[Guid.NewGuid()] = new Person { Name = "Bob", Email = "Bob@abc.com" };
var client = factory.CreateChannel();
var result = client.SetCustomer(request);
Console.WriteLine("Name: {0} | Email: {1}", result.Name, result.Email);
factory.Close();
}
Console.ReadKey(true);
}
正如你在这个基本例子中看到的那样;绑定和端点都已配置。您需要确保在服务器和客户端中都定义了所有这些。它必须知道它的发展方向。那更有意义吗?
答案 1 :(得分:0)
查看此url。希望这能帮助你。