<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804347#M11880</link>
    <description>&lt;P&gt;I can't explain to myself, why first job is running and all subsequent doesn't until Job Processor gets restarted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So back to my code, where my Job Handler is calling a&amp;nbsp; method (UpdateProperties) of a referenced assembly (JobHelper.dll) which contains the file property update method:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside of my JobHelper.dll :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;public JobOutcome UpdateProperties(IJobProcessorServices context, long fileId, long userIdOfJobExecuter, LifecycleStatus status)
        {
            try
            {
                UserPasswordCredentials adminCred = new JobHelper().GetAdminCred(context);
                using (WebServiceManager _srvMgr = new WebServiceManager(adminCred))
                {
                    File file = _srvMgr.DocumentService.GetFileById(fileId);
                    // check for drawing
                    if (file.Name.ToLower().EndsWith(".idw") || file.Name.ToLower().EndsWith(".dwg"))
                    {
                        // getting PropDefInfo
                        PropDefInfo[] propDefInfo = _srvMgr.PropertyService.GetPropertyDefinitionInfosByEntityClassId("FILE", null);
                        string fullUserName = JobHelper.GetUserName(_srvMgr, userIdOfJobExecuter);
                        Dictionary&amp;lt;PropDef, object&amp;gt; properties;
						
						switch (status)
						{
							case LifecycleStatus.FromWorkToReviewed:
								//....
								// some further code
								//....
								break;
							case LifecycleStatus.FromReviewedToChecked:								
								properties = new Dictionary&amp;lt;PropDef, object&amp;gt;()
								{
									{ propDefInfo.FirstOrDefault(x =&amp;gt; x.PropDef.DispName == "Initial Checked By").PropDef, fullUserName},
									{ propDefInfo.FirstOrDefault(x =&amp;gt; x.PropDef.DispName == "Initial Checked Date").PropDef, DateTime.Now}
								};
								break;
							default:
								properties = new Dictionary&amp;lt;PropDef, object&amp;gt;();
								throw new JobFrameworkException("Kein übergebener Status");
						}

                        // update properties
                        IExplorerUtil explorerUtil = ExplorerLoader.LoadExplorerUtil(
                            _srvMgr.SecurityService.Url,
                            context.VaultContext.VaultName,
                            _srvMgr.SecurityService.SecurityHeader.UserId,
                            _srvMgr.SecurityService.SecurityHeader.Ticket);
                        explorerUtil.UpdateFileProperties(file, properties);

                        return JobOutcome.Success;
                    }
                    else
                    {
                        return JobOutcome.Success;
                    }
                }
            }
            catch (Exception ex)
            {
                ExceptionWriter(ex);
                return JobOutcome.Failure;
            }            
        }

        private UserPasswordCredentials GetAdminCred(IJobProcessorServices context)
        {
            UserPasswordCredentials adminCred = new UserPasswordCredentials(
                    context.VaultContext.RemoteBaseUrl.ToString(),
                    context.VaultContext.VaultName,
                    "jobserver",
                    "myPassword);
            return adminCred;
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Mar 2013 22:26:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-03-13T22:26:36Z</dc:date>
    <item>
      <title>Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3485494#M11876</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use in a Job&amp;nbsp;"UpdateFileProperties" of the namespace "Autodesk.Connectivity.Explorer.ExtensibilityTools". In Vault 2012 it works fine. Now in Vault 2013 only the first job does all the updates we want to. The next and all following jobs&amp;nbsp;of the same type fail. We get the Errormessage "Error updating property values". The guys of coolorange get the same effect in different tests.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can we handle this problem. Is there any workaround. Its very urgent, because we are actualy in an project we need this feature.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gerhard&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2012 13:46:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3485494#M11876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-05T13:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3562778#M11877</link>
      <description>&lt;P&gt;We released a hotfix to address this issue: &lt;A href="http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&amp;amp;id=19844149&amp;amp;linkID=9261341" target="_blank"&gt;http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&amp;amp;id=19844149&amp;amp;linkID=9261341&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Aug 2012 12:02:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3562778#M11877</guid>
      <dc:creator>Redmond.D</dc:creator>
      <dc:date>2012-08-02T12:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3803293#M11878</link>
      <description>&lt;P&gt;I'm getting the same error (Error updating property values) when using UpdateFileProperties within Job Processor.&lt;/P&gt;&lt;P&gt;When trying to make the same call - let's say inside of console app - it works perfectly, but not with Job Processor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really don't get it.....!! Is this a known error with Update 1?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the moment we're using Vault Professional 2013 with Update 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2013 22:56:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3803293#M11878</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-12T22:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804237#M11879</link>
      <description>&lt;P&gt;The hotfix, which is part of update 1, fixes a specific issue where the first time you call UpdateFileProperties it works, but every time after that it fails.&amp;nbsp; If you are seeing that UpdateFileProperties fails on the first call, then the problem is something else.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest posting your code where you initialize IExplorerUtil and where you call UpdateFileProperties. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2013 20:21:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804237#M11879</guid>
      <dc:creator>Redmond.D</dc:creator>
      <dc:date>2013-03-13T20:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804347#M11880</link>
      <description>&lt;P&gt;I can't explain to myself, why first job is running and all subsequent doesn't until Job Processor gets restarted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So back to my code, where my Job Handler is calling a&amp;nbsp; method (UpdateProperties) of a referenced assembly (JobHelper.dll) which contains the file property update method:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside of my JobHelper.dll :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;public JobOutcome UpdateProperties(IJobProcessorServices context, long fileId, long userIdOfJobExecuter, LifecycleStatus status)
        {
            try
            {
                UserPasswordCredentials adminCred = new JobHelper().GetAdminCred(context);
                using (WebServiceManager _srvMgr = new WebServiceManager(adminCred))
                {
                    File file = _srvMgr.DocumentService.GetFileById(fileId);
                    // check for drawing
                    if (file.Name.ToLower().EndsWith(".idw") || file.Name.ToLower().EndsWith(".dwg"))
                    {
                        // getting PropDefInfo
                        PropDefInfo[] propDefInfo = _srvMgr.PropertyService.GetPropertyDefinitionInfosByEntityClassId("FILE", null);
                        string fullUserName = JobHelper.GetUserName(_srvMgr, userIdOfJobExecuter);
                        Dictionary&amp;lt;PropDef, object&amp;gt; properties;
						
						switch (status)
						{
							case LifecycleStatus.FromWorkToReviewed:
								//....
								// some further code
								//....
								break;
							case LifecycleStatus.FromReviewedToChecked:								
								properties = new Dictionary&amp;lt;PropDef, object&amp;gt;()
								{
									{ propDefInfo.FirstOrDefault(x =&amp;gt; x.PropDef.DispName == "Initial Checked By").PropDef, fullUserName},
									{ propDefInfo.FirstOrDefault(x =&amp;gt; x.PropDef.DispName == "Initial Checked Date").PropDef, DateTime.Now}
								};
								break;
							default:
								properties = new Dictionary&amp;lt;PropDef, object&amp;gt;();
								throw new JobFrameworkException("Kein übergebener Status");
						}

                        // update properties
                        IExplorerUtil explorerUtil = ExplorerLoader.LoadExplorerUtil(
                            _srvMgr.SecurityService.Url,
                            context.VaultContext.VaultName,
                            _srvMgr.SecurityService.SecurityHeader.UserId,
                            _srvMgr.SecurityService.SecurityHeader.Ticket);
                        explorerUtil.UpdateFileProperties(file, properties);

                        return JobOutcome.Success;
                    }
                    else
                    {
                        return JobOutcome.Success;
                    }
                }
            }
            catch (Exception ex)
            {
                ExceptionWriter(ex);
                return JobOutcome.Failure;
            }            
        }

        private UserPasswordCredentials GetAdminCred(IJobProcessorServices context)
        {
            UserPasswordCredentials adminCred = new UserPasswordCredentials(
                    context.VaultContext.RemoteBaseUrl.ToString(),
                    context.VaultContext.VaultName,
                    "jobserver",
                    "myPassword);
            return adminCred;
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2013 22:26:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804347#M11880</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-13T22:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804672#M11881</link>
      <description>&lt;P&gt;Are you sure that the first call UpdateFileProperties succeeds?&lt;/P&gt;
&lt;P&gt;If so, then check your file versions to make sure the the update has been applied.&amp;nbsp; According to the hotfix readme, the following files should be 17.0.62.200 or higher.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Connectivity.Explorer.DocumentPS.dll&lt;/LI&gt;
&lt;LI&gt;JobProcessor.exe&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If that's not the problem, post the output from the Exception.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2013 11:49:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804672#M11881</guid>
      <dc:creator>Redmond.D</dc:creator>
      <dc:date>2013-03-14T11:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804724#M11882</link>
      <description>&lt;P&gt;Thanks for reply Doug.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm safe as houses the UpdateFileProperties call of the first job succeeds (job is not in job queue anymore and properties are updated).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SP1 applied successful regarding to file versions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Connectivity.Explorer.DocumentPS.dll (17.1.16.0)&lt;/LI&gt;&lt;LI&gt;JobProcessor.exe (17.1.16.0)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Via StreamWriter I extract Exception to txt file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;==========================================&lt;/P&gt;&lt;P&gt;Message: Error updating property values&lt;BR /&gt;Stacktrace:&amp;nbsp;&amp;nbsp;&amp;nbsp; at Connectivity.Explorer.ExtensibilityUtil.ExplorerUtil.UpdateFileProperties(File file, Dictionary`2 props)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; at Library_VaultJobServerHelper.JobHelper.UpdateProperties(IJobProcessorServices context, Int64 fileId, Int64 userIdOfJobExecuter, LifecycleStatus status)&lt;BR /&gt;InnerException:&lt;/P&gt;&lt;P&gt;Data &amp;amp;colon; System.Collections.ListDictionaryInternal&lt;BR /&gt;HelpLink:&lt;/P&gt;&lt;P&gt;==========================================&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2013 12:42:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3804724#M11882</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-14T12:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3806107#M11883</link>
      <description>&lt;P&gt;I just noticed something.&amp;nbsp; You supply your own username and password when creating your WebServiceManager credentials.&amp;nbsp; Try using &lt;STRONG&gt;UserIdTicket&lt;/STRONG&gt;Credentials instead.&amp;nbsp; The IJobProcessorServices should have all the information you need for that type of credentials&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 18:16:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3806107#M11883</guid>
      <dc:creator>Redmond.D</dc:creator>
      <dc:date>2013-03-15T18:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3806525#M11884</link>
      <description>&lt;P&gt;I have to supply my own username and password when creating my WebServiceManager credentials, because I need some admin rights for updating properties. By using UserIdTicketCredentials of IJobProcessorServices there aren't proper rights for updating properties.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nevertheless I have tried using UserIdTicketCredentials of IJobProcessorServices and queued up the job with admin account, but ended up in same error message -&amp;gt; "Error updating property values".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's really enough to drive one to despair.....&lt;/P&gt;</description>
      <pubDate>Sat, 16 Mar 2013 13:49:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3806525#M11884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-16T13:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Autodesk.Connectivity.Explorer.ExtensibilityTools and Jobserver</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3816457#M11885</link>
      <description>&lt;P&gt;&lt;FONT size="2"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;We're making use of the UpdateProperties method quite a lot without any problem. I compared you're code against ours and I detected two differences:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;1) We're only updating text properties. Is the problem maybe being causes by updating a date property? You could try to update text properties only to make sure the date property isn't causing the problem.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;2) In your code you call the LoadExplorerUtil for every job. In our code we created a public&amp;nbsp;property like below. It checks if&amp;nbsp;the ExplorerUtil is&amp;nbsp;loaded already. If so, it returns the existing ExplorerUtil.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;private IExplorerUtil _explorerUtil;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;public IExplorerUtil ExplorerUtil&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/FONT&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;get&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/FONT&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;if (this._explorerUtil == null)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;this._explorerUtil = ExplorerLoader.LoadExplorerUtil(RemoteBaseUrl, VaultName, UserId, Ticket);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/FONT&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;return this._explorerUtil;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;Hope this information helps you to solve the problem.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#000000" face="arial,helvetica,sans-serif"&gt;Pim Saarloos&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2013 16:35:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/autodesk-connectivity-explorer-extensibilitytools-and-jobserver/m-p/3816457#M11885</guid>
      <dc:creator>psaarloos</dc:creator>
      <dc:date>2013-03-27T16:35:13Z</dc:date>
    </item>
  </channel>
</rss>

