|
|
 |
| ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Basics section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

April 11th, 2009, 12:17 PM
|
|
Authorized User
|
|
Join Date: Jul 2007
Location: Delhi, Delhi, India.
Posts: 24
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
Remote Connection Error: Named Pipes Provider error
Hello Friends
Error Desciption:
An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
Error says problem in remote connection...I have checked dozen of posts of net, giving remedies of remote connection, which is not helping my cause. I have followed each and every step of remote connection, the connection is already enabled. But still the problem persists. Friends please help. I have to submit my major project, all was done until this problem happened. Please solve my problem urgently, please. Some posts say there is a problem in connection string.
Here is the code:
con = new SqlConnection("data source=CR32; trusted_connection=yes; database=credit_scoring"); }
connection obj = new connection(); obj.cmd = new SqlCommand("proclogin",obj.con); obj.cmd.CommandType = CommandType.StoredProcedure; obj.cmd.Parameters.AddWithValue("acc",acc_no); obj.cmd.Parameters.AddWithValue("pass",pass); SqlParameter sp = new SqlParameter(); sp.ParameterName = "@count"; sp.DbType = DbType.Int32; sp.Direction = ParameterDirection.Output; obj.cmd.Parameters.Add(sp); obj.cmd.ExecuteNonQuery(); int flag = Convert.ToInt32(sp.Value); Friends I have made a dll file and calling the class of this file to use the above two functions. I think the problem is in datasource, please tell me the appropriate remedy. I have tried of setting datasource as local, but still the problem persists.
|

April 11th, 2009, 02:07 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Location: Capital Federal, , Argentina.
Posts: 1,994
Thanks: 5
Thanked 37 Times in 36 Posts
|
|
Please don't cross post
__________________
HTH
Gonzalo
================================================== =========
Read this if you want to know how to get a correct reply for your question.
(Took that from Doug signature and he Took that from Peter profile)
================================================== =========
My programs achieved a new certification :
WORKS ON MY MACHINE
================================================== =========
I know that CVS was evil, and now i got the proof.
================================================== =========
|
|
The Following User Says Thank You to gbianchi For This Useful Post:
|
|

April 11th, 2009, 03:36 PM
|
|
Authorized User
|
|
Join Date: Jul 2007
Location: Delhi, Delhi, India.
Posts: 24
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
Thanks Sir. Please solve my query, I will remember of not cross posting in future.
|

April 11th, 2009, 06:11 PM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Location: Capital Federal, , Argentina.
Posts: 1,994
Thanks: 5
Thanked 37 Times in 36 Posts
|
|
I will not "solve" it. I will try to help solve it. Anyway, I already said something on the other thread.
__________________
HTH
Gonzalo
================================================== =========
Read this if you want to know how to get a correct reply for your question.
(Took that from Doug signature and he Took that from Peter profile)
================================================== =========
My programs achieved a new certification :
WORKS ON MY MACHINE
================================================== =========
I know that CVS was evil, and now i got the proof.
================================================== =========
|

April 12th, 2009, 02:36 AM
|
|
Authorized User
|
|
Join Date: Jul 2007
Location: Delhi, Delhi, India.
Posts: 24
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
I have seen that thread, the link mentioned doesn't exist. I have configured remote connection on my PC, but still the problem persists.
|

April 12th, 2009, 10:51 AM
|
|
Friend of Wrox
|
|
Join Date: Jun 2003
Location: Capital Federal, , Argentina.
Posts: 1,994
Thanks: 5
Thanked 37 Times in 36 Posts
|
|
My question was about this code:
connection obj = new connection(); obj.con.Open();
This can't be working, there is no connection associated to obj.
__________________
HTH
Gonzalo
================================================== =========
Read this if you want to know how to get a correct reply for your question.
(Took that from Doug signature and he Took that from Peter profile)
================================================== =========
My programs achieved a new certification :
WORKS ON MY MACHINE
================================================== =========
I know that CVS was evil, and now i got the proof.
================================================== =========
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |