Activating snapshot to start a BPM 8.6 process - business-process-management

When I try to start the process in BPM on rest I get an error:
Result:
{
status: "error",
Data:
{
status: "error",
exceptionType: "com.ibm.bpm.wle.api.CannotStartBPDWrongStateException",
errorNumber: "CWTBG0586E",
errorMessage: "CWTBG0586E: Cannot start BPD because the snapshot or BPD is in the wrong state.",
errorMessageParameters: null,
responses: null,
errorData: null
}
}
Then I do everything as described in the video:
https://www.youtube.com/watch?v=sD1_BHFHP4Y&list=PL7D328AAEB82FE141&index=9
But in my rest it does not work and the error is the same.
The status snapshot remains active.
version BPM - 8.6.

I was able to solve my problem by iterating through the input parameters. To be able to start a task, I had to exclude from the request "snapshotId" and add "processAppId".
After that, I received an answer of 200 and the task started.
Version IBM Bussiness Process Manager Server 8.6.0.0 CF2018.03

Related

Update Intune Managed Device Category with Microsoft Graph were Failed

I'd failed to update the managed device category in Intune with Microsoft Graph. With the same code, I'd succeeded to update device owner. Parameter below:
URL: https://graph.microsoft.com/beta/deviceManagement/managedDevices('XXXXXXXXXX')
Failed request body:
{ "deviceCategoryDisplayName": "General Purpose" }
Succeeded request body:
{ "Owner": "Personal" }
"General Purpose" is a custom value. When failed, the server returns an error code and activity id.
How can I fix it?
I've got the answer finally.
We should use odata.id to update the property. Like these,
URL: https://graph.microsoft.com/beta/deviceManagement/managedDevices('XXXXX-YOUR-INTUNE-DEVICE-GUID-XXXXX')
Method: PUT
Payload: {#odata.id: "https://graph.microsoft.com/beta/deviceManagement/deviceCategories/XXXXX-YOUR-DEVICE-CATEGROY-GUID-XXXX"}
Response code: 204
You will receive response code 204 when success to update. And, you cannot update other properties with it. It occurs error.
In the API documentation, it can update with string, but it is not correct. Maybe, it is not string property but refers to other objects. I think other objects referring property are the same, but not tested.
https://techcommunity.microsoft.com/t5/Microsoft-Intune/Update-Intune-Managed-Device-Category-with-Microsoft-Graph-were/m-p/366263/highlight/true#M1683

Service worker sync event fires immediately

I am using Chrome 66.0.3359.181 (64-bit). I am running the following code:
navigator.serviceWorker.ready
.then(sw=>{
addData('sync-posts',post)
.then(()=>{
return sw.sync.register('sync-new-posts');
})
.then(()=>{
var snackbarContainer = document.querySelector('#confirmation-toast');
const data = {message: 'Your post was saved for syncing!'};
snackbarContainer.MaterialSnackbar.showSnackbar(data);
})
.catch(err=>{
console.log(err);
});
})
However even when I have disconnected my wifi it still triggers the sync event immediately.
ANSWER: I actually figured this out while I was writing it but since I didn't find anyone else answer this type of question AND it took an hour or so out of my time I thought I'd post it anyway.
I had a VM network adapter enabled (for Docker) and that was causing it to try and sync even though that connection didn't go anywhere useful.
Then I also discovered that provided I was throwing an error from that sync event when it failed, it would retry syncing. Originally I was catching errors and just logging to console but this meant the sync thought it was complete.

Firefox 54 (ubuntu 14.04): Twilio video failed getUserMedia

2017-06-30 08:42:02.920Z | WARN in [createLocalTracks #1]: Call to getUserMedia failed: MediaStreamError { name: "InternalError", message: "Starting video failed", constraint: "", stack: "" } twilio-video.min.js:92:26979
Unable to access local media MediaStreamError { name: "InternalError", message: "Starting video failed", constraint: "", stack: "" }
Twilio developer evangelist here.
You have an issue with system resources here. One app can only get access to the camera at a time, so if it's being used by Chrome, then Firefox can't access it.
I recommend just testing in one browser, possibly using private mode so you can log in as a different user.
Make sure you handle the error case when you can't get access to the camera too.

iTunes Connect submit for review - Your app information could not be saved. Try again

I get this error message when trying to submit a new version of my app for review:
While I've seen other threads about this error message, the solutions presented haven't worked for me and I haven't seen any mentions of the actual server error message I get. iTunes Connect responds with the following error message:
Error converting JSON string to object: Can not instantiate value of type [simple type, class com.apple.jingle.label.content.purple.to.LCSubmitForReviewTO] from JSON integral number; no single-int-arg constructor/factory method
Request details:
Remote Address:23.1.186.88:443
Request URL:https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/123456789/version/submit/complete
Request Method:POST
Status Code:500 Internal Server Error
Full JSON response:
{
"data":null,
"messages": {
"warn":null,
"error":[
"Error converting JSON string to object: Can not instantiate value of type [simple type, class com.apple.jingle.label.content.purple.to.LCSubmitForReviewTO] from JSON integral number; no single-int-arg constructor/factory method"
],
"info":null
},
"statusCode":"ERROR"
}
I've tried clearing all cookies, and also changing to another browser, and I've also tried removing the build and adding it again, but I get the same issue regardless. Has anyone else had this exact problem? Did anyone find a way around it?
I just tried submitting my app again, after 12 hours of being unable to. It worked!

"Server Rejected Request" (15/2001); "Request failed with http status code 500"

fetchUserRecordIDWithCompletionHandler returns:
<CKError 0x14daad30: "Server Rejected Request" (15/2001); "Request failed with http status code 500">
I have never seen this error with CloudKit. Do you think it is associated that some iCloud service was down nowadays?
defaultContainer.fetchUserRecordIDWithCompletionHandler({ _userRecordID, error in
if error == nil {
userRecordID = _userRecordID
loggedInUserRecordName = _userRecordID.recordName
dispatch_async(dispatch_get_main_queue(), {
self.progressView.setProgress(2 / self.steps, animated: true)
})
} else {
Utility.log("error 1231: \(error.localizedDescription)")
}
dispatch_semaphore_signal(self.sema)
})
Strange that fetchUserRecordIDWithCompletionHandler works in one of my other project with an other container, but usually does not work with this project with this container.
Any idea way?
Probably a server issue at the other end. 500 error code is unexpected internal error at server.
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
This can happen when you are using wrong container. In my project I was using custom container that did not match default app container. Switching to correct one with custom identifier solved the issue.
Check the id of the CKContainer in Capabilities and your CKContainer's initialization make ensure that they are the same. In my case, I make this mistakeļ¼Œ and the error?.localizedDescription is Optional("Request failed with http status code 500")

Resources