Issue with consuming java web service in .net core
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
add a comment |
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
add a comment |
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
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
c# .net web-services .net-core wsdl
asked Nov 21 '18 at 3:38
Luciano TrezLuciano Trez
376
376
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This happened because WSDL definition contains "wrapped" content.
You need (with "old" svcutil from .NETFramework):
- Download wsdl:
svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl
- Generate classes:
svcutil *.wsdl *.xsd /language:C# /wrapped
or with dotnet-svcutil
:
- Run
dotnet svcutil http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl -wr
Simple like that.. thanks
– Luciano Trez
Nov 21 '18 at 21:48
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
This happened because WSDL definition contains "wrapped" content.
You need (with "old" svcutil from .NETFramework):
- Download wsdl:
svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl
- Generate classes:
svcutil *.wsdl *.xsd /language:C# /wrapped
or with dotnet-svcutil
:
- Run
dotnet svcutil http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl -wr
Simple like that.. thanks
– Luciano Trez
Nov 21 '18 at 21:48
add a comment |
This happened because WSDL definition contains "wrapped" content.
You need (with "old" svcutil from .NETFramework):
- Download wsdl:
svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl
- Generate classes:
svcutil *.wsdl *.xsd /language:C# /wrapped
or with dotnet-svcutil
:
- Run
dotnet svcutil http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl -wr
Simple like that.. thanks
– Luciano Trez
Nov 21 '18 at 21:48
add a comment |
This happened because WSDL definition contains "wrapped" content.
You need (with "old" svcutil from .NETFramework):
- Download wsdl:
svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl
- Generate classes:
svcutil *.wsdl *.xsd /language:C# /wrapped
or with dotnet-svcutil
:
- Run
dotnet svcutil http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl -wr
This happened because WSDL definition contains "wrapped" content.
You need (with "old" svcutil from .NETFramework):
- Download wsdl:
svcutil /t:metadata http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl
- Generate classes:
svcutil *.wsdl *.xsd /language:C# /wrapped
or with dotnet-svcutil
:
- Run
dotnet svcutil http://barramento.caixa.gov.br/sibar/ManutencaoCobrancaBancaria/Boleto/Externo?wsdl -wr
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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