Re: send XML thru POST

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

 



Say you want to send the XML data to: http://myserver.com/listener.php
The you should use:

$fp = fsockopen (myserver.com, 80, $errno, $errstr, 30);

and later down

fputs($fp, "POST /listener.php HTTP/1.0\r\n");




"Joakim Ling" <joakim.ling@xxxxxxxxxxxxxx> wrote in message
news:04c001c44f84$c290e690$2300a8c0@xxxxxxxxxxxxxxxxx
> Hi
>
> Im tring to send XML thru POST to a server. I have a demo in asp that
> works fine but how do I write this in php.
>
> This is the ASP demo
> sXML = "<?xml version=""1.0"" encoding=""ISO-8859-1""
> Set oHttpConn = CreateObject("MSXML2.ServerXMLHTTP")
> Call oHttpConn.Open("POST", sURL, False)
> Call oHttpConn.setRequestHeader("Content-Type", "Text/xml")
> Call oHttpConn.send(sXML)
> sXMLResponse = oHttpConn.responseText
> Set oHttpConn = Nothing
>
>
> I tried this from the php-manual but no result. Its like it cant find
> the remote server.
>
> $fp = fsockopen ($sUrl, 80, $errno, $errstr, 30);
> $msg =  "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"";
> if (!$fp) {
>     print("$errstr ($errno)<br>\r\n");
> } else {
>  if ($fp) {
>   fputs($fp, "POST /$sUrl HTTP/1.0\r\n");
>   fputs($fp, "Content-Type: text/xml\r\n");
>   fputs($fp, "Content-Length: ".strlen($msg)."\r\n");
>   fputs($fp, "\r\n");
>   fputs($fp, $msg);
>   $content = 0;
>   $reply = array();
>   while (!feof($fp)) {
>    echo fgets ($fp,128);
>   }
>   fclose($fp);
>  }
> }
>
>
> Thanks for help..  // Jocke

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


[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux