Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- 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.
Upload PDF via Java Client + API
Alexander_Dullnig
Member Posts: 5 ✭
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:
AM I doing anything wrong?
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?
1