Autodesk Forge Design Automation demo issues - autodesk-forge

I am trying to use this web app: https://inventor-config-demo.autodesk.io/
However, when trying to upload an Inventor Assembly (zipped, with .iam in the root and .ipt files in a subfolder called 'components') I get the following error:
Internal error
Try to repeat your last action and please report the following
message: Structure needs cleaning

Tested your attached dataset and should be uploaded correctly now.

Related

Workitem failing on UpdateDwgParamActivity | Autodesk Design Automation

I followed autodesk platform service official tutorial for Design Automation and clone github repo the sample app .
I followed all the instruction to run the app exactly, sample app is running but when i am trying to use "UpdateDwgParamsActivity" workitem is failing.
Workitem failed
Error report url
I am not sure what is issue here, i have already tried with "clear account" and then creating app bundle again but it is not working.
Although input and output file is getting uploaded to oss bucket, but output file doesn't have any changes and it's same as input ( width & height didn't change )
Please let me know what is the issue here and how it can be solved.
"ActivityId":"YR4rlmfrF0a3Z6BRSxcxD5GW652EKPut.UpdateDWGParamActivity+dev"
"Engine.Id":"Autodesk.3dsMax_2020!43"
You selected the wrong Engine, for activity UpdateDwgParamActivity, you need to select Autodesk.AutoCAD+24_1

Error while executing Work Item "Cannot find the addin file"

I am new to the Design Automation API, so please excuse and correct me if I am using the wrong terms. I am setting up the wiring for my very first Design Automation AppBundle, and I have almost all of it working. I followed the patterns in the "Delete Walls" tutorial.
I have a working add-in DLL that I can test locally and it runs under the "design.automation-csharp-revit.local.debug.tool".
I also have all of the Rest API connections setup, and I can successfully submit a WorkItem that will download a Revit file from a BIM 360, and start processing it in the sandbox of Design Automation. But I am getting an error during the execution on the sandbox where it seems it can't find my add-in file. Here is an excerpt from the WorkItem log:
[07/21/2020 18:02:26] Resolving location of Revit/RevitCoreEngine installation...
[07/21/2020 18:02:26] Running user application....
[07/21/2020 18:02:31] Cannot find the addin file:
[07/21/2020 18:02:31] Fail to deploy Addon DLL(s) in AppPackages.
[07/21/2020 18:02:31] RESULT: Failure
I have looked through "bundle" ZIP file many times looking for typos that could cause this, but I can't find anything, it looks identical to the "delete walls" example. So I'm wondering if there is somewhere else that I need to look. Or any other way I could debug this to find out were the connection is missing. I can only assume that the AppBundle and Activity items are setup correctly since I am getting this far and the error is not mentioning either of those items.
Any tips on where to look?
This turned out to be a misspelling of the [dot]bundle folder extension that triggered the issue.

html proofer not finding jekyll collections

Running into a problem where normal pages are working fine, however collection pages are not found by html-proofer.
Example error message:
* internally linking to /blog/choose-a-datasource, which does not exist (line 82)
Choose a data source
This message comes from the following Travis report. There are a lot of collection pages not found:
https://travis-ci.org/semi-technologies/semi-website/builds/514826595#L1065
However, when you look in the source folder the the page does exist:
https://github.com/semi-technologies/semi-website/tree/permalinks/_blog
And in a jekyll build these files are successfully created in ./_site.
Does someone have experience with this?

Android Studio Gradle error: Missing project_info object

basically opening this question again because the answer is outdated, as the link now redirects to Firebase:
Gradle fails building with "Missing project_info object"
I want to attach the google-services.json file to my Android Studio project, and every time I try to download it from the developers API from Google, it gives me a json file with a large name that does't correspond to the tutorial's simple "google-services" and renaming it won't work because of this error.
Downloading it creating a new project doesn't seem possible for me now as it the page gives me another error when I click Configure a Project (I already did that before but left the project there without downloading the json file directly from there, which seems to be the problem).
Where can I safely get this file, and should I rename it or? Thanks in advance.
Apparently the solution is just following the link and creating the project with Firebase:
Then create or select a project and fill it with your app data that shoul look like this (the SHA-1 key should be found in your console log when clicking the button in the image:
Then add the lines of code that should be in your build.gradle(app level one and project level one), editing them with notepadd. Finally you need to sync these Gradle files, in Android Studio : File->Sync project with Gradle Files
The tutorial is very self explatanory, but for beginners like me, this could help.

How to fix GeometryControls#getInfoWindowHtml says: failed to get html from template error?

I have downloaded source files of gmaps utility library example for drawing polygon from following link.
gmaps-utility-library
But when I executed those files in my localhost, It's showing me following error:
GeometryControls#getInfoWindowHtml says: failed to get html from template
This problem is coming because of following code from map_main.js
geometryControls.addControl(markerControl);
geometryControls.addControl(polygonControl);
geometryControls.addControl(polylineControl);
map.addControl(geometryControls);
Thank you.