Community
Inventor Forum
Welcome to Autodeskโ€™s Inventor Forums. Share your knowledge, ask questions, and explore popular Inventor topics.
cancel
Showing results forย 
Showย ย onlyย  | Search instead forย 
Did you mean:ย 

How to read file properties Inventor (ipt. idw. dwg) of a web application.

1 REPLY 1
Reply
Message 1 of 2
prixodkomv
1181 Views, 1 Reply

How to read file properties Inventor (ipt. idw. dwg) of a web application.

Hello I am developing a web app ASP.NET MVC 3, which will read the properties files of Inventor (dwg, idw, ipt, iam). Read the properties of these files is by using objects Apprentice Server, which provides Autodesk Inventor View 2012. Connection objects is done through the library RxApprentice.tlb.

 

Code is shown below:

 public ActionResult Index ()
 {
       try
       {
           ApprenticeServerComponent appServerComponent = new ApprenticeServerComponent ();

           ApprenticeServerDocument apprenticeServerDocument = appServerComponent.Open (FileName);

           var ListPropety = apprenticeServerDocument.PropertySets ["Design Tracking Properties"].

                                                                                                             Cast <Property> (). ToList ();

           var CollectionProperty = ListPropety
                                . Where (x => x.Name! = "Thumbnail")
                                . ToDictionary <Property, string, object> (
                                    property => property.Name,
                                    property => property.Value
                                );
                ViewBag.CollectonProperty = CollectionProperty;
                }
                catch (System.Runtime.InteropServices.COMException ex)
                {
                    ViewBag.ComException = ex.Message;
                }
            return View ();
}

While debugging applications on Web-server - IIS Express 7.5 development environment Visual Studio 2010 application runs without errors.
After publishing a Web application on IIS 7.0 the following error: "Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))ยป.

 

A tried: change User Account Control Settings, and set permissions to configuration DCOM objects in Component Services  - no results.

Is it possible to read the file properties Inventor of Web applications, and how to do it? Help solve the problem. Thanks for any help!

1 REPLY 1
Message 2 of 2

Hi prixodkomv,

You might have better luck asking questions and searching for answers of this type on the Inventor Customization forum:
http://forums.autodesk.com/t5/Autodesk-Inventor-Customization/bd-p/120

 

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums