У меня есть SOAP-код и URL - когда я ввожу этот URL в браузер, я получаю код ниже.Мое требование - получить данные из этого и отобразить в SSRS.В основе лежат id, name.Если я передаю идентификатор, я должен получить имя.
https://abcmentsconfig.testing.com/abcments/abcments.asmx?op=GetPeopleFind
POST /abcments/abcments.asmx HTTP/1.1
Host: abcmentsconfig.testing.go.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.testing.go.com/GetPeopleFind"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<RequestHeader xmlns="http://worldwide.com">
<SourceSystem sourceSystemType="string" sourceSystemDtTm="string" sourceSystemName="string" callChainInitiatedSourceSystemName="string" callChainInitiatedSourceSystemList="string" />
<MessageGenerator generatorName="string" generatorVersion="string" moduleName="string" createDate="string" lastModifiedDate="string" />
<OrgUnitInfo regionNum="string" branchNum="string" satelliteNum="string" orgUnitNum="string" businessSourceNum="string" divCd="string" />
<RequestInfo requestId="string" callChainId="string" contextId="string" sessionId="string" logThisMessageFlag="boolean" eventId="string" transitionId="string" />
<EnableTrace enable="boolean" />
<LoginName networkUserId="string" networkDomainName="string" networkDomainType="string" firstName="string" lastName="string" />
<EnvironmentCd code="string" />
</RequestHeader>
</soap:Header>
<soap:Body>
<PeopleFindInMsg Ver="string" includeAttributes="string" appName="string" xmlns="http://www.testing.org/testingments">
<Application Application="string">
<User UserName="string" NetworkId="string" xmlns="http://www.testing.go.com/UsersPeopleFind" />
<User UserName="string" NetworkId="string" xmlns="http://www.testing.go.com/UsersPeopleFind" />
</Application>
</PeopleFindInMsg>
</soap:Body>
</soap:Envelope>
Я уже пытался использовать эту ссылку - вызов SOAP с запросом по результату (SSRS, Sharepoint)
Но, я получаю id, div_p, class,p поля в наборе данных, что неверно.Помогите мне, как справиться.