cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi Everyone,

     New scenario: uploading and downloading file using SAP Netweaver Gateway .

Dont know how to solve this  one .

I like to have ur valuable suggestion and Advice for this requirement.

Thanks in Advance,

Regards,

Jibin JOy

0 Likes
View Entire Topic
raphaelbertani
Explorer

i resolved webkitformboundary problem putting a Ajax requisition and send the file object of ui5 in the event handleUploadComplete

 
                handleUploadComplete: function (oEvent) {
 
                    var oCremer = this.byId(oEvent.getParameter("id"));

                    $.ajax({
                        url: '-hide url-/GW_UPLOADER_SRV/uploadSet',
                        type: 'POST',
                        data: oCremer.FUEl.files[0],
                        contentType: false,
                        processData: false,
                        success: function (response) {
                        },
                        error: function (response, x) {
                        }
                    });


                },