Issue with consuming java web service in .net core












0















I'm trying to import a WSDL definition from a web service made in Java (JAX-WS) for consume it in my net core 2.1 app. Following the steps to do this, I used the Connected Services and Microsoft WCF Web Service Reference Provider. Put the uri of service, listed the services available, changed the default namespace and done the others steps without any errors. At the end the tool created a proxy reference for the web service, but with no models.



Bellow a code snippet of the request class and the interface generated.



    [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);

...

}


Here is the WSDL link: http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl



As you can see, all models in the imported schemas aren't available in the generated code. Tried with svcutil tool too without success.



Doing something wrong? Exists a way to generate a valid proxy or I need to do it manually with web requests?










share|improve this question



























    0















    I'm trying to import a WSDL definition from a web service made in Java (JAX-WS) for consume it in my net core 2.1 app. Following the steps to do this, I used the Connected Services and Microsoft WCF Web Service Reference Provider. Put the uri of service, listed the services available, changed the default namespace and done the others steps without any errors. At the end the tool created a proxy reference for the web service, but with no models.



    Bellow a code snippet of the request class and the interface generated.



        [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);

    ...

    }


    Here is the WSDL link: http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl



    As you can see, all models in the imported schemas aren't available in the generated code. Tried with svcutil tool too without success.



    Doing something wrong? Exists a way to generate a valid proxy or I need to do it manually with web requests?










    share|improve this question

























      0












      0








      0








      I'm trying to import a WSDL definition from a web service made in Java (JAX-WS) for consume it in my net core 2.1 app. Following the steps to do this, I used the Connected Services and Microsoft WCF Web Service Reference Provider. Put the uri of service, listed the services available, changed the default namespace and done the others steps without any errors. At the end the tool created a proxy reference for the web service, but with no models.



      Bellow a code snippet of the request class and the interface generated.



          [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);

      ...

      }


      Here is the WSDL link: http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl



      As you can see, all models in the imported schemas aren't available in the generated code. Tried with svcutil tool too without success.



      Doing something wrong? Exists a way to generate a valid proxy or I need to do it manually with web requests?










      share|improve this question














      I'm trying to import a WSDL definition from a web service made in Java (JAX-WS) for consume it in my net core 2.1 app. Following the steps to do this, I used the Connected Services and Microsoft WCF Web Service Reference Provider. Put the uri of service, listed the services available, changed the default namespace and done the others steps without any errors. At the end the tool created a proxy reference for the web service, but with no models.



      Bellow a code snippet of the request class and the interface generated.



          [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);

      ...

      }


      Here is the WSDL link: http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl



      As you can see, all models in the imported schemas aren't available in the generated code. Tried with svcutil tool too without success.



      Doing something wrong? Exists a way to generate a valid proxy or I need to do it manually with web requests?







      c# .net web-services .net-core wsdl






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 '18 at 3:38









      Luciano TrezLuciano Trez

      376




      376
























          1 Answer
          1






          active

          oldest

          votes


















          1














          This happened because WSDL definition contains "wrapped" content.



          You need (with "old" svcutil from .NETFramework):




          1. Download wsdl: svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl

          2. Generate classes: svcutil *.wsdl *.xsd /language:C# /wrapped


          or with dotnet-svcutil:




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






          share|improve this answer


























          • Simple like that.. thanks

            – Luciano Trez
            Nov 21 '18 at 21:48











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404927%2fissue-with-consuming-java-web-service-in-net-core%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          This happened because WSDL definition contains "wrapped" content.



          You need (with "old" svcutil from .NETFramework):




          1. Download wsdl: svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl

          2. Generate classes: svcutil *.wsdl *.xsd /language:C# /wrapped


          or with dotnet-svcutil:




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






          share|improve this answer


























          • Simple like that.. thanks

            – Luciano Trez
            Nov 21 '18 at 21:48
















          1














          This happened because WSDL definition contains "wrapped" content.



          You need (with "old" svcutil from .NETFramework):




          1. Download wsdl: svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl

          2. Generate classes: svcutil *.wsdl *.xsd /language:C# /wrapped


          or with dotnet-svcutil:




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






          share|improve this answer


























          • Simple like that.. thanks

            – Luciano Trez
            Nov 21 '18 at 21:48














          1












          1








          1







          This happened because WSDL definition contains "wrapped" content.



          You need (with "old" svcutil from .NETFramework):




          1. Download wsdl: svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl

          2. Generate classes: svcutil *.wsdl *.xsd /language:C# /wrapped


          or with dotnet-svcutil:




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






          share|improve this answer















          This happened because WSDL definition contains "wrapped" content.



          You need (with "old" svcutil from .NETFramework):




          1. Download wsdl: svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl

          2. Generate classes: svcutil *.wsdl *.xsd /language:C# /wrapped


          or with dotnet-svcutil:




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







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 21 '18 at 12:17

























          answered Nov 21 '18 at 11:40









          Igor GoydaIgor Goyda

          2663




          2663













          • Simple like that.. thanks

            – Luciano Trez
            Nov 21 '18 at 21:48



















          • Simple like that.. thanks

            – Luciano Trez
            Nov 21 '18 at 21:48

















          Simple like that.. thanks

          – Luciano Trez
          Nov 21 '18 at 21:48





          Simple like that.. thanks

          – Luciano Trez
          Nov 21 '18 at 21:48


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404927%2fissue-with-consuming-java-web-service-in-net-core%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          Npm cannot find a required file even through it is in the searched directory

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith