RE: i need help about xml.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Try this :-

$parser = xml_parser_create();
xml_parse_into_struct($parser, $result, $values, $indexes);
xml_parser_free($parser);
echo "Index array\n";
print_r($index);
echo "\nVals array\n";
print_r($vals);


I can't advise on exactly how you should sort the array, as I don't know what
the return data looks like.

Rob.

-----Original Message-----
From: php-objects@xxxxxxxxxxxxxxx [mailto:php-objects@xxxxxxxxxxxxxxx] On
Behalf Of birgunj birgunj
Sent: 30 May 2008 12:11
To: php-objects@xxxxxxxxxxxxxxx
Subject: RE:  i need help about xml.

hi,
  there is restriction,i did not want to use soap.i am sending xml script to
you.
  <?php
$xmlAvailQuery = <<<XML
<AirSessionRequest method="getAirAvailability">
<AirAvailabilityQuery>
  <originCityCode>BOS</originCityCode>
  <destinationCityCode>LAX</destinationCityCode>
  <departureDateTime>6/7/2008 9:00 AM</departureDateTime>
  <returnDateTime>6/14/2008 9:00 AM</returnDateTime>
  <fareClass>Y</fareClass>
  <tripType>R</tripType>
  <Passengers>
      <adultPassengers>1</adultPassengers>
    <seniorPassengers>1</seniorPassengers>   
   <childCodes>CNN</childCodes>
  </Passengers>
</AirAvailabilityQuery>
</AirSessionRequest>
XML;
  
 $connection = array('http' => array(
         'method'  => 'GET',
         //'header'  => 'Content-type: application/x-www-form-urlencoded',
         'header' => 'Content-type: text/xml',
         'content' => ''
     )
 );
 $context  = stream_context_create($connection);
 $ianQuery = 'http://www.some webservice address.com=' .
urlencode($xmlAvailQuery);
 $result = file_get_contents($ianQuery, false, $context);
   echo "<pre>";
 print_r($result);
 echo "</pre>";
?>

  here result sento to websevice through their address and response of
webservice store in $result varriable in xml formate.i want response of web
sevices should coming sorting order and store  in $result varriable in
sorting order.
   
  thanks
  humayoo
"Atkinson, Robert" <ratkinson@xxxxxxxxxxxxx> wrote:
          The second parameter for parse-into-struct expects the XML data to
be in a
string, so you should be able to easily pass the SOAP response to this
function, and then sort the array.

Could you send an example of your current script.

Rob.

-----Original Message-----
From: php-objects@xxxxxxxxxxxxxxx [mailto:php-objects@xxxxxxxxxxxxxxx] On
Behalf Of birgunj birgunj
Sent: 29 May 2008 06:22
To: php-objects@xxxxxxxxxxxxxxx
Subject: RE:  i need help about xml.

hi,

i read it.
my problem is that i am using php 5 class .

$abc = new Simplexml(xml result);

i want when result come into $abc varriable,it will in some sorting order.

but the page in your given url,they are creating xml document then put it
in array in sording order.

but here i am not creating xml document,i am getting web service response
in xml format.

thanks alot for reply.if you have idea,please share with me.

thanks again

"Atkinson, Robert" <ratkinson@xxxxxxxxxxxxx> wrote:
Have you read the examples on the documentation page URL I gave
you? 

-----Original Message-----
From: php-objects@xxxxxxxxxxxxxxx [mailto:php-objects@xxxxxxxxxxxxxxx] On
Behalf Of birgunj birgunj
Sent: 28 May 2008 06:26
To: php-objects@xxxxxxxxxxxxxxx
Subject: RE:  i need help about xml.

hi,
thanks for reply.i am not geeting it well,if you have any simple
example,can you send me ?

thanks

humayoo

"Atkinson, Robert" <ratkinson@xxxxxxxxxxxxx> wrote:
The most obvious way to do that is to parse the XML data into an
array and
then use the normal array sort functions :-

http://uk.php.net/manual/en/function.xml-parse-into-struct.php 

Rob.

-----Original Message-----
From: php-objects@xxxxxxxxxxxxxxx [mailto:php-objects@xxxxxxxxxxxxxxx] On
Behalf Of birgunj birgunj
Sent: 25 May 2008 05:58
To: php-objects@xxxxxxxxxxxxxxx
Subject:  i need help about xml.

Dear All,

i send request to web sevices as xml and result returned in the xml.but i
want when result return in xml,it should return in sort order based any one
of the xml element.

how do we do this ?

if any body has any idea or matterial please share with us.

thanks in advance to all.

humayoo

*****************************************************************************
******
Any opinions expressed in email are those of the individual and not
necessarily those of the company. This email and any files transmitted with
it are confidential and solely for the use of the intended recipient 
or entity to whom they are addressed. It may contain material protected by
attorney-client privilege. If you are not the intended recipient, or a person
responsible for delivering to the intended recipient, be advised that you
have received this email in error and that any use is strictly prohibited.

Random House Group + 44 (0) 20 7840 8400
http://www.randomhouse.co.uk
http://www.booksattransworld.co.uk 
http://www.kidsatrandomhouse.co.uk
Generic email address - enquiries@xxxxxxxxxxxxxxxxx

Name & Registered Office:
THE RANDOM HOUSE GROUP LIMITED
20 VAUXHALL BRIDGE ROAD
LONDON
SW1V 2SA
Random House Group Ltd is registered in the United Kingdom with company No.
00954009, VAT number 102838980
*****************************************************************************
******

[Non-text portions of this message have been removed]

------------------------------------

Are you looking for a PHP job? Join the PHP Professionals directory Now!
http://www.phpclasses.org/professionals/Yahoo! Groups Links

[Non-text portions of this message have been removed]

------------------------------------

Are you looking for a PHP job? Join the PHP Professionals directory Now!
http://www.phpclasses.org/professionals/Yahoo! Groups Links



                           

       

[Non-text portions of this message have been removed]


------------------------------------

Are you looking for a PHP job? Join the PHP Professionals directory Now!
http://www.phpclasses.org/professionals/Yahoo! Groups Links




[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Soap]     [Kernel Newbies]     [Yosemite]     [Yosemite Campsites]

  Powered by Linux