getServiceEndpoint操作
この操作は、特定の公開外部サービスのエンド・ポイントとメタデータを返します。
操作のシグネチャ
getServiceEndpoint
操作の要求ペイロードは次のとおりです。
<element name="getServiceEndPoint">
<complexType>
<sequence>
<element name="qname" type="string"/>
</sequence>
</complexType>
</element>
getServiceEndpoint
操作の応答ペイロードは次のとおりです。
<element name="getServiceEndPointResponse">
<complexType>
<sequence>
<element name="result" type="ns1:CatalogService"/>
</sequence>
</complexType>
</element>
例
この要求ペイロードは商談サービスのQName
を提供し、エンド・ポイントとメタデータを要求します。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getServiceEndPoint
xmlns:ns1="http://xmlns.oracle.com/oracle/apps/fnd/applcore/
webservices/types/">
<ns1:qname>{http://xmlns.oracle.com/apps/sales/opptyMgmt/
opportunities/opportunityService/}OpportunityService</ns1:qname>
</ns1:getServiceEndPoint>
</soap:Body>
</soap:Envelope>
応答には、サービス・カタログ・サービスを実行するクラウド・インスタンスにプロビジョニングされた商談サービスのエンド・ポイントとメタデータが含まれます。
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns0:getServiceEndPointResponse
xmlns:ns0="http://xmlns.oracle.com/oracle/apps/fnd/applcore/
webservices/types/">
<ns1:result
xmlns:ns1="http://xmlns.oracle.com/oracle/apps/fnd/applcore/
webservices/types/"
xmlns:ns0="http://xmlns.oracle.com/oracle/apps/fnd/applcore/webservices/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:type="ns0:CatalogService">
<ns0:qName>{http://xmlns.oracle.com/apps/sales/opptyMgmt/opportunities/
opportunityService/}OpportunityService</ns0:qName>
<ns0:lbo>CRM-CRM : MOO-Opportunity Management : MOO_OPPORTUNITY-Opportunity
</ns0:lbo>
<ns0:lifecycle>Active</ns0:lifecycle>
<ns0:xsdLocation>https://crm-your-cloud-hostname:port/opptyMgmtOpportunities/
OpportunityService?XSD=/oracle/apps/sales/opptyMgmt/opportunities/
opportunityService/OpportunityService.xsd</ns0:xsdLocation>
<ns0:wsdlAddress>https://crm-your-cloud-hostname:port/
opptyMgmtOpportunities/OpportunityService?WSDL</ns0:wsdlAddress>
</ns1:result>
</ns0:getServiceEndPointResponse>
</env:Body>
</env:Envelope>