Re: Posting values to a URL

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

 



Thanks Nathan,

But that wont work effectively because the response header could change
depending on the outcome of the transaction or if file is not found on the
seller's website etc.



Nathan Rixham wrote:
> 
> dele454 wrote:
>> hi,
>> 
>> I am working on integrating a credit payment service from setcom. on
>> completion of transaction setcom sends bunch of post variables that my
>> script has to send back to setcom to get the details of the transaction
>> as
>> an xml file.
>> 
>> I am using the pecl_http extension(http_post_fields) for posting these
>> variables but i have this reponse header info with the xml file that i
>> can't
>> get rid of. And the php doc isnt explicit enough on the use of this
>> function:
>> 
>> Code:
>> 
>> HTTP/1.1 200 OK Connection: close Date: Tue, 19 May 2009 21:56:02 GMT
>> Content-Type: text/html; charset=UTF-8 Server: Microsoft-IIS/6.0 P3P:
>> CP="IDC DSP CURa ADMa DEVa IVAa IVDa OUR DELa NOR LEG UNI PUR NAV INT
>> DEM"
>> X-Powered-By: ASP.NET Set-Cookie: CFID=142013;expires=Thu, 12-May-2039
>> 21:56:02 GMT;path=/ Set-Cookie: CFTOKEN=99801499;expires=Thu, 12-May-2039
>> 21:56:02 GMT;path=/ <?xml version='1.0'
>> encoding='UTF-8'?><order_synchro><outcome><status>Complete</status>
>> 
>> 
>> i need to work with the xml file but the response header with the xml
>> file
>> is really not allowing me to.
>> 
>> How can i set the http_post_field function not to return response
>> headers?
>> 
>> 
>> Help needed thanks in advance!
>> 
>> -----
>> dee
> 
> $content = 'the http response';
> $parts = explode('<?xml', $content);
> $content = '<?xml' . $parts[1];
> 
> i guess.. if you removed the new lines in that chunk of response then 
> explode/split on \r\n\r\n as that's how http messages are formatted and 
> split up :)
> 
> regards
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> 


-----
dee
-- 
View this message in context: http://www.nabble.com/Posting-values-to-a-URL-tp23625856p23630473.html
Sent from the PHP - General mailing list archive at Nabble.com.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux