Tag: wscf

像在XSD中一样使用精确命名空间生成DataContracts

我们必须将我们的项目与后端Oracle平台集成。 这种集成是通过各种Web服务实现的。 我有所有这些集成的WSDL和XSD。 我需要从这些WSDL和XSD生成DataContracts。 现在的问题是,大多数这些集成共享一些常见的数据类型。 我想重复使用它们。 例如, Integration1: oracle / common / commonDataTypes.xsd oracle / integration1 / someXSD.xsd oracle / ebo / baseTypes.xsd Integration2: oracle / common / commonDataTypes.xsd oracle / integration2 / someXSD.xsd oracle / ebo / baseTypes.xsd Integration3: oracle / commonDataTypes.xsd oracle / integration2 / someXSD.xsd oracle / ebo / baseTypes.xsd 在这种情况下,我想在integration1和2之间重用oracle.common.CommonDataTypes。 到目前为止,我已经尝试了WSCF.blue和WSCF。 […]