C# SOAP Using Vertex Tax Collection Service How to display response of EffectiveRate
up vote
0
down vote
favorite
Using C# in a console app I need to collective the response for EffectiveRate from the SOAP response for Vertex WS60Client. It returns it within an array and I just can't seem to set it to a variable.
VertexEnvelope ve = new VertexEnvelope();
calculateTaxResponse cTR = new calculateTaxResponse(ve);
decimal strTAX_RATE = new decimal[1];
strTAX_RATE[0] = ((TaxCodeCollector.CalculateTaxService.TaxesType)ve.Item).EffectiveRate;
Which just doesn't work
c# soap console-application
New contributor
add a comment |
up vote
0
down vote
favorite
Using C# in a console app I need to collective the response for EffectiveRate from the SOAP response for Vertex WS60Client. It returns it within an array and I just can't seem to set it to a variable.
VertexEnvelope ve = new VertexEnvelope();
calculateTaxResponse cTR = new calculateTaxResponse(ve);
decimal strTAX_RATE = new decimal[1];
strTAX_RATE[0] = ((TaxCodeCollector.CalculateTaxService.TaxesType)ve.Item).EffectiveRate;
Which just doesn't work
c# soap console-application
New contributor
What's the error message? IsEffectiveRate
of typedecimal
?
– Kristoffer Jälén
2 days ago
Unrelated note about the visual-studio. If you read the description, it says DO NOT use this tag on questions regarding code which merely happened to be written in Visual Studio., so it should not be used in this question.
– Richardissimo
2 days ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Using C# in a console app I need to collective the response for EffectiveRate from the SOAP response for Vertex WS60Client. It returns it within an array and I just can't seem to set it to a variable.
VertexEnvelope ve = new VertexEnvelope();
calculateTaxResponse cTR = new calculateTaxResponse(ve);
decimal strTAX_RATE = new decimal[1];
strTAX_RATE[0] = ((TaxCodeCollector.CalculateTaxService.TaxesType)ve.Item).EffectiveRate;
Which just doesn't work
c# soap console-application
New contributor
Using C# in a console app I need to collective the response for EffectiveRate from the SOAP response for Vertex WS60Client. It returns it within an array and I just can't seem to set it to a variable.
VertexEnvelope ve = new VertexEnvelope();
calculateTaxResponse cTR = new calculateTaxResponse(ve);
decimal strTAX_RATE = new decimal[1];
strTAX_RATE[0] = ((TaxCodeCollector.CalculateTaxService.TaxesType)ve.Item).EffectiveRate;
Which just doesn't work
c# soap console-application
c# soap console-application
New contributor
New contributor
edited yesterday
Lennart
5,935124965
5,935124965
New contributor
asked 2 days ago
incubus0
1
1
New contributor
New contributor
What's the error message? IsEffectiveRate
of typedecimal
?
– Kristoffer Jälén
2 days ago
Unrelated note about the visual-studio. If you read the description, it says DO NOT use this tag on questions regarding code which merely happened to be written in Visual Studio., so it should not be used in this question.
– Richardissimo
2 days ago
add a comment |
What's the error message? IsEffectiveRate
of typedecimal
?
– Kristoffer Jälén
2 days ago
Unrelated note about the visual-studio. If you read the description, it says DO NOT use this tag on questions regarding code which merely happened to be written in Visual Studio., so it should not be used in this question.
– Richardissimo
2 days ago
What's the error message? Is
EffectiveRate
of type decimal
?– Kristoffer Jälén
2 days ago
What's the error message? Is
EffectiveRate
of type decimal
?– Kristoffer Jälén
2 days ago
Unrelated note about the visual-studio. If you read the description, it says DO NOT use this tag on questions regarding code which merely happened to be written in Visual Studio., so it should not be used in this question.
– Richardissimo
2 days ago
Unrelated note about the visual-studio. If you read the description, it says DO NOT use this tag on questions regarding code which merely happened to be written in Visual Studio., so it should not be used in this question.
– Richardissimo
2 days ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
incubus0 is a new contributor. Be nice, and check out our Code of Conduct.
incubus0 is a new contributor. Be nice, and check out our Code of Conduct.
incubus0 is a new contributor. Be nice, and check out our Code of Conduct.
incubus0 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f53418064%2fc-sharp-soap-using-vertex-tax-collection-service-how-to-display-response-of-effe%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
What's the error message? Is
EffectiveRate
of typedecimal
?– Kristoffer Jälén
2 days ago
Unrelated note about the visual-studio. If you read the description, it says DO NOT use this tag on questions regarding code which merely happened to be written in Visual Studio., so it should not be used in this question.
– Richardissimo
2 days ago