• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Vault Customization

    Reply
    Contributor
    Posts: 19
    Registered: ‎09-13-2007

    Getting Soap Exceptions when trying to access UDPs

    303 Views, 1 Replies
    09-06-2011 07:00 PM

    When executing the following code

    ...

               PropertyService propSvc = new PropertyService();
               PropDefInfo[] propDefs = propSvc.GetPropertyDefinitionInfosByEntityClassId("FILE", null);              // SOAP 106 Error!
               PropInst[] fileProperties = propSvc.GetPropertiesByEntityIds("FILE", new long[] { selectedFile.Id }); // SOAP 0 Error!
    ...

    I'm getting a "SoapException was unhandled by user code" error.

     

    For the 2nd line shown the error is "System.Web.Services.Protocols.SoapException: 106" and for the 3rd line shown the error is "System.Web.Services.Protocols.SoapException: 0".

     

    My guess is that I'm not properly instantiating propSvc, but cannot find a clean example of this anywhere.  Any suggestions appreciated!

     

    Dan

    Please use plain text.
    Employee
    Posts: 652
    Registered: ‎12-12-2006

    Re: Getting Soap Exceptions when trying to access UDPs

    09-07-2011 04:33 AM in reply to: dlconsulting

    The easiest way to set up your service is to use the WebServiceManager in Autodesk.Connectivity.WebServiceTools.

    Vault Web View has an example of reading property values.



    Doug Redmond
    Software Engineer
    Autodesk, Inc.
    http://justonesandzeros.typepad.com/

    Please use plain text.