在.NET Core中使用Java Web服务的问题

时间:2018-11-21 03:38:17

标签: c# .net web-services .net-core wsdl

我正在尝试从Java(JAX-WS)制成的Web服务中导入WSDL定义,以便在我的net core 2.1应用程序中使用它。按照执行此操作的步骤,我使用了Connected Services和Microsoft WCF Web服务参考提供程序。放置服务uri,列出可用的服务,更改默认名称空间,并完成其他步骤,而不会出现任何错误。最后,该工具为Web服务创建了代理引用,但是没有模型。

下面是请求类和生成的接口的代码段。

    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
    [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
    [System.ServiceModel.MessageContractAttribute(WrapperName="SERVICO_ENTRADA", WrapperNamespace="http://caixa.gov.br/sibar/manutencao_cobranca_bancaria/boleto/externo", IsWrapped=true)]
    public partial class INCLUI_BOLETORequest
    {

        public INCLUI_BOLETORequest()
        {
        }
    }


    [System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
    [System.ServiceModel.ServiceContractAttribute(Namespace="http://caixa.gov.br/sibar/manutencao_cobranca_bancaria/boleto/externo", ConfigurationName="GerencialISP.ServicosExternos.CobCaixa.manutencao_cobranca_bancaria")]
    public interface manutencao_cobranca_bancaria
    {

        [System.ServiceModel.OperationContractAttribute(Action="IncluiBoleto", ReplyAction="*")]
        System.Threading.Tasks.Task<GerencialISP.ServicosExternos.CobCaixa.INCLUI_BOLETOResponse> INCLUI_BOLETOAsync(GerencialISP.ServicosExternos.CobCaixa.INCLUI_BOLETORequest request);

    ...

    }

这是WSDL链接:http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl

如您所见,导入模式中的所有模型在生成的代码中均不可用。尝试过svcutil工具也没有成功。

做错了什么?是否存在一种生成有效代理的方法,或者我需要通过Web请求手动进行此操作?

1 个答案:

答案 0 :(得分:1)

发生这种情况是因为WSDL定义包含“包装”内容。

您需要(使用.NETFramework中的“旧” svcutil):

  1. 下载wsdl:svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl
  2. 生成类:svcutil *.wsdl *.xsd /language:C# /wrapped

或使用dotnet-svcutil

  1. 运行dotnet svcutil http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl -wr