A
A
Anton Martsen2013-12-04 11:24:46
SOAP
Anton Martsen, 2013-12-04 11:24:46

Using WSDL from SSRS

There was a following problem.
There is a web service example.ru/WEB/Service.asmx
It has a svcMethod method and 3 input parameters.
I created a DataSet where I specified the XML data source. According to the manuals on the Internet, I set up an appeal to the service.

<Query>
  <Method Name="svcMethod" Namespace="http://tempuri.org/">
    <Parameters>
      <Parameter Name="Param1" type="string">
        <DefaultValue>a</DefaultValue>
      </Parameter>
      <Parameter Name="Param2" type="string">
        <DefaultValue>b</DefaultValue>
      </Parameter>
      <Parameter Name="Param3" type="string">
        <DefaultValue>c</DefaultValue>
      </Parameter>
    </Parameters>
  </Method>
  <SoapAction>
    http://tempuri.org/svcMethod
  </SoapAction>
</Query>

When processing this request, I receive an XML schema as a response, not data.
The service is working correctly. Created a test application in C#, where the service sends the necessary data.
So far I can't find a solution.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Konstantin Kosyanov, 2015-09-14
@ConstKosyanov

You need to add a description of the ElementPath result in the request
You can read it here https://msdn.microsoft.com/ru-ru/library/ms365158.aspx

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question