dongzou1964 2019-03-19 04:49
浏览 50
已采纳

如何在没有cURL的情况下在PHP中向API服务发送和接收XML数据

I'm working a project to request data from api service by sending XML data. The programming language used is PHP. I have done so much research on the internet and nothing turned up except for using cURL. Is there any other way using PHP to achieve this.

<?php
$xml_data = '<mainservice>
               <customer>
                  <appln_id>myid</appln_id>
                  <password>mypasss</password>
                  <cust_id>1234</cust_id>
               </customer>
             </mainservice>';

This is the data that needs to be send. The id and password is for authenticating the API service and cust_id for retrieving data of that particular customer.

The Result data is also in XML format.

NOTE The service accepts only POST data.

  • 写回答

3条回答 默认 最新

  • dongmufen8105 2019-03-23 05:06
    关注
    <head>
        <meta charset="UTF-8">
        <title>test handle response</title>
        <script>
            var xmlhttp = new XMLHttpRequest();
            xmlhttp.open("POST","URL to Request");
            var xmlDoc;
            xmlhttp.onreadystatechange = function() {
                if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                xmlDoc = xmlhttp.responseXML;
                console.log(xmlDoc);
                }
            };
            xmlhttp.setRequestHeader('Content-Type', 'text/xml');
            var xml = "<?xml version='1.0'?><query><author>John Steinbeck</author></query>";
            xmlhttp.send(xml);
        </script>
    </head>
    <body>
    
    </body>
    </html>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据