Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.

First time visiting? Here are some places to start:
  1. Looking for a certain topic? Check out the categories filter or use Search (upper right).
  2. Need support? Ask a question to our Community Support category.
  3. Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
  4. Be respectful, on topic and if you see a problem, Flag it.

If you would like to contact our Community Manager personally, feel free to send a private message or an email.

Options

Upload PDF via Java Client + API

I am currently using the Java Client from Onshape for uploading a PDF as Blob Element.
Endpoint is /api/blobelements/d/did/w/wid
When I upload the PDF with Insomnia (REST Client App like Postman) everything is ok.
But when i upload it with the Java Client code, the PDF is broken in Onshape.
Both tries the same PDF.
Following code is used:

Blob value = new Blob(pdf.getPath());
BlobElementsUploadFileCreateElementResponse uploadResponse = onshape.blobElements()
.uploadFileCreateElement()
.translate(true)
.yAxisIsUp(false)
.flattenAssemblies(false)
.file(value).call(did, w);

AM I doing anything wrong?
Sign In or Register to comment.