将CXML发布回PunchOut PHP

时间:2018-01-30 14:17:34

标签: php jquery cxml

我正在尝试将PunchOut系统与PHP网站集成。

我能够从PunchOut读取CXML响应,但我无法将CXML数据发回系统。

我的代码如下:

jQuery.ajax({
    url: '/psc/fssnd/EMPLOYEE/ERP/c/PV_MAIN_MENU.PV_DC_CATCHER.GBL?Page=PV_DC_CATCHER^&MSGNODENAME=MY_NODE',
    data: { cxml: cxml_data }, 
        crossDomain: true,
    type: 'POST',
    contentType: "application/xml; charset=utf-8",
    dataType: "xml",
    cache: false,
    error: function() { 
                alert("No data found."); 
            },
    success: function(xml) {
        alert("it works");          
    }
});

1 个答案:

答案 0 :(得分:0)

我的问题现在已经解决,问题是:

  1. CXML格式不正确,节点缺失

  2. Punch Out供应商未在其网络中列出我们的IP。