HOME > .NET Framework > Forum > ในเครื่องรันโปรแกรมได้ พอ อัพขึ้น server มันรันไม่ได้ครับ มันขึ้น "An existing connection was forcibly closed by the remote host"
ในเครื่องรันโปรแกรมได้ พอ อัพขึ้น server มันรันไม่ได้ครับ มันขึ้น "An existing connection was forcibly closed by the remote host"
ผมเขียน Web Service ใช้ ASP.net + ใช้ภาษา VB พอรันในเครื่องมันรันได้ปกติครับ พออัพขั้น Server แล้วมันจะขึ้น Error ดังนี้
"
An existing connection was forcibly closed by the remote host
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ComponentModel.Win32Exception: An existing connection was forcibly closed by the remote host
"
ป.ล.
ผมเขียน Web Service ใช้ Database MSSQL2008 ไม่มีปัญหาอะไรครับ รับได้ทั้งเครื่องของตนเองและ Server ได้ปกติกครับ
พอผมเพิ่มการเชื่อมต่อจาก Web Service ใช้Database MSSQL 7 มันจะขึ้น error เลยครับ (แต่ Page ที่เชื่อมกับ MSSQL2008 ก็ยังใช้การได้ปกติดครับ)
Public strConn As String = WebConfigurationManager.ConnectionStrings("DB1").ConnectionString
Dim Conn As New SqlConnection(strConn)
.
.
With Conn
If .State = ConnectionState.Open Then .Close()
.ConnectionString = strConn
.Open() <----------------------- (รันบน Server มัน Error บรรทัดนี้ครับ)
End With