- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 C#/WCF (.NET 3.5 SP1) 并尝试访问通过 Apache/PHP 托管的 SOAP 服务。首先生成 WSDL,然后构建服务以符合 WSDL。我正在尝试使用 svcutil 生成 WCF 代理类来访问此服务。
我在 svcutil 中发现了一个明显的代码生成错误。这似乎是因为有两个单独的 SOAP 操作共享一个公共(public)输入消息(使用不同的 SOAP 操作)并输出两种不同的数组类型。 svcutil 生成代码时,两个操作都是使用相同的请求类和不同的响应类生成的,OperationContractAttribute 用于设置操作的 Action。不幸的是,在请求类上设置了 MessageContractAttribute,它似乎覆盖了它,导致两个服务调用包含相同的 SOAP 操作。
我能够通过手动修改生成的代码以使用不同的 MessageContractAttribute 为第二个操作创建一个单独的类并更新所有其他引用以使用此类来纠正此问题。但是我对这个解决方案真的不满意,我正在寻找一种方法来调整 WSDL 以便 svcutil 可以更好地解释它,或者将命令行参数更改为 svcutil 以便它可以生成正确的代码。
另请注意,DataContractSerializer 无法导入此 WSDL,它必须使用 XmlSerializer。因此,如果有人可以建议一种方法来修改 WSDL 以便 DataContractSerializer 可以运行,我会很乐意尝试 - 我可以完全控制 WSDL。
我能够创建一个非常简单的 WSDL 来说明这一点:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.example.org/ArrayTest/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
name="ArrayTest"
targetNamespace="http://www.example.org/ArrayTest/">
<wsdl:types>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/ArrayTest/"
>
<xsd:complexType name="baseType1">
<xsd:sequence>
<xsd:element name="string1" type="xsd:string" />
<xsd:element name="string2" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="listType1">
<xsd:sequence>
<xsd:element name="baseType" type="tns:baseType1" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="baseType2">
<xsd:sequence>
<xsd:element name="string1" type="xsd:string" />
<xsd:element name="string2" type="xsd:string" />
<xsd:element name="bool1" type="xsd:boolean" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="listType2">
<xsd:sequence>
<xsd:element name="baseType" type="tns:baseType2" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<wsdl:message name="NewOperationRequest">
<wsdl:part name="NewOperationRequest" type="xsd:string"/>
</wsdl:message>
<wsdl:message name="Array1OperationResponse">
<wsdl:part name="list1" type="tns:listType1"/>
</wsdl:message>
<wsdl:message name="Array2OperationResponse">
<wsdl:part name="list2" type="tns:listType2" />
</wsdl:message>
<wsdl:portType name="ArrayTest">
<wsdl:operation name="Array1Operation">
<wsdl:input message="tns:NewOperationRequest"/>
<wsdl:output message="tns:Array1OperationResponse"/>
</wsdl:operation>
<wsdl:operation name="Array2Operation">
<wsdl:input message="tns:NewOperationRequest"/>
<wsdl:output message="tns:Array2OperationResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="ArrayTestSOAP" type="tns:ArrayTest">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="Array1Operation">
<soap:operation
soapAction="http://www.example.org/ArrayTest/Array1Operation" />
<wsdl:input>
<soap:body use="literal"
namespace="http://www.example.org/ArrayTest/" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal"
namespace="http://www.example.org/ArrayTest/" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="Array2Operation">
<soap:operation
soapAction="http://www.example.org/ArrayTest/Array2Operation" />
<wsdl:input>
<soap:body use="literal"
namespace="http://www.example.org/ArrayTest/" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal"
namespace="http://www.example.org/ArrayTest/" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="ArrayTest">
<wsdl:port binding="tns:ArrayTestSOAP" name="ArrayTestSOAP">
<soap:address location="http://www.example.org/"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
svcutil /noconfig /o:arrayTest.cs ArrayTest.wsdl
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4959
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(Namespace="http://www.example.org/ArrayTest/", ConfigurationName="ArrayTest")]
public interface ArrayTest
{
// CODEGEN: Parameter 'list1' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlArrayAttribute'.
[System.ServiceModel.OperationContractAttribute(Action="http://www.example.org/ArrayTest/Array1Operation", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute()]
[return: System.ServiceModel.MessageParameterAttribute(Name="list1")]
Array1OperationResponse Array1Operation(Array1OperationRequest request);
// CODEGEN: Parameter 'list2' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlArrayAttribute'.
[System.ServiceModel.OperationContractAttribute(Action="http://www.example.org/ArrayTest/Array2Operation", ReplyAction="*")]
[System.ServiceModel.XmlSerializerFormatAttribute()]
[return: System.ServiceModel.MessageParameterAttribute(Name="list2")]
Array2OperationResponse Array2Operation(Array1OperationRequest request);
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("svcutil", "3.0.4506.2152")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.example.org/ArrayTest/")]
public partial class baseType1
{
private string string1Field;
private string string2Field;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
public string string1
{
get
{
return this.string1Field;
}
set
{
this.string1Field = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
public string string2
{
get
{
return this.string2Field;
}
set
{
this.string2Field = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("svcutil", "3.0.4506.2152")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.example.org/ArrayTest/")]
public partial class baseType2
{
private string string1Field;
private string string2Field;
private bool bool1Field;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
public string string1
{
get
{
return this.string1Field;
}
set
{
this.string1Field = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
public string string2
{
get
{
return this.string2Field;
}
set
{
this.string2Field = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=2)]
public bool bool1
{
get
{
return this.bool1Field;
}
set
{
this.bool1Field = value;
}
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.MessageContractAttribute(WrapperName="Array1Operation", WrapperNamespace="http://www.example.org/ArrayTest/", IsWrapped=true)]
public partial class Array1OperationRequest
{
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="", Order=0)]
public string NewOperationRequest;
public Array1OperationRequest()
{
}
public Array1OperationRequest(string NewOperationRequest)
{
this.NewOperationRequest = NewOperationRequest;
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.MessageContractAttribute(WrapperName="Array1OperationResponse", WrapperNamespace="http://www.example.org/ArrayTest/", IsWrapped=true)]
public partial class Array1OperationResponse
{
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="", Order=0)]
[System.Xml.Serialization.XmlArrayAttribute()]
[System.Xml.Serialization.XmlArrayItemAttribute("baseType", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
public baseType1[] list1;
public Array1OperationResponse()
{
}
public Array1OperationResponse(baseType1[] list1)
{
this.list1 = list1;
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.MessageContractAttribute(WrapperName="Array2OperationResponse", WrapperNamespace="http://www.example.org/ArrayTest/", IsWrapped=true)]
public partial class Array2OperationResponse
{
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="", Order=0)]
[System.Xml.Serialization.XmlArrayAttribute()]
[System.Xml.Serialization.XmlArrayItemAttribute("baseType", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
public baseType2[] list2;
public Array2OperationResponse()
{
}
public Array2OperationResponse(baseType2[] list2)
{
this.list2 = list2;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
public interface ArrayTestChannel : ArrayTest, System.ServiceModel.IClientChannel
{
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
public partial class ArrayTestClient : System.ServiceModel.ClientBase<ArrayTest>, ArrayTest
{
public ArrayTestClient()
{
}
public ArrayTestClient(string endpointConfigurationName) :
base(endpointConfigurationName)
{
}
public ArrayTestClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress)
{
}
public ArrayTestClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress)
{
}
public ArrayTestClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress)
{
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
Array1OperationResponse ArrayTest.Array1Operation(Array1OperationRequest request)
{
return base.Channel.Array1Operation(request);
}
public baseType1[] Array1Operation(string NewOperationRequest)
{
Array1OperationRequest inValue = new Array1OperationRequest();
inValue.NewOperationRequest = NewOperationRequest;
Array1OperationResponse retVal = ((ArrayTest)(this)).Array1Operation(inValue);
return retVal.list1;
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
Array2OperationResponse ArrayTest.Array2Operation(Array1OperationRequest request)
{
return base.Channel.Array2Operation(request);
}
public baseType2[] Array2Operation(string NewOperationRequest)
{
Array1OperationRequest inValue = new Array1OperationRequest();
inValue.NewOperationRequest = NewOperationRequest;
Array2OperationResponse retVal = ((ArrayTest)(this)).Array2Operation(inValue);
return retVal.list2;
}
}
最佳答案
到目前为止,我想出的唯一答案是创建一个具有相同部分的附加消息类型,即:
<wsdl:message name="Array2OperationRequest">
<wsdl:part name="NewOperationRequest" type="xsd:string"/>
</wsdl:message>
关于wcf - svcutil WCF 代理类根据请求提交不正确的 SOAP 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6821169/
WCF 服务、WCF RIA 服务和 WCF 数据服务之间有什么区别? 最佳答案 WCF 是一般服务的通信基础设施。 WCF RIA 服务自动生成客户端和服务器代理对象以方便应用程序开发,并依赖 WC
我想在我的 WPF 项目中使用 WCF 服务 (.svc)。, 我正在尝试创建一个服务。但在 Visual Studio 中,我们有“WCF 服务库”和“WCF 服务应用程序”。我两个都试了。 当我们
我正在开发 WCF Web 服务,并使用 WCF 服务应用程序模板来执行此操作。 创建“WCF 服务应用程序”是否满足此要求?与 WCF 服务应用程序相比,创建 WCF 服务库有哪些优势? 最佳答案
我是 WCF 的新手,对 Web 服务进行编码的经验有限。 在工作中,所有面向网络服务的事物都被要求使用 WCF。我需要做的工作涉及查询一个非 WCF Web 服务,该服务显然是用 Java 构建的,
我有一个数据契约(Contract)说用户。它是可序列化的并且可以通过网络传输。我想要一个操作契约(Contract) SaveUser()。我可以将 SaveUser(User user) 作为运营
我一直在开发一个使用 WCF 访问服务器端逻辑和数据库的 WPF 应用程序。 我从一个 WCF 客户端代理对象开始,我反复使用它来调用服务器上的方法。使用代理一段时间后,服务器最终会抛出异常: Sys
不要添加关于不同 WCF 堆栈的另一篇 SO 帖子,但我想在浪费更多开发时间之前确保我朝着正确的方向前进...... 我的场景 - 我们公司有许多 Web 应用程序,它们都访问同一系列的数据库。所有应
我是WCF技术的新手,我想知道RESTful WCF服务和普通WCF服务有什么区别。 RESTful 服务相对于普通 WCF 服务有哪些优势? 谢谢。 最佳答案 REST服务基于HTTP协议(prot
我正在构建的应用程序公开了多个 WCF 服务(A、B)。在内部,它消耗了在我们的内部网络(X、Y)上运行的其他几个 WCF 服务。 使用 WCF 消息日志记录,我希望仅记录我们的服务 A、B 与调用它
我们需要从另一个 WCF 服务调用 WCF 服务。为了测试这一点,我构建了一个示例控制台应用程序来显示一个简单的字符串。设置是: 控制台应用程序 -> WCF 服务 1 -> WCF 服务 2 Con
假设永远不会直接查询数据的情况。 AKA,总会有一些必须发生的过滤逻辑和/或业务逻辑。 什么时候是在 ajax/js 之外使用数据服务的好理由? 请不要访问此页面 http://msdn.micros
我在尝试将所有常规 WCF 调用转换为异步 WCF 调用时遇到问题。我发现我重构了很多代码,但不确定具体该怎么做。我使用了我找到的方法 here但遇到了我需要事情按顺序发生的问题。 private v
我在 IIS 上有一个 WCF 服务,一些 .net Web 应用程序正在使用它。我的任务是编写一个新的 WCF 服务,要求现有的 Web 应用程序可以使用新服务而无需更改它们的 web.config
我正在尝试用外部提供 WSDL 的 WCF 等效服务替换 WSE 服务。 首先,我使用 svcutil 和 wsdl 生成所有服务和客户端类(ATP,我只关心服务实现。)我生成了一个空的 WCF 服务
场景是这样的:有2个WCF Web Services,一个是客户端(WCFClient),一个是服务端(WCFServer),部署在不同的机器上。我需要他们两个之间的证书通信。 在服务器 WCF 上,
我在 Visual Studio 2013 中创建一个 WCF 服务并将其发布到 IIS。我可以在另一个项目中添加服务引用并使用该服务的方法。当我转到 IIS 服务器管理器时,我看到 WCF 激活及其
我是 .net 的新手,对 WCF 知之甚少,如果有任何愚蠢的问题,请耐心等待。我想知道如果我的代码没有显式生成任何线程,WCF 如何处理 SELF-HOST 场景中的同时调用。因此,在阅读了很多关于
我正在为应用程序开发一个面向服务的体系结构,我希望这些服务既可以通过 WCF 公开,也可以通过一个简单的库使用。理想情况下,我想减少重复代码。 从概念上讲,这映射到: Client => WCF Se
我有一个小型测试网络服务来模拟我在现实世界应用程序中注意到的一些奇怪的东西。由于演示显示与应用程序相同的行为,为了简洁起见,我将使用演示。 简而言之,我的服务接口(interface)文件如下所示(您
我首先为我的 WCF 服务启动了我的订阅者,然后继续发布我的发布者的帖子。我的订阅者能够收到帖子。 其次,我关闭了我的第一个订阅者并再次打开它以订阅相同的服务,即所谓的已订阅该服务的第二个订阅者。再一
我是一名优秀的程序员,十分优秀!