Error with Commit All in VS2010

If you are having a problem using Vault, post a message here.
Post Reply
TrackerMan
Posts: 8
Joined: Mon Dec 30, 2013 10:34 am

Error with Commit All in VS2010

Post by TrackerMan » Tue Jun 24, 2014 8:43 am

This was working fine but I am not sure what happened. Every time I try a Commit All with any solution/project I get the attached error. I have uninstalled and reinstalled the Vault Client. I can check items in and out using the client.
Error.jpg
Alan Howard
You do not have the required permissions to view the files attached to this post.

Beth
Posts: 8550
Joined: Wed Jun 21, 2006 8:24 pm
Location: SourceGear
Contact:

Re: Error with Commit All in VS2010

Post by Beth » Tue Jun 24, 2014 10:18 am

Try reregistering ieproxy.dll.

32-bit Windows use

Code: Select all

regsvr32 "C:\Program Files\Internet Explorer\ieproxy.dll"
64-bit Windows user

Code: Select all

regsvr32 "C:\Program Files (x86)\Internet Explorer\ieproxy.dll"
Beth Kieler
SourceGear Technical Support

TrackerMan
Posts: 8
Joined: Mon Dec 30, 2013 10:34 am

Re: Error with Commit All in VS2010

Post by TrackerMan » Tue Jun 24, 2014 12:40 pm

Performed

regsvr32 "C:\Program Files (x86)\Internet Explorer\ieproxy.dll"

On Windows 8.1 PC, restarted VS2010, Error still happens.

Beth
Posts: 8550
Joined: Wed Jun 21, 2006 8:24 pm
Location: SourceGear
Contact:

Re: Error with Commit All in VS2010

Post by Beth » Tue Jun 24, 2014 1:18 pm

Next try to register actxprxy.dll.

Code: Select all

Regsvr32 actxprxy.dll
Beth Kieler
SourceGear Technical Support

TrackerMan
Posts: 8
Joined: Mon Dec 30, 2013 10:34 am

Re: Error with Commit All in VS2010

Post by TrackerMan » Tue Jun 24, 2014 2:23 pm

Regsvr32 actxprxy.dll performed. Error still happens.

Beth
Posts: 8550
Joined: Wed Jun 21, 2006 8:24 pm
Location: SourceGear
Contact:

Re: Error with Commit All in VS2010

Post by Beth » Tue Jun 24, 2014 3:00 pm

Can you go into your Event Viewer and find an error corresponding to the same time you get the error with Visual Studio? Use the Copy in your Event Viewer and paste the entire error in a reply.
Beth Kieler
SourceGear Technical Support

TrackerMan
Posts: 8
Joined: Mon Dec 30, 2013 10:34 am

Re: Error with Commit All in VS2010

Post by TrackerMan » Tue Jun 24, 2014 3:55 pm

I produced the error again and checked the Windows Logs in Event Viewer and no new entries. Could this show how be related to My Documents location?

Beth
Posts: 8550
Joined: Wed Jun 21, 2006 8:24 pm
Location: SourceGear
Contact:

Re: Error with Commit All in VS2010

Post by Beth » Wed Jun 25, 2014 7:44 am

As far as I know, the location of your My Documents shouldn't be related to the error. The error is not strictly a Vault error.

Prior to this error, had you installed or uninstalled any other programs?

Did you get any responses from registering the DLLs?
Beth Kieler
SourceGear Technical Support

TrackerMan
Posts: 8
Joined: Mon Dec 30, 2013 10:34 am

Re: Error with Commit All in VS2010

Post by TrackerMan » Wed Jun 25, 2014 8:23 am

I do not remember installing or uninstalling anything. The DLLs reported registered successfully. The only thing I can remember doing was that I was trying to create a project in VS2010 and was having an issue creating a folder in my Documents folder which is mapped to a network drive. So how the network share name had changed to My Documents and I changed in back to my login name. Then I was able to create the folder for the new project.

Just found this on a Google search:

The exception seems to indicate the crash was caused due to an interface not being found. This indicates that something's wrong with proxy/stubs on the machine. At least IServiceProvider is failing. IE is usually the owner of the IServiceProvider proxy.

From the dump, it showed devenv.exe process crashed shortly after loading: C:\Windows\SysWOW64\actxprxy.dll and C:\Windows\System32\mssprxy.dll

The issue turned out to be broken registration for IServiceProvider. The proxy-stub CLSID was wrong (it was referring to actxprxy.dll instead of ieproxy.dll on Windows 7 x64). Registering ieproxy.dll from an elevated cmd prompt resolved the issue. regsvr32 "C:\Program Files (x86)\Internet Explorer\ieproxy.dll"

I registered the two DLLs in the second paragraph and now it is working.

Beth
Posts: 8550
Joined: Wed Jun 21, 2006 8:24 pm
Location: SourceGear
Contact:

Re: Error with Commit All in VS2010

Post by Beth » Wed Jun 25, 2014 8:28 am

So you registered mssprxy.dll along with actxprxy.dll?
Beth Kieler
SourceGear Technical Support

TrackerMan
Posts: 8
Joined: Mon Dec 30, 2013 10:34 am

Re: Error with Commit All in VS2010

Post by TrackerMan » Wed Jun 25, 2014 8:39 am

Yes, now Commit All seems to be working fine.

Beth
Posts: 8550
Joined: Wed Jun 21, 2006 8:24 pm
Location: SourceGear
Contact:

Re: Error with Commit All in VS2010

Post by Beth » Wed Jun 25, 2014 10:03 am

Thanks for the update.
Beth Kieler
SourceGear Technical Support

TrackerMan
Posts: 8
Joined: Mon Dec 30, 2013 10:34 am

Re: Error with Commit All in VS2010

Post by TrackerMan » Wed Jun 25, 2014 10:18 am

You are welcome, Have a great day.

Post Reply