Upload REST API shows 400 bad request

799 Views Asked by At

I have an ESB webservice client which upload document to Alfresco using following RestAPI .

http://:8080/alfresco/service/api/upload

I understand , API to be called as multipart / form data , with file and mandatory fields . When i executed , i got the following error ersponse back .

{
  "status": {
    "code": 400,
    "name": "Bad Request",
    "description": "Request sent by the client was syntactically incorrect."
  },
  "message": "Required parameters are missing",
  "exception": "",
  "callstack": [],
  "server": "Enterprise v5.2.3 (r852994b1-b12) schema 10,065",
  "time": "10-Jul-2020 12:26:47"
}

I use WSO2 ESB client , ESB code looks all good . The only place where i can debug is through wirelog . wirelog shows alll good( please scee screen shot below) . Error message has confilicting information like

"description": "Request sent by the client was syntactically incorrect." "message": "Required parameters are missing",

Is there a log i can get from Alfresco server side to identify what actually is the issue , which syntax is incorrect ? what parameter is missing ?

Screen shot for wire log as below

please click this link to see image of wiretap

2

There are 2 best solutions below

4
On

Which documentation are you following? By having a quick look here, I'd say you're not sending everything you should be: https://docs.alfresco.com/5.0/references/RESTful-UploadUploadPost.html

This is the condition you're seeing getting triggered, so I'd look more closely in what you're actually sending. Maybe use Fiddler or some similar software to record your request and inspect it.

// Ensure mandatory file attributes have been located. Need either destination, or site + container or updateNodeRef
      if ((filename === null || content === null) || (destination === null && (siteId === null || containerId === null) && updateNodeRef === null))
      {
         exitUpload(400, "Required parameters are missing");
         return;
      }

Also, the web script in question can be found here, it's implemented in JS so it would be relatively easy to add additional (temporary) logging.

...alfresco\tomcat\webapps\alfresco\WEB-INF\lib\alfresco-remote-api-5.0.d.jar\alfresco\templates\webscripts\org\alfresco\repository\upload\
0
On

You can use api-explorer rest api to upload document.

https://api-explorer.alfresco.com/api-explorer/#!/nodes/createNode