Re: VMSS 500 Status Backend Error - Orchestration couldn't complete
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm getting this 500 error when POSTing to /vmss/v2/searchTerminatedRequest/: {"responseStatus":{"statusCode":"API003","statusDescription":"Backend Error - Orchestration couldn't complete"}}
My 2-way SSL works since GET /vdp/helloworld/ returns 200.
POST headers:
headers: {
"Content-Type" => "application/json",
"keyId" => "06235331-ef34-45e5-b407-9fa340ab0b48"
}
X-CORRELATION-ID: 1723829614_886_1586319465_-57b9759w5_VDP_WS
Is there any ruby sample code for the MLE process?
Solved! Go to Solution
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VMSS 500 Status Backend Error - Orchestration couldn't complete
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VMSS 500 Status Backend Error - Orchestration couldn't complete
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VMSS 500 Status Backend Error - Orchestration couldn't complete
encrypted body (what I put as the body in the POST):
{"encData":"eyJhbGciOiJSU.......mqjnibqQ"}
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VMSS 500 Status Backend Error - Orchestration couldn't complete
Hi @jtang, Thank you for reaching out. An agent will get back to you soon. Until then, if any community member has information that may be helpful, feel free to reply to this thread.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Working ruby solution. Get the public key the same way I did above.
Turns out A256GCM doesn't work so just use A128GCM. Also 'Accept' is a necessary header.
Feel free to close this ticket.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: VMSS 500 Status Backend Error - Orchestration couldn't complete
Thank you very much.