我需要从worklight适配器发送一个post请求

时间:2013-04-01 12:11:16

标签: javascript adapter ibm-mobilefirst

我正在使用IBM Worklight我需要从我正在调用的worklight适配器向服务器发送一个post请求我应该从服务器获取xml内容作为响应但是我正在获取HTML并且它失败了帮我 通过REST客户端发送相同的帖子请求XML输出完美无缺

适配器中的代码是

    function showAttributes()
    {
        var truevar ="True";
        var pubvar ="public";
        var gridvar = "GridView";
        var gvar ="Grid View 1 ";

        var request = '<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rs="http://www.w3.org/2001/sw/DataAccess/tests/result-set#" xmlns:rrmNav="http://com.ibm.rdm/navigation#" xmlns:rrmViewdata="http://com.rdm/viewdata#" xmlns:rt="https://crizz.net/qw/views" xmlns:rm="http://www.crizz.com/xmlns/rdm/rdf/" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:rql="http://www.crizz.com/xmlns/rdm/rql/" xmlns:owl="http://www.w3.org/2002/07/owl#">' +
        '<rtm:View rdf:about="">' + 
        '<rtm:rowquery rdf:parseType="Resource"> ' +

                       ' <rdf:Seq>' +
                            '<rdf:li rdf:resource="https://jazz.net/rtm/folders/_maPswFcdEeCVbIiWC7_0yA"/>'+
                        '</rdf:Seq>' +
                   ' </rql:e2>' +
                    '<rql:op>' + invar + '</rql:op>' +
                '</rdf:_1>' +
            '</rql:where>' +
        '</rtm:rowquery>' +
        '<rtm:displayBaseProperties rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">' + truevar + '</rtm:displayBaseProperties>' +
        '<rrmNav:scope>' + pubvar + '</rrmNav:scope>'+
        '<rtm:ofType>' + gridvar + '</rtm:ofType>' +
        '<dcterms:description> </dcterms:description>' +
        '<dcterms:title>' + gvar +'</dcterms:title>' +
    '</rtm:View>' +
    '</rdf:RDF>';
        var input = {
            method : 'post',
            returnedContentType : 'application/xml',
            path : lpath,
            headers : {
                'RP-Request-Type' : 'private',

                       },

                       body : {
                            contentType: 'text/plain; charset=utf-8',
                            content: request.toString()
                        },
                        parameters : {
                            'oslc.query' : 'execute=true&fullObject=false&size=20&count=true&page=1&reuse=false&'
                        }

        };

        return WL.Server.invokeHttp(input);

}

发送POST请求是否有任何错误..请帮助

提前致谢

2 个答案:

答案 0 :(得分:1)

是的,将工作灯5.0.5升级到5.0.6解决了我的问题,多亏了Idan Adar

答案 1 :(得分:0)

我建议从一个非常简单的POST程序开始。 Follow the HTTP adapter module