sap.ui.unified.FileUploader change http methode / allow post on segw
up vote
0
down vote
favorite
I am working on a file upload in UI5.
I can not use the fileupload
via associations since I need the binary before writing in my table.
The problem is sap.ui.unified.FileUploader
always uses the POST
HTTP method,
this causes an error in the backend system:
405 Methode not allowed
I found this SAP Blog FileUploader - 405 Method Not Allowed in which the problem is solved by extending the control and changing the HTTP method.
My question is there a more standard way to achieve that? I did not find any property in the control to configure the HTTP method.
Options:
- Maybe in the XHR Settings?
- Can you allow
POST
inSEGW
or the user exit classes?
file-upload odata sapui5 http-method
add a comment |
up vote
0
down vote
favorite
I am working on a file upload in UI5.
I can not use the fileupload
via associations since I need the binary before writing in my table.
The problem is sap.ui.unified.FileUploader
always uses the POST
HTTP method,
this causes an error in the backend system:
405 Methode not allowed
I found this SAP Blog FileUploader - 405 Method Not Allowed in which the problem is solved by extending the control and changing the HTTP method.
My question is there a more standard way to achieve that? I did not find any property in the control to configure the HTTP method.
Options:
- Maybe in the XHR Settings?
- Can you allow
POST
inSEGW
or the user exit classes?
file-upload odata sapui5 http-method
how do you mean that?
– Erch
Nov 8 at 7:19
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am working on a file upload in UI5.
I can not use the fileupload
via associations since I need the binary before writing in my table.
The problem is sap.ui.unified.FileUploader
always uses the POST
HTTP method,
this causes an error in the backend system:
405 Methode not allowed
I found this SAP Blog FileUploader - 405 Method Not Allowed in which the problem is solved by extending the control and changing the HTTP method.
My question is there a more standard way to achieve that? I did not find any property in the control to configure the HTTP method.
Options:
- Maybe in the XHR Settings?
- Can you allow
POST
inSEGW
or the user exit classes?
file-upload odata sapui5 http-method
I am working on a file upload in UI5.
I can not use the fileupload
via associations since I need the binary before writing in my table.
The problem is sap.ui.unified.FileUploader
always uses the POST
HTTP method,
this causes an error in the backend system:
405 Methode not allowed
I found this SAP Blog FileUploader - 405 Method Not Allowed in which the problem is solved by extending the control and changing the HTTP method.
My question is there a more standard way to achieve that? I did not find any property in the control to configure the HTTP method.
Options:
- Maybe in the XHR Settings?
- Can you allow
POST
inSEGW
or the user exit classes?
file-upload odata sapui5 http-method
file-upload odata sapui5 http-method
edited Nov 8 at 23:19
inizio
945512
945512
asked Nov 8 at 7:00
Erch
436213
436213
how do you mean that?
– Erch
Nov 8 at 7:19
add a comment |
how do you mean that?
– Erch
Nov 8 at 7:19
how do you mean that?
– Erch
Nov 8 at 7:19
how do you mean that?
– Erch
Nov 8 at 7:19
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
accepted
This may be due to the browser support of UI5.
Under the hood the file uploader is a <div>
that contains a <form>
.
The file can be uploaded either via XMLHttpRequest (XHR) or by simply submitting the form. Forms only support GET
and POST
.
If you want to use PUT
the first step is setting sendXHR="true"
.
But XHR does not work in IE9. For some reason the UI5 devs then decided:
If IE9 cannot use
PUT
then no one should!
So the second step is to create a subclass of the FileUploader, add a new property for the HTTP method and overwrite the _sendFilesWithXHR
method. This is as standard as it gets ;)
Btw this is the line where they hardcoded "POST"
which needs to be replaced with a dynamic call of the new property httpMethod
.
i did set sendXHR to true still uses post...
– Erch
Nov 12 at 7:42
you have to set sendXHR to true AND extend the control!
– Marc
Nov 12 at 7:47
ahh ok, now i get it thx
– Erch
Nov 12 at 7:48
while it did solve my previous problem i now get the errer: 'The server is refusing to process the request because the entity has an unsupported format'
– Erch
Nov 12 at 9:13
archive.sap.com/discussions/thread/3692797
– Marc
Nov 12 at 9:51
add a comment |
up vote
0
down vote
Upload/Download with SEGW
- Step by Step on how to use the SAPUI5 file upload feature
- File Upload/Download through NetWeaver Gateway
- Uploading Files to SAP GW, Downloading Files from SAP GW – New Techniques
- Newest Blog!!: Upload/download File in SAP UI5 Application using Gateway
Binary before Upload: only possible via Deffered & XHR
getBase64Promise: function (file) {
return new Promise(function (resolve, reject) {
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
var encoded = reader.result.replace("data:", "").replace(/^.*;base64,/, "");
if ((encoded.length % 4) > 0) {
encoded += "=".repeat(4 - (encoded.length % 4));
}
resolve(encoded);
};
reader.onerror = function () {
reject("error");
};
});
},
fileUploadChange: function (oControlEvent) {
var that = this;
var aFiles = oControlEvent.getParameters().files;
var currentFile = aFiles[0];
var sUrl = "yourNeeds..";
this.getBase64Promise(currentFile).then(function (data) {
that.xhrRequest(data, oView, sUrl);
});
},
xhrRequest: function (data, oView, url) {
var oImage = "data:image/png;base64, " + data;
oRequest = JSON.stringify(oImage);
var xhrReadyStateChange = function () {
if (this.readyState === this.DONE) {
console.log("200", JSON.parse(this.response));
}
};
var xhr = new XMLHttpRequest();
xhr.withCredentials = false;
xhr.addEventListener("readystatechange", xhrReadyStateChange);
xhr.open("POST", url, false); // setting request method & API endpoint, the last parameter is to set the calls as synchyronous
xhr.setRequestHeader("Accept", "application/json"); // adding request headers
xhr.setRequestHeader("Content-Type", "application/json"); // adding request headers
xhr.send(oRequest); // sending request
}
});
just to see if i understood correctly: there is no functionallity in the framework to achieving what i want?
– Erch
Nov 8 at 10:16
did you check the blog posts of my answer? I would expect that with SET_STREAM and GET_STREAM it should be possible also for associations ... check this link especially: blogs.sap.com/2016/11/08/…
– zYrEx
Nov 8 at 10:18
check this blog from few days ago: blogs.sap.com/2018/11/08/…
– zYrEx
Nov 8 at 11:44
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53202822%2fsap-ui-unified-fileuploader-change-http-methode-allow-post-on-segw%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
This may be due to the browser support of UI5.
Under the hood the file uploader is a <div>
that contains a <form>
.
The file can be uploaded either via XMLHttpRequest (XHR) or by simply submitting the form. Forms only support GET
and POST
.
If you want to use PUT
the first step is setting sendXHR="true"
.
But XHR does not work in IE9. For some reason the UI5 devs then decided:
If IE9 cannot use
PUT
then no one should!
So the second step is to create a subclass of the FileUploader, add a new property for the HTTP method and overwrite the _sendFilesWithXHR
method. This is as standard as it gets ;)
Btw this is the line where they hardcoded "POST"
which needs to be replaced with a dynamic call of the new property httpMethod
.
i did set sendXHR to true still uses post...
– Erch
Nov 12 at 7:42
you have to set sendXHR to true AND extend the control!
– Marc
Nov 12 at 7:47
ahh ok, now i get it thx
– Erch
Nov 12 at 7:48
while it did solve my previous problem i now get the errer: 'The server is refusing to process the request because the entity has an unsupported format'
– Erch
Nov 12 at 9:13
archive.sap.com/discussions/thread/3692797
– Marc
Nov 12 at 9:51
add a comment |
up vote
0
down vote
accepted
This may be due to the browser support of UI5.
Under the hood the file uploader is a <div>
that contains a <form>
.
The file can be uploaded either via XMLHttpRequest (XHR) or by simply submitting the form. Forms only support GET
and POST
.
If you want to use PUT
the first step is setting sendXHR="true"
.
But XHR does not work in IE9. For some reason the UI5 devs then decided:
If IE9 cannot use
PUT
then no one should!
So the second step is to create a subclass of the FileUploader, add a new property for the HTTP method and overwrite the _sendFilesWithXHR
method. This is as standard as it gets ;)
Btw this is the line where they hardcoded "POST"
which needs to be replaced with a dynamic call of the new property httpMethod
.
i did set sendXHR to true still uses post...
– Erch
Nov 12 at 7:42
you have to set sendXHR to true AND extend the control!
– Marc
Nov 12 at 7:47
ahh ok, now i get it thx
– Erch
Nov 12 at 7:48
while it did solve my previous problem i now get the errer: 'The server is refusing to process the request because the entity has an unsupported format'
– Erch
Nov 12 at 9:13
archive.sap.com/discussions/thread/3692797
– Marc
Nov 12 at 9:51
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
This may be due to the browser support of UI5.
Under the hood the file uploader is a <div>
that contains a <form>
.
The file can be uploaded either via XMLHttpRequest (XHR) or by simply submitting the form. Forms only support GET
and POST
.
If you want to use PUT
the first step is setting sendXHR="true"
.
But XHR does not work in IE9. For some reason the UI5 devs then decided:
If IE9 cannot use
PUT
then no one should!
So the second step is to create a subclass of the FileUploader, add a new property for the HTTP method and overwrite the _sendFilesWithXHR
method. This is as standard as it gets ;)
Btw this is the line where they hardcoded "POST"
which needs to be replaced with a dynamic call of the new property httpMethod
.
This may be due to the browser support of UI5.
Under the hood the file uploader is a <div>
that contains a <form>
.
The file can be uploaded either via XMLHttpRequest (XHR) or by simply submitting the form. Forms only support GET
and POST
.
If you want to use PUT
the first step is setting sendXHR="true"
.
But XHR does not work in IE9. For some reason the UI5 devs then decided:
If IE9 cannot use
PUT
then no one should!
So the second step is to create a subclass of the FileUploader, add a new property for the HTTP method and overwrite the _sendFilesWithXHR
method. This is as standard as it gets ;)
Btw this is the line where they hardcoded "POST"
which needs to be replaced with a dynamic call of the new property httpMethod
.
edited Nov 12 at 7:47
answered Nov 9 at 9:51
Marc
3,36941942
3,36941942
i did set sendXHR to true still uses post...
– Erch
Nov 12 at 7:42
you have to set sendXHR to true AND extend the control!
– Marc
Nov 12 at 7:47
ahh ok, now i get it thx
– Erch
Nov 12 at 7:48
while it did solve my previous problem i now get the errer: 'The server is refusing to process the request because the entity has an unsupported format'
– Erch
Nov 12 at 9:13
archive.sap.com/discussions/thread/3692797
– Marc
Nov 12 at 9:51
add a comment |
i did set sendXHR to true still uses post...
– Erch
Nov 12 at 7:42
you have to set sendXHR to true AND extend the control!
– Marc
Nov 12 at 7:47
ahh ok, now i get it thx
– Erch
Nov 12 at 7:48
while it did solve my previous problem i now get the errer: 'The server is refusing to process the request because the entity has an unsupported format'
– Erch
Nov 12 at 9:13
archive.sap.com/discussions/thread/3692797
– Marc
Nov 12 at 9:51
i did set sendXHR to true still uses post...
– Erch
Nov 12 at 7:42
i did set sendXHR to true still uses post...
– Erch
Nov 12 at 7:42
you have to set sendXHR to true AND extend the control!
– Marc
Nov 12 at 7:47
you have to set sendXHR to true AND extend the control!
– Marc
Nov 12 at 7:47
ahh ok, now i get it thx
– Erch
Nov 12 at 7:48
ahh ok, now i get it thx
– Erch
Nov 12 at 7:48
while it did solve my previous problem i now get the errer: 'The server is refusing to process the request because the entity has an unsupported format'
– Erch
Nov 12 at 9:13
while it did solve my previous problem i now get the errer: 'The server is refusing to process the request because the entity has an unsupported format'
– Erch
Nov 12 at 9:13
archive.sap.com/discussions/thread/3692797
– Marc
Nov 12 at 9:51
archive.sap.com/discussions/thread/3692797
– Marc
Nov 12 at 9:51
add a comment |
up vote
0
down vote
Upload/Download with SEGW
- Step by Step on how to use the SAPUI5 file upload feature
- File Upload/Download through NetWeaver Gateway
- Uploading Files to SAP GW, Downloading Files from SAP GW – New Techniques
- Newest Blog!!: Upload/download File in SAP UI5 Application using Gateway
Binary before Upload: only possible via Deffered & XHR
getBase64Promise: function (file) {
return new Promise(function (resolve, reject) {
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
var encoded = reader.result.replace("data:", "").replace(/^.*;base64,/, "");
if ((encoded.length % 4) > 0) {
encoded += "=".repeat(4 - (encoded.length % 4));
}
resolve(encoded);
};
reader.onerror = function () {
reject("error");
};
});
},
fileUploadChange: function (oControlEvent) {
var that = this;
var aFiles = oControlEvent.getParameters().files;
var currentFile = aFiles[0];
var sUrl = "yourNeeds..";
this.getBase64Promise(currentFile).then(function (data) {
that.xhrRequest(data, oView, sUrl);
});
},
xhrRequest: function (data, oView, url) {
var oImage = "data:image/png;base64, " + data;
oRequest = JSON.stringify(oImage);
var xhrReadyStateChange = function () {
if (this.readyState === this.DONE) {
console.log("200", JSON.parse(this.response));
}
};
var xhr = new XMLHttpRequest();
xhr.withCredentials = false;
xhr.addEventListener("readystatechange", xhrReadyStateChange);
xhr.open("POST", url, false); // setting request method & API endpoint, the last parameter is to set the calls as synchyronous
xhr.setRequestHeader("Accept", "application/json"); // adding request headers
xhr.setRequestHeader("Content-Type", "application/json"); // adding request headers
xhr.send(oRequest); // sending request
}
});
just to see if i understood correctly: there is no functionallity in the framework to achieving what i want?
– Erch
Nov 8 at 10:16
did you check the blog posts of my answer? I would expect that with SET_STREAM and GET_STREAM it should be possible also for associations ... check this link especially: blogs.sap.com/2016/11/08/…
– zYrEx
Nov 8 at 10:18
check this blog from few days ago: blogs.sap.com/2018/11/08/…
– zYrEx
Nov 8 at 11:44
add a comment |
up vote
0
down vote
Upload/Download with SEGW
- Step by Step on how to use the SAPUI5 file upload feature
- File Upload/Download through NetWeaver Gateway
- Uploading Files to SAP GW, Downloading Files from SAP GW – New Techniques
- Newest Blog!!: Upload/download File in SAP UI5 Application using Gateway
Binary before Upload: only possible via Deffered & XHR
getBase64Promise: function (file) {
return new Promise(function (resolve, reject) {
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
var encoded = reader.result.replace("data:", "").replace(/^.*;base64,/, "");
if ((encoded.length % 4) > 0) {
encoded += "=".repeat(4 - (encoded.length % 4));
}
resolve(encoded);
};
reader.onerror = function () {
reject("error");
};
});
},
fileUploadChange: function (oControlEvent) {
var that = this;
var aFiles = oControlEvent.getParameters().files;
var currentFile = aFiles[0];
var sUrl = "yourNeeds..";
this.getBase64Promise(currentFile).then(function (data) {
that.xhrRequest(data, oView, sUrl);
});
},
xhrRequest: function (data, oView, url) {
var oImage = "data:image/png;base64, " + data;
oRequest = JSON.stringify(oImage);
var xhrReadyStateChange = function () {
if (this.readyState === this.DONE) {
console.log("200", JSON.parse(this.response));
}
};
var xhr = new XMLHttpRequest();
xhr.withCredentials = false;
xhr.addEventListener("readystatechange", xhrReadyStateChange);
xhr.open("POST", url, false); // setting request method & API endpoint, the last parameter is to set the calls as synchyronous
xhr.setRequestHeader("Accept", "application/json"); // adding request headers
xhr.setRequestHeader("Content-Type", "application/json"); // adding request headers
xhr.send(oRequest); // sending request
}
});
just to see if i understood correctly: there is no functionallity in the framework to achieving what i want?
– Erch
Nov 8 at 10:16
did you check the blog posts of my answer? I would expect that with SET_STREAM and GET_STREAM it should be possible also for associations ... check this link especially: blogs.sap.com/2016/11/08/…
– zYrEx
Nov 8 at 10:18
check this blog from few days ago: blogs.sap.com/2018/11/08/…
– zYrEx
Nov 8 at 11:44
add a comment |
up vote
0
down vote
up vote
0
down vote
Upload/Download with SEGW
- Step by Step on how to use the SAPUI5 file upload feature
- File Upload/Download through NetWeaver Gateway
- Uploading Files to SAP GW, Downloading Files from SAP GW – New Techniques
- Newest Blog!!: Upload/download File in SAP UI5 Application using Gateway
Binary before Upload: only possible via Deffered & XHR
getBase64Promise: function (file) {
return new Promise(function (resolve, reject) {
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
var encoded = reader.result.replace("data:", "").replace(/^.*;base64,/, "");
if ((encoded.length % 4) > 0) {
encoded += "=".repeat(4 - (encoded.length % 4));
}
resolve(encoded);
};
reader.onerror = function () {
reject("error");
};
});
},
fileUploadChange: function (oControlEvent) {
var that = this;
var aFiles = oControlEvent.getParameters().files;
var currentFile = aFiles[0];
var sUrl = "yourNeeds..";
this.getBase64Promise(currentFile).then(function (data) {
that.xhrRequest(data, oView, sUrl);
});
},
xhrRequest: function (data, oView, url) {
var oImage = "data:image/png;base64, " + data;
oRequest = JSON.stringify(oImage);
var xhrReadyStateChange = function () {
if (this.readyState === this.DONE) {
console.log("200", JSON.parse(this.response));
}
};
var xhr = new XMLHttpRequest();
xhr.withCredentials = false;
xhr.addEventListener("readystatechange", xhrReadyStateChange);
xhr.open("POST", url, false); // setting request method & API endpoint, the last parameter is to set the calls as synchyronous
xhr.setRequestHeader("Accept", "application/json"); // adding request headers
xhr.setRequestHeader("Content-Type", "application/json"); // adding request headers
xhr.send(oRequest); // sending request
}
});
Upload/Download with SEGW
- Step by Step on how to use the SAPUI5 file upload feature
- File Upload/Download through NetWeaver Gateway
- Uploading Files to SAP GW, Downloading Files from SAP GW – New Techniques
- Newest Blog!!: Upload/download File in SAP UI5 Application using Gateway
Binary before Upload: only possible via Deffered & XHR
getBase64Promise: function (file) {
return new Promise(function (resolve, reject) {
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
var encoded = reader.result.replace("data:", "").replace(/^.*;base64,/, "");
if ((encoded.length % 4) > 0) {
encoded += "=".repeat(4 - (encoded.length % 4));
}
resolve(encoded);
};
reader.onerror = function () {
reject("error");
};
});
},
fileUploadChange: function (oControlEvent) {
var that = this;
var aFiles = oControlEvent.getParameters().files;
var currentFile = aFiles[0];
var sUrl = "yourNeeds..";
this.getBase64Promise(currentFile).then(function (data) {
that.xhrRequest(data, oView, sUrl);
});
},
xhrRequest: function (data, oView, url) {
var oImage = "data:image/png;base64, " + data;
oRequest = JSON.stringify(oImage);
var xhrReadyStateChange = function () {
if (this.readyState === this.DONE) {
console.log("200", JSON.parse(this.response));
}
};
var xhr = new XMLHttpRequest();
xhr.withCredentials = false;
xhr.addEventListener("readystatechange", xhrReadyStateChange);
xhr.open("POST", url, false); // setting request method & API endpoint, the last parameter is to set the calls as synchyronous
xhr.setRequestHeader("Accept", "application/json"); // adding request headers
xhr.setRequestHeader("Content-Type", "application/json"); // adding request headers
xhr.send(oRequest); // sending request
}
});
edited Nov 8 at 13:11
answered Nov 8 at 10:10
zYrEx
1,89092654
1,89092654
just to see if i understood correctly: there is no functionallity in the framework to achieving what i want?
– Erch
Nov 8 at 10:16
did you check the blog posts of my answer? I would expect that with SET_STREAM and GET_STREAM it should be possible also for associations ... check this link especially: blogs.sap.com/2016/11/08/…
– zYrEx
Nov 8 at 10:18
check this blog from few days ago: blogs.sap.com/2018/11/08/…
– zYrEx
Nov 8 at 11:44
add a comment |
just to see if i understood correctly: there is no functionallity in the framework to achieving what i want?
– Erch
Nov 8 at 10:16
did you check the blog posts of my answer? I would expect that with SET_STREAM and GET_STREAM it should be possible also for associations ... check this link especially: blogs.sap.com/2016/11/08/…
– zYrEx
Nov 8 at 10:18
check this blog from few days ago: blogs.sap.com/2018/11/08/…
– zYrEx
Nov 8 at 11:44
just to see if i understood correctly: there is no functionallity in the framework to achieving what i want?
– Erch
Nov 8 at 10:16
just to see if i understood correctly: there is no functionallity in the framework to achieving what i want?
– Erch
Nov 8 at 10:16
did you check the blog posts of my answer? I would expect that with SET_STREAM and GET_STREAM it should be possible also for associations ... check this link especially: blogs.sap.com/2016/11/08/…
– zYrEx
Nov 8 at 10:18
did you check the blog posts of my answer? I would expect that with SET_STREAM and GET_STREAM it should be possible also for associations ... check this link especially: blogs.sap.com/2016/11/08/…
– zYrEx
Nov 8 at 10:18
check this blog from few days ago: blogs.sap.com/2018/11/08/…
– zYrEx
Nov 8 at 11:44
check this blog from few days ago: blogs.sap.com/2018/11/08/…
– zYrEx
Nov 8 at 11:44
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53202822%2fsap-ui-unified-fileuploader-change-http-methode-allow-post-on-segw%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
how do you mean that?
– Erch
Nov 8 at 7:19