Soap と php を使用して xml リクエストを送信する必要があります。私が欲しかったxml requetはこのようなものです
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" >
<soapenv:Header/>
<soapenv:Body>
<air:AirFareRulesReq AuthorizedBy="TESTANTON" TargetBranch="P7001111" FareRuleType="long" xmlns:air="http://www.travelport.com/schema/
air_v20_0" xmlns:com="http://www.travelport.com/schema/common_v17_0">
<com:BillingPointOfSaleInfo OriginApplication="UAPI" />
<air:FareRuleKey FareInfoRef="14T" ProviderCode="1G">
</air:FareRuleKey>
</air:AirFareRulesReq>
</soapenv:Body>
</soapenv:Envelope>
私がこれのために書いたphpタラは
属性の配列を作成しました
$fareopta = array();
$fareopta["BillingPointOfSaleInfo"]= array();
$fareopta["BillingPointOfSaleInfo"]["OriginApplication"]= "UAPI";
$fareopta["AirReservationSelector"] = array();
$fareopta["FareRuleLookup"]=array();
$fareopta["FareRuleKey"] = array();
$fareopta["AirPricingSolution"] = array();
$fareopta["FareRuleKey"]["FareInfoRef"] = $_GET['pricingKey'];
$fareopta["FareRuleKey"]["ProviderCode"] = "1G";
関数を呼び出すためのコード
$client = new FareruleSoapClient(
MY_ABSOLUTE_DIRECTORY .
"/uAPI_WSDLschema_Release-11.2.02-v11.2/air_v16_0/Air.wsdl"
);
$fareresult = $client->service($fareopta);
// code for FareruleSoapClient class
class FarerulesSoapClient extends SoapClient
{
function __construct($wsdlLocation)
{
$trac["trace"]=1;
$trac["use"]=SOAP_LITERAL;
$trac["style"]=SOAP_DOCUMENT;
$trac["compression"]=SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP | 5;
//$trac["compression"]=SOAP_COMPRESSION_ACCEPT ;
$trac["type_ns"]="";
$trac["login"]=SOAP_CLIENT_USERNAME;
$trac["password"]=SOAP_CLIENT_PASSWORD;
$trac["location"]="https://emea.copy-webservices.travelport.com/B2BGateway/connect/uAPI/AirFareRulesService";
$trac["action"]="http://localhost:8080/kestrel/AirFareRulesService";
$trac["version"]="SOAP_1_1";
parent::__construct($wsdlLocation, $trac);
}
function __doRequest($request, $location, $action, $version)
{
$namespace1='"http://www.travelport.com/schema/air_v15_0"';
$namespace2='"http://www.travelport.com/schema/common_v12_0"';
$namespace3='"http://www.travelport.com/schema/common_v13_0"';
$request=str_replace("<ns2:AirFareRulesReq","<ns2:AirFareRulesReq"." ".'TargetBranch="P107616"'." "."xmlns:ns2=".$namespace1,$request);
return parent::__doRequest($request, $location, $action, $version);
echo parent::__getLastRequest();
echo parent::__getLastResponse();
}
function __getLastRequest()
{
return parent::__getLastRequest();
}
}
しかし、コードを実行するたびに、xml 要求は AirRepriceReq 要求と呼ばれる別の要求として実行されます。AirRepriceReq と AirFareRuleReq が同じサービスを利用しているからだと思います。コードで言及されています ($fareresult = $client->service($fareopta);)。
このオーバーライドを避けるにはどうすればよいですか??