
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 03:29 PM
I'm having some problem getting the server to start.. Windows firewall is disabled and I haven't found any other firewall installed on this computer ( not mine ) this is the error message I receive in the errorlog.txt
2008-03-04 13:56:19
System.ArgumentException: Keyword not supported: 'initial
catalog'.
at System.Data.Common.DbConnectionOptions.ParseInternal(Hashtable parsetable, String connectionString, Boolean buildChain, Hashtable synonyms, Boolean firstKey)
at System.Data.Common.DbConnectionOptions..ctor(String connectionString, Hashtable synonyms, Boolean useOdbcRules)
at System.Data.SqlClient.SqlConnectionString..ctor(String connectionString)
at System.Data.SqlClient.SqlConnectionFactory.CreateConnectionOptions(String connectionString, DbConnectionOptions previous)
at System.Data.ProviderBase.DbConnectionFactory.GetConnectionPoolGroup(String connectionString, DbConnectionPoolGroupOptions poolOptions, DbConnectionOptions& userConnectionOptions)
at System.Data.SqlClient.SqlConnection.ConnectionString_Set(String value)
at System.Data.SqlClient.SqlConnection.set_ConnectionString(String value)
at Lansweeper30.starter.startsweeper()
-------------------------------------------------------------------------
this first thing I'm curious about is the Initial Catalog command being invalid.. and second.. anyone got a solution to this?
Any help appreciated, since I'm just here for till friday it would be good if it came quickly 😉
/Mickwald
EDIT: I've been checking around and I've tried to check if the port (9524) is open, which it seems not to be, but since I'm just doing the tests locally, I wonder if it's really required to be open..
- Labels:
-
Archive

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 05:50 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 05:48 PM
this is how it looks:
Localcomputer
Web Sites
Default Website
ISSHelp
Printers
LanSweeper
aspnet_client
I've made the changes in the Web.config too..I get an error 403 Forbidden..(requires me to login, but there's no question about logging in.. can't figure what's wrong..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 05:30 PM
If you create a virtual directory "lansweeper" then it will be accessible using http://localhost/lansweeper

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 05:27 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 04:50 PM
or command line : %SystemRoot%\system32\inetsrv\iis.msc
(You don't need to delete the default website, you can also create a new virtual directory)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 04:31 PM
I'm wondering if I've missed a step (I've installed the asp.net and I've got .net 3.0 installed, does that cause a conflict?) or is there some service that needs to be started?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 03:46 PM
<add key="ConnectionString" value="Persist Security Info=False;Data Source=XXXX\SQLEXPRESS;Initial Catalog=Lansweeper;UserID=lssqluser;Password=abc123" />
remove the line break after "initial" (if any)
"UserID" should be "User ID" (with a space)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 03:50 PM
Lansweeper wrote:<add key="ConnectionString" value="Persist Security Info=False;Data Source=XXXX\SQLEXPRESS;Initial Catalog=Lansweeper;UserID=lssqluser;Password=abc123" />
remove the line break after "initial" (if any)
"UserID" should be "User ID" (with a space)
Thanks, that worked.. ( only the User ID part that needed correcting..)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 03:41 PM
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="ConnectionString" value="Persist Security Info=False;Data Source=XXXX\SQLEXPRESS;Initial Catalog=Lansweeper;UserID=lssqluser;Password=abc123" />
<add key="ConcurrentThreads" value="10" />
<add key="ListenPort" value="9524" />
</appSettings>
</configuration>
hope that might get me some help..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2008 03:32 PM
