Hi, I have one question about first debugging(press F5 in VS 2008).
For arachnode program, I installed VS2008, VS2008 SP1 and SQL 2008.
When I debugging this program, I can check this problem.
step1. Reset Database and perform initial setup tasks? <y/n>
I pressed y.
I saw "Resetting Database..." . And wait never end.
This time, I checked Visual Studio output window.
Program make the below message.
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dllA first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dllA first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dllA first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dllA first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dllA first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dllA first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
What is the problem? I want to solve this problem. T_T
Hmm... I am sorry. I am not sure what you have done.
Are you running in debug mode? Try stepping into the code with F11 and see what the actual SQL exception is.
Does this help: http://arachnode.net/forums/p/803/11624.aspx ?
Try NOT resetting the database and letting AN crawl since you already reset the DB in the setup instructions.
(CONSOLE APPEARS TO HANG: http://arachnode.net/forums/p/1383/12795.aspx#12795)
Mike
For best service when you require assistance:
Skype: arachnodedotnet
I met this problem too, and I found that the connectionstrings in the Configuration project is wrong, server="." . You should change this value to your SQL Server name.
I absolutely agree... Your issue is due to incorrect server configuration in your config file and fixing that will definitely resolve this error.
Did you follow the installation instructions?
http://arachnode.net/Content/InstallationInstructions.aspx
What is the stack trace?
Yes, I did follow installation instructions.
I think this line occur problem.
(Program.cs #117) : arachnodeDAO.ExecuteSql("EXEC [dbo].[arachnode_usp_arachnode.net_RESET_DATABASE]");
Set a breakpoint in the exception handler of that function.
> Arachnode.Console.exe!Arachnode.Console.Program.Main() Line 117 C# [Native to Managed Transition] [Managed to Native Transition] mscorlib.dll!System.AppDomain.ExecuteAssembly(string assemblyFile, System.Security.Policy.Evidence assemblySecurity, string[] args) + 0x3a bytes Microsoft.VisualStudio.HostingProcess.Utilities.dll!Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() + 0x2b bytes mscorlib.dll!System.Threading.ThreadHelper.ThreadStart_Context(object state) + 0x66 bytes mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) + 0x6f bytes mscorlib.dll!System.Threading.ThreadHelper.ThreadStart() + 0x44 bytes
It is a Call Stack log.
Stack trace is it right?