|
I set up the application, but get the error "Server Not responding. Please try again." I successfully installed everything and can access the database on my local SQL Server. SQL Server authentication is enabled. What did I miss? |
| MigrationUser 1 Friday, August 13, 2004 2:52 PM |
Have you deleted IssueDetails.bin, and Settings.bin files? I noticed sometimes if these files goes out of sync, "Server Not responding. Please try again" show up. |
| MigrationUser 1 Thursday, August 26, 2004 4:59 PM |
Hi, I have the same problem , and i don't find the files *.bin which are called in the files *.config. |
| MigrationUser 1 Friday, August 27, 2004 8:46 AM |
oh ok. these files are created at first time you run your app. If you haven't connected before then, more like sqlsvr, iis, or your app config problem.
i noticed if you don't set up your sqlsvr authentication to accept both "windows" and "local" you might get this message. in your IIS, do you see "IssueVisionWeb" and "IssueVisionDeployWeb" correctly registered? and as you mentioned, app.config file under IssueVision project has to point to the right .asmx file..
<appSettings> <add key="DataServiceUrl" value="http://xxxxxxx/IssueVisionWeb/IssueVisionServices.asmx"/>
So far that's all I can think of.. I just started to hack this code too, I appriciate if any expert can give us more clues :)
Thanks |
| MigrationUser 1 Friday, August 27, 2004 12:31 PM |
I had this same problem and found that I needed to enabled Mixed Mode Authentication in SQL Server by editing a registry setting. This is documented on MSDN here:
http://support.microsoft.com/default.aspx?scid=kb;en-us;319930#6 |
| MigrationUser 1 Wednesday, September 15, 2004 3:50 PM |
If found the problem and am now able to run IssueVision. Hopefully, this will help others as well. The problem was that although I had the .NET framework 1.1 installed, I did not have ASP.NET registered with my IIS server, or something like that. Below is the solution:
Assuming you have the .net framework (v1.1) installed, check for the following folder: %Windir%\Microsoft.NET\Framework\v1.1.4322 Assuming the directoy exists as per above, run the following program (note the -i switch): %Windir%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i This should solve the problem...
|
| MigrationUser 1 Wednesday, September 15, 2004 5:33 PM |
Yeah, I got bitten by this also.
installation order, IIS then .NET will register all the asp extensions in IIS. But if you do opposite (.NET then IIS), IIS won't know any ASP extensions. |
| MigrationUser 1 Friday, September 17, 2004 6:30 PM |
If you're stumbling on this error at this late date (VS2005, IE7, etc.) you may also have to fix one more thing to get up and running. After registering ASP.NET you may still get the error, but if you browse to http://localhost/IssueVisionWebCS/IssueVisionServices.asmx you may now get Server Error in ... Unrecognized configuration section 'xhtmlConformance'. Probably not the right answer, but if you just comment out Line 78 of Web.config <xhtmlConformance mode="Legacy" /> it will work. |
| Johnny P Thursday, June 29, 2006 11:21 PM |