JBPM : POST request for execute process go wrong
I am new to jBPM.
I reference jbpm.org for tutorial. And I tried "My First Business Application" example. It is OK.
And then I tried the next tutorial "Business Application with Business Asset". The first steps are going well. I successfully done installation of jBPM Console, drawing business process asset in KIE process and starting the application are going well.
And I tested according to reference. I got a problem for sending POST request to my application. I use Chrome Postman client for sending POST request.
In tutorial, they give the following link to make POST request.
http://localhost:8090/rest/server/containers/business-application-kjar/processes/business-application-kjar.process/instances
I do but I always get "415 Unsupported Media Type" in every time. I also research for error. I can't find anywhere.
Please help me.
I am trouble for continue the next examples.
I want to know is any way to continue or am I wrong in sending request.
Thanks.
java jboss jbpm
add a comment |
I am new to jBPM.
I reference jbpm.org for tutorial. And I tried "My First Business Application" example. It is OK.
And then I tried the next tutorial "Business Application with Business Asset". The first steps are going well. I successfully done installation of jBPM Console, drawing business process asset in KIE process and starting the application are going well.
And I tested according to reference. I got a problem for sending POST request to my application. I use Chrome Postman client for sending POST request.
In tutorial, they give the following link to make POST request.
http://localhost:8090/rest/server/containers/business-application-kjar/processes/business-application-kjar.process/instances
I do but I always get "415 Unsupported Media Type" in every time. I also research for error. I can't find anywhere.
Please help me.
I am trouble for continue the next examples.
I want to know is any way to continue or am I wrong in sending request.
Thanks.
java jboss jbpm
add a comment |
I am new to jBPM.
I reference jbpm.org for tutorial. And I tried "My First Business Application" example. It is OK.
And then I tried the next tutorial "Business Application with Business Asset". The first steps are going well. I successfully done installation of jBPM Console, drawing business process asset in KIE process and starting the application are going well.
And I tested according to reference. I got a problem for sending POST request to my application. I use Chrome Postman client for sending POST request.
In tutorial, they give the following link to make POST request.
http://localhost:8090/rest/server/containers/business-application-kjar/processes/business-application-kjar.process/instances
I do but I always get "415 Unsupported Media Type" in every time. I also research for error. I can't find anywhere.
Please help me.
I am trouble for continue the next examples.
I want to know is any way to continue or am I wrong in sending request.
Thanks.
java jboss jbpm
I am new to jBPM.
I reference jbpm.org for tutorial. And I tried "My First Business Application" example. It is OK.
And then I tried the next tutorial "Business Application with Business Asset". The first steps are going well. I successfully done installation of jBPM Console, drawing business process asset in KIE process and starting the application are going well.
And I tested according to reference. I got a problem for sending POST request to my application. I use Chrome Postman client for sending POST request.
In tutorial, they give the following link to make POST request.
http://localhost:8090/rest/server/containers/business-application-kjar/processes/business-application-kjar.process/instances
I do but I always get "415 Unsupported Media Type" in every time. I also research for error. I can't find anywhere.
Please help me.
I am trouble for continue the next examples.
I want to know is any way to continue or am I wrong in sending request.
Thanks.
java jboss jbpm
java jboss jbpm
edited Nov 15 '18 at 7:07
R.Katnaan
asked Nov 15 '18 at 3:51
R.KatnaanR.Katnaan
2,03231730
2,03231730
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
415 - Unsupported Media Type error occurs when the request is in a format not supported by the server.
Add the following http header parameters to your request.
Accept: application/json
Content-type: application/json
X-KIE-ContentType: JSON
I tried but it is not working. Can you show me detail or any picture reference. Thanks
– R.Katnaan
Nov 15 '18 at 5:37
Can you add a simple json body to the request and try?
– Prasanth Nair
Nov 15 '18 at 5:52
Yes I tried...it show the same error.
– R.Katnaan
Nov 15 '18 at 7:04
Any reason why Content-type is application/octet-stream instead of application/json (in your postman screenshot)?
– Prasanth Nair
Nov 15 '18 at 14:49
Thanks...Content-type is error. I fixed and it is working.
– R.Katnaan
Nov 16 '18 at 3:13
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',
autoActivateHeartbeat: false,
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%2f53312180%2fjbpm-post-request-for-execute-process-go-wrong%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
415 - Unsupported Media Type error occurs when the request is in a format not supported by the server.
Add the following http header parameters to your request.
Accept: application/json
Content-type: application/json
X-KIE-ContentType: JSON
I tried but it is not working. Can you show me detail or any picture reference. Thanks
– R.Katnaan
Nov 15 '18 at 5:37
Can you add a simple json body to the request and try?
– Prasanth Nair
Nov 15 '18 at 5:52
Yes I tried...it show the same error.
– R.Katnaan
Nov 15 '18 at 7:04
Any reason why Content-type is application/octet-stream instead of application/json (in your postman screenshot)?
– Prasanth Nair
Nov 15 '18 at 14:49
Thanks...Content-type is error. I fixed and it is working.
– R.Katnaan
Nov 16 '18 at 3:13
add a comment |
415 - Unsupported Media Type error occurs when the request is in a format not supported by the server.
Add the following http header parameters to your request.
Accept: application/json
Content-type: application/json
X-KIE-ContentType: JSON
I tried but it is not working. Can you show me detail or any picture reference. Thanks
– R.Katnaan
Nov 15 '18 at 5:37
Can you add a simple json body to the request and try?
– Prasanth Nair
Nov 15 '18 at 5:52
Yes I tried...it show the same error.
– R.Katnaan
Nov 15 '18 at 7:04
Any reason why Content-type is application/octet-stream instead of application/json (in your postman screenshot)?
– Prasanth Nair
Nov 15 '18 at 14:49
Thanks...Content-type is error. I fixed and it is working.
– R.Katnaan
Nov 16 '18 at 3:13
add a comment |
415 - Unsupported Media Type error occurs when the request is in a format not supported by the server.
Add the following http header parameters to your request.
Accept: application/json
Content-type: application/json
X-KIE-ContentType: JSON
415 - Unsupported Media Type error occurs when the request is in a format not supported by the server.
Add the following http header parameters to your request.
Accept: application/json
Content-type: application/json
X-KIE-ContentType: JSON
edited Nov 16 '18 at 3:17
R.Katnaan
2,03231730
2,03231730
answered Nov 15 '18 at 5:26
Prasanth NairPrasanth Nair
38617
38617
I tried but it is not working. Can you show me detail or any picture reference. Thanks
– R.Katnaan
Nov 15 '18 at 5:37
Can you add a simple json body to the request and try?
– Prasanth Nair
Nov 15 '18 at 5:52
Yes I tried...it show the same error.
– R.Katnaan
Nov 15 '18 at 7:04
Any reason why Content-type is application/octet-stream instead of application/json (in your postman screenshot)?
– Prasanth Nair
Nov 15 '18 at 14:49
Thanks...Content-type is error. I fixed and it is working.
– R.Katnaan
Nov 16 '18 at 3:13
add a comment |
I tried but it is not working. Can you show me detail or any picture reference. Thanks
– R.Katnaan
Nov 15 '18 at 5:37
Can you add a simple json body to the request and try?
– Prasanth Nair
Nov 15 '18 at 5:52
Yes I tried...it show the same error.
– R.Katnaan
Nov 15 '18 at 7:04
Any reason why Content-type is application/octet-stream instead of application/json (in your postman screenshot)?
– Prasanth Nair
Nov 15 '18 at 14:49
Thanks...Content-type is error. I fixed and it is working.
– R.Katnaan
Nov 16 '18 at 3:13
I tried but it is not working. Can you show me detail or any picture reference. Thanks
– R.Katnaan
Nov 15 '18 at 5:37
I tried but it is not working. Can you show me detail or any picture reference. Thanks
– R.Katnaan
Nov 15 '18 at 5:37
Can you add a simple json body to the request and try?
– Prasanth Nair
Nov 15 '18 at 5:52
Can you add a simple json body to the request and try?
– Prasanth Nair
Nov 15 '18 at 5:52
Yes I tried...it show the same error.
– R.Katnaan
Nov 15 '18 at 7:04
Yes I tried...it show the same error.
– R.Katnaan
Nov 15 '18 at 7:04
Any reason why Content-type is application/octet-stream instead of application/json (in your postman screenshot)?
– Prasanth Nair
Nov 15 '18 at 14:49
Any reason why Content-type is application/octet-stream instead of application/json (in your postman screenshot)?
– Prasanth Nair
Nov 15 '18 at 14:49
Thanks...Content-type is error. I fixed and it is working.
– R.Katnaan
Nov 16 '18 at 3:13
Thanks...Content-type is error. I fixed and it is working.
– R.Katnaan
Nov 16 '18 at 3:13
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.
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%2f53312180%2fjbpm-post-request-for-execute-process-go-wrong%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