This question is locked. New answers and comments are not allowed.
Hello,
I am attempting to execute a sample test in a MOSS environment and cannot pass step 1 - open a SharePoint site. I receive the following error when trying to build the solution in VS 2008.
Error: Missing mynewtestproject.dll for test with id [9399348a-7e3d-01d3-a6ca-c4c848925d58} cannot be found.
Please advise.
I am attempting to execute a sample test in a MOSS environment and cannot pass step 1 - open a SharePoint site. I receive the following error when trying to build the solution in VS 2008.
Error: Missing mynewtestproject.dll for test with id [9399348a-7e3d-01d3-a6ca-c4c848925d58} cannot be found.
Please advise.
15 Answers, 1 is accepted
0
Hi Woody,
If I understand correctly, you are getting a sort of "find not found" error at the time you try to build your solution within Visual Studio 2008. Is that correct?
What projects are in your solution? What project dependencies do you have for each project? Does "mynewtestproject" exist as a project in your solution?
Kind regards,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
If I understand correctly, you are getting a sort of "find not found" error at the time you try to build your solution within Visual Studio 2008. Is that correct?
What projects are in your solution? What project dependencies do you have for each project? Does "mynewtestproject" exist as a project in your solution?
Kind regards,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Woody
Top achievements
Rank 1
answered on 01 Sep 2009, 08:31 PM
Cody,
Thanks for the rapid response. I scratched the test project prior to my message and constructed a new one with added references. I can access my page in MOSS now. Since I am new to the .NET world, I can't really say that adding several references fixed the problem. FYI: here is the list of all the references that are in my project set - with the indication of what I added after creating the aii test app.
ArtOfTest.WebAii
ArtOfTest.WebAii.Design
Microsoftw.VisualStudio.QualityTools.UnitTestFramework
System
System.Core
System.EnterpriseServices (added)
System.Web.Extensions (added)
System.Web.Extensions.Design (added)
System.Web.Mobile (added)
System.Web.Services (added)
System.Windows.Forms
System.XML (added)
I believe I am good for now. Thanks.
Woody
Thanks for the rapid response. I scratched the test project prior to my message and constructed a new one with added references. I can access my page in MOSS now. Since I am new to the .NET world, I can't really say that adding several references fixed the problem. FYI: here is the list of all the references that are in my project set - with the indication of what I added after creating the aii test app.
ArtOfTest.WebAii
ArtOfTest.WebAii.Design
Microsoftw.VisualStudio.QualityTools.UnitTestFramework
System
System.Core
System.EnterpriseServices (added)
System.Web.Extensions (added)
System.Web.Extensions.Design (added)
System.Web.Mobile (added)
System.Web.Services (added)
System.Windows.Forms
System.XML (added)
I believe I am good for now. Thanks.
Woody
0
Hello Woody,
I am glad that you were able to resolve this issue on your own. Have a good day!
Kind regards,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
I am glad that you were able to resolve this issue on your own. Have a good day!
Kind regards,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Woody
Top achievements
Rank 1
answered on 02 Sep 2009, 10:41 AM
Telerik Team,
Apparently, the fix wasn't validate. I created a new project with the same references and now experience the another reference error during the build, "the type or namespace name 'WebAii' does not exist in the namespace 'Telerik' (are you missing a reference or assembly)." I have included all the WebAii references that were in my collection.
Experience the error at (in code)
Apparently, the fix wasn't validate. I created a new project with the same references and now experience the another reference error during the build, "the type or namespace name 'WebAii' does not exist in the namespace 'Telerik' (are you missing a reference or assembly)." I have included all the WebAii references that were in my collection.
using s
ystem;
using
System.Text;
using System.Linq;
using System.Collections.Generic;
using
ArtOfTest.WebAii.Core;
using ArtOfTest.WebAii.ObjectModel;
using ArtOfTest.WebAii.TestTemplates;
using ArtOfTest.WebAii.TestAttributes;
using ArtOfTest.WebAii.Win32.Dialogs;
using ArtOfTest.WebAii.Controls.HtmlControls;
using ArtOfTest.WebAii.Controls.HtmlControls.HtmlAsserts;
using Microsoft.VisualStudio.TestTools.UnitTesting;
Experience the error at (in code)
public
Telerik.WebAii.Controls.Html.RadComboBox
What reference should I have? Please advise. Thanks.
0
Hello Woody,
Perhaps you have a coded test(s) referring the WebAii RadControls? They reside in an assembly named Telerik.WebAii.Controls.Html. You can find the respective .dll locally at
<product installation folder>/RadControls Translators/Bin folder, e.g.
Program Files/Telerik/WebUI Test Studio Q2 2009/RadControls Translators/Bin/Telerik.WebAii.Controls.Html.dll
Please add the assembly reference and let us know if you get more errors.
Regards,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Perhaps you have a coded test(s) referring the WebAii RadControls? They reside in an assembly named Telerik.WebAii.Controls.Html. You can find the respective .dll locally at
<product installation folder>/RadControls Translators/Bin folder, e.g.
Program Files/Telerik/WebUI Test Studio Q2 2009/RadControls Translators/Bin/Telerik.WebAii.Controls.Html.dll
Please add the assembly reference and let us know if you get more errors.
Regards,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Woody
Top achievements
Rank 1
answered on 02 Sep 2009, 12:32 PM
Thanks, my project has no issues during the build phase, but now I get the following error:
Failed SampleWebAiiTest TestProject4 Test method TestProject4.WebAiiVSUnitTest1.SampleWebAiiTest threw exception: System.TimeoutException: Timed out waiting for new browser to connect. Waited: 30000 msec..
I'm running Vista with WebAii v1.1.
I was able to open my page in another IE window without any issues. Why am I receiving this error?
Failed SampleWebAiiTest TestProject4 Test method TestProject4.WebAiiVSUnitTest1.SampleWebAiiTest threw exception: System.TimeoutException: Timed out waiting for new browser to connect. Waited: 30000 msec..
I'm running Vista with WebAii v1.1.
I was able to open my page in another IE window without any issues. Why am I receiving this error?
0
Hello Woody,
I'm glad we're making progress.
We're actually troubleshooting a similar (if not the exact) problem in another thread here. Can you please try the instructions provided by my colleague? I've attached the diagnostic tool in question to this message if the IE is configured correctly on your end as well.
BTW, do the tests run in Firefox?
Sincerely yours,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
I'm glad we're making progress.
We're actually troubleshooting a similar (if not the exact) problem in another thread here. Can you please try the instructions provided by my colleague? I've attached the diagnostic tool in question to this message if the IE is configured correctly on your end as well.
BTW, do the tests run in Firefox?
Sincerely yours,
Konstantin Petkov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Woody
Top achievements
Rank 1
answered on 02 Sep 2009, 01:13 PM
Yes, the thread opens without problem in Firefox.
I ran the Connection Tester and received the following for IE:
9/2/2009 9:06:57 AM: Checking ArtOfTest.ShDocVw 1.0 in GAC.
9/2/2009 9:06:57 AM: Checking ArtOfTest.InternetExplorer 1.1 in GAC.
9/2/2009 9:06:57 AM: Error installing analysis WebAii.dll
9/2/2009 9:06:57 AM: The process cannot access the file 'C:\Windows\assembly\GAC_MSIL\ArtOfTest.WebAii\1.1.900.0__4fd5f65be123776c\ArtOfTest.WebAii.dll' because it is being used by another process.
9/2/2009 9:06:57 AM: Exception source: mscorlib
9/2/2009 9:06:57 AM: at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite)
at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
at CnxTester.ConnectionTester.InstallAnalysisWebAiiDll()
9/2/2009 9:06:57 AM: IE was closed.
9/2/2009 9:06:57 AM: Restoring production copy of ArtOfTest.WebAii.dll to GAC
9/2/2009 9:06:57 AM: Error restoring production copy of ArtOfTest.WebAii.dll to GAC
9/2/2009 9:06:57 AM: The process cannot access the file 'C:\Windows\assembly\GAC_MSIL\ArtOfTest.WebAii\1.1.900.0__4fd5f65be123776c\ArtOfTest.WebAii.dll' because it is being used by another process.
9/2/2009 9:06:57 AM: Exception source: mscorlib
9/2/2009 9:06:57 AM: at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite)
at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
at CnxTester.IEConnectionTester.RestoreProductionWebAiiDll()
9/2/2009 9:06:57 AM: Analysis done
Okay, following the "assembly being used by another process" thread listed about - http://social.msdn.microsoft.com/Forums/en-US/msbuild/thread/7660c04f-7d3e-4153-b7c4-cef298988d03. Will try some of the suggestions there.
I ran the Connection Tester and received the following for IE:
9/2/2009 9:06:57 AM: Checking ArtOfTest.ShDocVw 1.0 in GAC.
9/2/2009 9:06:57 AM: Checking ArtOfTest.InternetExplorer 1.1 in GAC.
9/2/2009 9:06:57 AM: Error installing analysis WebAii.dll
9/2/2009 9:06:57 AM: The process cannot access the file 'C:\Windows\assembly\GAC_MSIL\ArtOfTest.WebAii\1.1.900.0__4fd5f65be123776c\ArtOfTest.WebAii.dll' because it is being used by another process.
9/2/2009 9:06:57 AM: Exception source: mscorlib
9/2/2009 9:06:57 AM: at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite)
at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
at CnxTester.ConnectionTester.InstallAnalysisWebAiiDll()
9/2/2009 9:06:57 AM: IE was closed.
9/2/2009 9:06:57 AM: Restoring production copy of ArtOfTest.WebAii.dll to GAC
9/2/2009 9:06:57 AM: Error restoring production copy of ArtOfTest.WebAii.dll to GAC
9/2/2009 9:06:57 AM: The process cannot access the file 'C:\Windows\assembly\GAC_MSIL\ArtOfTest.WebAii\1.1.900.0__4fd5f65be123776c\ArtOfTest.WebAii.dll' because it is being used by another process.
9/2/2009 9:06:57 AM: Exception source: mscorlib
9/2/2009 9:06:57 AM: at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite)
at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
at CnxTester.IEConnectionTester.RestoreProductionWebAiiDll()
9/2/2009 9:06:57 AM: Analysis done
Okay, following the "assembly being used by another process" thread listed about - http://social.msdn.microsoft.com/Forums/en-US/msbuild/thread/7660c04f-7d3e-4153-b7c4-cef298988d03. Will try some of the suggestions there.
0
Hello Woody,
I'm stepping in for my Konstatin to assist with your IE connection problems.
The error the tool is displaying, "... is being used by another process", means that another program is running and using the ArtOfTest.WebAii.dll file from the GAC at the time you ran our diagnostic tool (it's still new and we're working out the kinks of how this tool works). Mostly likely you have either Firefox or Visual Studio running at the time you ran the tool. Please close all Firefox and Visual Studio windows then try running the diagnostic tool again.
Thanks,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
I'm stepping in for my Konstatin to assist with your IE connection problems.
The error the tool is displaying, "... is being used by another process", means that another program is running and using the ArtOfTest.WebAii.dll file from the GAC at the time you ran our diagnostic tool (it's still new and we're working out the kinks of how this tool works). Mostly likely you have either Firefox or Visual Studio running at the time you ran the tool. Please close all Firefox and Visual Studio windows then try running the diagnostic tool again.
Thanks,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Woody
Top achievements
Rank 1
answered on 02 Sep 2009, 02:41 PM
Hey Cody,
Thanks for the rapid response. I closed everything and ran the file. Here are my results:
9/2/2009 10:05:51 AM: Analysis started
9/2/2009 10:05:51 AM: IE was closed.
9/2/2009 10:05:51 AM: Checking WebAii 1.1 installation files.
9/2/2009 10:05:51 AM: ArtOfTest.WebAii.dll is dated 2009-7-22
9/2/2009 10:05:51 AM: ArtOfTest.WebAii.dll size is 341504
9/2/2009 10:05:51 AM: Checking ArtOfTest.WebAii 1.1 in GAC.
9/2/2009 10:05:51 AM: Detected OS: Windows Server 2008 x32 Microsoft Windows NT 6.0.6001 Service Pack 1 Product type: 3
9/2/2009 10:05:51 AM: .NET framework 2.0.50727.3053 SP 2 installed
9/2/2009 10:05:51 AM: .NET framework 3.0.30618.00 SP 2 installed
9/2/2009 10:05:51 AM: .NET framework 3.5.30729.01 SP 1 installed
9/2/2009 10:05:51 AM: Process running: TSVNCache
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: hkcmd
9/2/2009 10:05:51 AM: Process running: OWSTIMER
9/2/2009 10:05:51 AM: Process running: ccApp
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: wuauclt
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: mssearch
9/2/2009 10:05:51 AM: Process running: AESTSr64
9/2/2009 10:05:51 AM: Process running: audiodg
9/2/2009 10:05:51 AM: Process running: RDVCHG
9/2/2009 10:05:51 AM: Process running: csrss
9/2/2009 10:05:51 AM: Process running: sqlservr
9/2/2009 10:05:51 AM: Process running: mssdmn
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: sqlservr
9/2/2009 10:05:51 AM: Process running: Microsoft.Office.Server.Conversions.Launcher
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Spark
9/2/2009 10:05:52 AM: Process running: taskeng
9/2/2009 10:05:52 AM: Process running: dwm
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: BCMWLTRY
9/2/2009 10:05:52 AM: Process running: Msmsgs
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: igfxtray
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: SmcGui
9/2/2009 10:05:52 AM: Process running: spoolsv
9/2/2009 10:05:52 AM: Process running: lsm
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: WLTRYSVC
9/2/2009 10:05:52 AM: Process running: igfxpers
9/2/2009 10:05:52 AM: Process running: SLsvc
9/2/2009 10:05:52 AM: Process running: lsass
9/2/2009 10:05:52 AM: Process running: Smc
9/2/2009 10:05:52 AM: Process running: sqlwriter
9/2/2009 10:05:52 AM: Process running: jusched
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Rtvscan
9/2/2009 10:05:52 AM: Process running: wlanext
9/2/2009 10:05:52 AM: Process running: services
9/2/2009 10:05:52 AM: Process running: smss
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: msdtc
9/2/2009 10:05:52 AM: Process running: ccSvcHst
9/2/2009 10:05:52 AM: Process running: igfxsrvc
9/2/2009 10:05:52 AM: Process running: WmiPrvSE
9/2/2009 10:05:52 AM: Process running: ProtectionUtilSurrogate
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: sttray64
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: CnxTester
9/2/2009 10:05:52 AM: Process running: inetinfo
9/2/2009 10:05:52 AM: Process running: winlogon
9/2/2009 10:05:52 AM: Process running: w3wp
9/2/2009 10:05:52 AM: Process running: wininit
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: taskeng
9/2/2009 10:05:52 AM: Process running: WLTRAY
9/2/2009 10:05:52 AM: Process running: WSSADMIN
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Microsoft.Office.Server.Conversions.LoadBalancer
9/2/2009 10:05:52 AM: Process running: wsstracing
9/2/2009 10:05:52 AM: Process running: csrss
9/2/2009 10:05:52 AM: Process running: explorer
9/2/2009 10:05:52 AM: Process running: mssearch
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: System
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Idle
9/2/2009 10:05:52 AM: Checking ArtOfTest.ShDocVw 1.0 in GAC.
9/2/2009 10:05:52 AM: Checking ArtOfTest.InternetExplorer 1.1 in GAC.
9/2/2009 10:05:52 AM: WebAii 1.1 Test Execution Extension is disabled. Enabling the extension.
9/2/2009 10:05:52 AM: Replacing GAC'ed WebAii.dll with analysis version
9/2/2009 10:05:52 AM: Starting connection server
9/2/2009 10:05:52 AM: About to start Internet Explorer
9/2/2009 10:05:52 AM: Started Internet Explorer process
9/2/2009 10:05:52 AM: Waiting for Internet Explorer to start running
9/2/2009 10:05:52 AM: Internet Explorer started
9/2/2009 10:05:52 AM: Waiting for browser connection to server
9/2/2009 10:05:54 AM: Browser connected. Elapsed time: 1984.1984 milliseconds
9/2/2009 10:05:54 AM: Waiting for IE to be closed.
Thanks for the rapid response. I closed everything and ran the file. Here are my results:
9/2/2009 10:05:51 AM: Analysis started
9/2/2009 10:05:51 AM: IE was closed.
9/2/2009 10:05:51 AM: Checking WebAii 1.1 installation files.
9/2/2009 10:05:51 AM: ArtOfTest.WebAii.dll is dated 2009-7-22
9/2/2009 10:05:51 AM: ArtOfTest.WebAii.dll size is 341504
9/2/2009 10:05:51 AM: Checking ArtOfTest.WebAii 1.1 in GAC.
9/2/2009 10:05:51 AM: Detected OS: Windows Server 2008 x32 Microsoft Windows NT 6.0.6001 Service Pack 1 Product type: 3
9/2/2009 10:05:51 AM: .NET framework 2.0.50727.3053 SP 2 installed
9/2/2009 10:05:51 AM: .NET framework 3.0.30618.00 SP 2 installed
9/2/2009 10:05:51 AM: .NET framework 3.5.30729.01 SP 1 installed
9/2/2009 10:05:51 AM: Process running: TSVNCache
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: hkcmd
9/2/2009 10:05:51 AM: Process running: OWSTIMER
9/2/2009 10:05:51 AM: Process running: ccApp
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: wuauclt
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: mssearch
9/2/2009 10:05:51 AM: Process running: AESTSr64
9/2/2009 10:05:51 AM: Process running: audiodg
9/2/2009 10:05:51 AM: Process running: RDVCHG
9/2/2009 10:05:51 AM: Process running: csrss
9/2/2009 10:05:51 AM: Process running: sqlservr
9/2/2009 10:05:51 AM: Process running: mssdmn
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:51 AM: Process running: sqlservr
9/2/2009 10:05:51 AM: Process running: Microsoft.Office.Server.Conversions.Launcher
9/2/2009 10:05:51 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Spark
9/2/2009 10:05:52 AM: Process running: taskeng
9/2/2009 10:05:52 AM: Process running: dwm
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: BCMWLTRY
9/2/2009 10:05:52 AM: Process running: Msmsgs
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: igfxtray
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: SmcGui
9/2/2009 10:05:52 AM: Process running: spoolsv
9/2/2009 10:05:52 AM: Process running: lsm
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: WLTRYSVC
9/2/2009 10:05:52 AM: Process running: igfxpers
9/2/2009 10:05:52 AM: Process running: SLsvc
9/2/2009 10:05:52 AM: Process running: lsass
9/2/2009 10:05:52 AM: Process running: Smc
9/2/2009 10:05:52 AM: Process running: sqlwriter
9/2/2009 10:05:52 AM: Process running: jusched
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Rtvscan
9/2/2009 10:05:52 AM: Process running: wlanext
9/2/2009 10:05:52 AM: Process running: services
9/2/2009 10:05:52 AM: Process running: smss
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: msdtc
9/2/2009 10:05:52 AM: Process running: ccSvcHst
9/2/2009 10:05:52 AM: Process running: igfxsrvc
9/2/2009 10:05:52 AM: Process running: WmiPrvSE
9/2/2009 10:05:52 AM: Process running: ProtectionUtilSurrogate
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: sttray64
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: CnxTester
9/2/2009 10:05:52 AM: Process running: inetinfo
9/2/2009 10:05:52 AM: Process running: winlogon
9/2/2009 10:05:52 AM: Process running: w3wp
9/2/2009 10:05:52 AM: Process running: wininit
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: taskeng
9/2/2009 10:05:52 AM: Process running: WLTRAY
9/2/2009 10:05:52 AM: Process running: WSSADMIN
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Microsoft.Office.Server.Conversions.LoadBalancer
9/2/2009 10:05:52 AM: Process running: wsstracing
9/2/2009 10:05:52 AM: Process running: csrss
9/2/2009 10:05:52 AM: Process running: explorer
9/2/2009 10:05:52 AM: Process running: mssearch
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: System
9/2/2009 10:05:52 AM: Process running: svchost
9/2/2009 10:05:52 AM: Process running: Idle
9/2/2009 10:05:52 AM: Checking ArtOfTest.ShDocVw 1.0 in GAC.
9/2/2009 10:05:52 AM: Checking ArtOfTest.InternetExplorer 1.1 in GAC.
9/2/2009 10:05:52 AM: WebAii 1.1 Test Execution Extension is disabled. Enabling the extension.
9/2/2009 10:05:52 AM: Replacing GAC'ed WebAii.dll with analysis version
9/2/2009 10:05:52 AM: Starting connection server
9/2/2009 10:05:52 AM: About to start Internet Explorer
9/2/2009 10:05:52 AM: Started Internet Explorer process
9/2/2009 10:05:52 AM: Waiting for Internet Explorer to start running
9/2/2009 10:05:52 AM: Internet Explorer started
9/2/2009 10:05:52 AM: Waiting for browser connection to server
9/2/2009 10:05:54 AM: Browser connected. Elapsed time: 1984.1984 milliseconds
9/2/2009 10:05:54 AM: Waiting for IE to be closed.
0
Hi Woody,
Those results are excellent! It's nearly 100% passed diagnostics.
The tool is still a bit rough around the edges (it's still brand spanking new). In the last line of the log you see "Waiting for IE to be closed". The tool was supposed to automatically close IE but for some reason failed to do that (it's a problem with the tool that I'm still working on). Please run the tool again, but this time manually close IE using the big red X in the upper right corner when you see that line appear in the log. The tool has a couple more diagnostic steps after this point that I really want to see.
Thanks,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Those results are excellent! It's nearly 100% passed diagnostics.
The tool is still a bit rough around the edges (it's still brand spanking new). In the last line of the log you see "Waiting for IE to be closed". The tool was supposed to automatically close IE but for some reason failed to do that (it's a problem with the tool that I'm still working on). Please run the tool again, but this time manually close IE using the big red X in the upper right corner when you see that line appear in the log. The tool has a couple more diagnostic steps after this point that I really want to see.
Thanks,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Woody
Top achievements
Rank 1
answered on 02 Sep 2009, 04:07 PM
Cody,
Here is the remaining diagnostic steps -
9/2/2009 12:06:09 PM: IE was closed.
9/2/2009 12:06:09 PM: Restoring production copy of ArtOfTest.WebAii.dll to GAC
9/2/2009 12:06:09 PM: Trying new IE connection with production WebAii.dll
9/2/2009 12:06:09 PM: Manager started.
9/2/2009 12:06:13 PM: Internet Explorer connection successful
9/2/2009 12:06:13 PM: Analysis done
Another thing - I realize now that my "Recorder" button is not available when I am on the "WebAiiTest.aii" tab in VS 2008. Assume that I need to initiate the Design Canvas - read the guide and it states that the button should be there.
Woody
Here is the remaining diagnostic steps -
9/2/2009 12:06:09 PM: IE was closed.
9/2/2009 12:06:09 PM: Restoring production copy of ArtOfTest.WebAii.dll to GAC
9/2/2009 12:06:09 PM: Trying new IE connection with production WebAii.dll
9/2/2009 12:06:09 PM: Manager started.
9/2/2009 12:06:13 PM: Internet Explorer connection successful
9/2/2009 12:06:13 PM: Analysis done
Another thing - I realize now that my "Recorder" button is not available when I am on the "WebAiiTest.aii" tab in VS 2008. Assume that I need to initiate the Design Canvas - read the guide and it states that the button should be there.
Woody
0
Hello Woody,
Those diagnostic results are perfect! This is very good news. It tells me that the only trouble you have left is getting things to work with Design Canvas.
It is possible that our Visual Studio extension has been disabled by Visual Studio. To re-enable it:
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Those diagnostic results are perfect! This is very good news. It tells me that the only trouble you have left is getting things to work with Design Canvas.
It is possible that our Visual Studio extension has been disabled by Visual Studio. To re-enable it:
- Open a command prompt
- Change to your Visual Studio IDE folder... the default location is C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE.
- Run "devenv /ResetSkipPkgs"
This will re-enable any previously disabled Visual Studio extensions. The Record button should appear now and things should work normally.
All the best,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

Woody
Top achievements
Rank 1
answered on 02 Sep 2009, 09:12 PM
Cody,
Almost home. I went to the specified directory - only to find the command not available. The directory contains the following files:
rdbgwiz.exe
Remote Debugger (directory)
vsdiag_regwcf.exe
vsdiag_regwcf.exe.config
WDE.dll
XML (directory)
the devenv /ResetSkipPkgs returns
'devenv' is not recognized as an internal or external command, operable program or batch file.
Almost home. I went to the specified directory - only to find the command not available. The directory contains the following files:
rdbgwiz.exe
Remote Debugger (directory)
vsdiag_regwcf.exe
vsdiag_regwcf.exe.config
WDE.dll
XML (directory)
the devenv /ResetSkipPkgs returns
'devenv' is not recognized as an internal or external command, operable program or batch file.
0
Hello Woody,
I see. The directory I pointed you to is the default installation folder for Visual Studio 2008 Team Edition. Yours must be in a different location. What version of VS are you running?
You'll need to locate where devenv.exe is located and run that command from that location.
Best wishes,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
I see. The directory I pointed you to is the default installation folder for Visual Studio 2008 Team Edition. Yours must be in a different location. What version of VS are you running?
You'll need to locate where devenv.exe is located and run that command from that location.
Best wishes,
Cody
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.