0

XMLリクエストを送信するためにphp curlを使用しています。私の要求では、フィールド名の一部は大文字で始まる必要があります (私は、これらのフィールド名をどのようにすべきかを正確に言及しています)。しかし、それはまだ小文字のままです。私はこれのために何をすべきですか?

4

1 に答える 1

0
$soap_request  ="<?xml version=\"1.0\" encoding=\"UTF-8\"?> "
."<soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/>"
//. "<soapenv:Header /> "
.  "<soapenv:Body>"
."<air:AirFareRulesreq targetbranch=\"P107616\" Fareruletype=\"Long\" xmlns:air=\"http://www.travelport.com/schema/air_v16_0\" xmlns:com=\"http://www.travelport.com/schema/common_v13_0\" >" 
."<com:BillingPointOfSaleInfo OriginApplication=\"UAPI\">" ."</com:BillingPointOfSaleInfo>"
."<air:FareRuleKey FareInfoRef=$farere ProviderCode=\"1G\">$farerulekk"
."</air:FareRuleKey> " 
."</air:AirFareRuleReq>"
. "</soapenv:Body>"
."</soapenv:Envelope>"
."?>";
于 2012-11-22T11:15:55.530 に答える