Error with Commit All in VS2010
-
- Posts: 8
- Joined: Mon Dec 30, 2013 10:34 am
Error with Commit All in VS2010
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.
Alan Howard
Alan Howard
You do not have the required permissions to view the files attached to this post.
Re: Error with Commit All in VS2010
Try reregistering ieproxy.dll.
32-bit Windows use
64-bit Windows user
32-bit Windows use
Code: Select all
regsvr32 "C:\Program Files\Internet Explorer\ieproxy.dll"
Code: Select all
regsvr32 "C:\Program Files (x86)\Internet Explorer\ieproxy.dll"
Beth Kieler
SourceGear Technical Support
SourceGear Technical Support
-
- Posts: 8
- Joined: Mon Dec 30, 2013 10:34 am
Re: Error with Commit All in VS2010
Performed
regsvr32 "C:\Program Files (x86)\Internet Explorer\ieproxy.dll"
On Windows 8.1 PC, restarted VS2010, Error still happens.
regsvr32 "C:\Program Files (x86)\Internet Explorer\ieproxy.dll"
On Windows 8.1 PC, restarted VS2010, Error still happens.
Re: Error with Commit All in VS2010
Next try to register actxprxy.dll.
Code: Select all
Regsvr32 actxprxy.dll
Beth Kieler
SourceGear Technical Support
SourceGear Technical Support
-
- Posts: 8
- Joined: Mon Dec 30, 2013 10:34 am
Re: Error with Commit All in VS2010
Regsvr32 actxprxy.dll performed. Error still happens.
Re: Error with Commit All in VS2010
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
SourceGear Technical Support
-
- Posts: 8
- Joined: Mon Dec 30, 2013 10:34 am
Re: Error with Commit All in VS2010
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?
Re: Error with Commit All in VS2010
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?
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
SourceGear Technical Support
-
- Posts: 8
- Joined: Mon Dec 30, 2013 10:34 am
Re: Error with Commit All in VS2010
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.
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.
Re: Error with Commit All in VS2010
So you registered mssprxy.dll along with actxprxy.dll?
Beth Kieler
SourceGear Technical Support
SourceGear Technical Support
-
- Posts: 8
- Joined: Mon Dec 30, 2013 10:34 am
Re: Error with Commit All in VS2010
Yes, now Commit All seems to be working fine.
-
- Posts: 8
- Joined: Mon Dec 30, 2013 10:34 am
Re: Error with Commit All in VS2010
You are welcome, Have a great day.