From: Rand R. (JIRA) <tr...@fi...> - 2015-09-03 10:00:13
|
Named Instance cannot connect ----------------------------- Key: DNET-627 URL: http://tracker.firebirdsql.org/browse/DNET-627 Project: .NET Data provider Issue Type: Bug Components: ADO.NET Provider Affects Versions: 4.7.0.0 Environment: Win7 - 4.7.0.0 - Firebird 2.5 Reporter: Rand Random Assignee: Jiri Cincura I have installed a named instance with the following command (Notice that before executing this command I already had firebird server installed, so I now have a default instance and a named, access to the default still works fine but it fails to connect to named instance) "C:\Program Files\Firebird\Firebird_2_5\\bin\instsvc" install -name XYZ <-- installs firebird with the named instance "sc" start "FirebirdServerCONNEX" <-- starts the service and now I try to connect to this instance with .NET Provider but it fails with the following exception: Unable to complete network request to host "localhost/CONNEX" Am I doing something wrong or is there a problem? My FbConnectionStringBuilder looks like this: return new FbConnectionStringBuilder { Charset = "UTF8", Database = "C:\Test\foo.fdb", DataSource = "localhost/XYZ", UserID = "SYSDBA", Password = "masterkey", }.ToString(); Hope you can help me out. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://tracker.firebirdsql.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |