revit ExtensibleStorage reading and writing permission setting occur exception

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I am using Revit ExtensibleStorage.when I set the ExtensibleStorage reading and writing permission, occur exception:"The vendorId is invalid. Parameter name: vendorId".I use "com.hongwa" as my vendorId and I am sure that the vendorId in the addin file and in the code is same.It work well in the revit 2017,but it occur exception:"The vendorId is invalid. Parameter name: vendorId" in the revit 2016. The flowing is my code for the ExtensibleStorage reading and writing permission setting :
buider.SetApplicationGUID(new Guid("f35e4672-0a3e-4514-b105-6a636aa9f344"));
buider.SetReadAccessLevel(AccessLevel.Vendor);
buider.SetWriteAccessLevel(AccessLevel.Vendor);
buider.SetVendorId("com.hongwa");
I found the SetVendorId api remark:"The vendor id is the registered developer symbol. The registration interface is available at http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=1075006 Since vendor ids are not case sensitive, the string will be converted to upper case before it is stored in the schema." when I go to the url,it show:"Symbols registration has been retired and is no longer available. If you have any questions please contact Dev-Req@autodesk.com "
have someone can help me?
thanks.