ปัญหา: ฉันได้รับข้อยกเว้นนี้ "การเชื่อมต่อที่อยู่ระหว่างการปิด: ข้อผิดพลาดที่ไม่เห็นเกิดขึ้นในการส่ง" ในบันทึกของฉันและเป็นการทำลายการรวม OEM ของเรากับระบบการตลาดทางอีเมลในเวลาสุ่มซึ่งแตกต่างกันไปจาก [1 ชั่วโมง - 4 ชั่วโมง]
เว็บไซต์ของฉันโฮสต์บน Windows Server 2008 R2 ที่มี IIS 7.5.7600 เว็บไซต์นี้มีส่วนประกอบ OEM จำนวนมากและแดชบอร์ดที่ครอบคลุม ทุกอย่างทำงานได้ดีกับองค์ประกอบอื่น ๆ ทั้งหมดของเว็บไซต์ยกเว้นองค์ประกอบการตลาดทางอีเมลของเราซึ่งเราใช้เป็นโซลูชัน iframe ภายในแดชบอร์ดของเรา วิธีการทำงานคือฉันส่ง httpWebRequestobject พร้อมข้อมูลประจำตัวทั้งหมดและฉันได้รับ url กลับมาซึ่งฉันใส่ใน iframe และใช้งานได้ แต่ใช้งานได้เพียงบางครั้ง [1 ชั่วโมง - 4 ชั่วโมง] จากนั้นฉันได้รับข้อยกเว้นด้านล่าง "การเชื่อมต่อที่อยู่ระหว่างการปิดถูกปิด: ข้อผิดพลาดที่ไม่ได้รับการส่งมา" และแม้ว่าระบบจะพยายามรับ URL จาก httpWebRequest ก็ตาม ล้มเหลวด้วยข้อยกเว้นเดียวกัน วิธีเดียวที่จะทำให้กลับมาใช้งานได้อีกครั้งคือการรีไซเคิลพูลแอปพลิเคชันหรือสิ่งที่แก้ไขใน web.config
พยายามตัวเลือกแล้ว
เพิ่มอย่างชัดเจน keep-alive = false
keep-alive = true
เพิ่มเวลานอก: <httpRuntime maxRequestLength="2097151" executionTimeout="9999999" enable="true" requestValidationMode="2.0" />
ฉันได้อัปโหลดหน้านี้ไปยังเว็บไซต์ที่ไม่ใช่ SSL เพื่อตรวจสอบว่าใบรับรอง SSL บนเซิร์ฟเวอร์ที่ใช้งานจริงของเราทำให้การเชื่อมต่อขาดหายไปหรือไม่
ทุกทิศทางไปสู่ความละเอียดได้รับการชื่นชมอย่างมาก
รหัส:
Public Function CreateHttpRequestJson(ByVal url) As String
Try
Dim result As String = String.Empty
Dim httpWebRequest = DirectCast(WebRequest.Create("https://api.xxxxxxxxxxx.com/api/v3/externalsession.json"), HttpWebRequest)
httpWebRequest.ContentType = "text/json"
httpWebRequest.Method = "PUT"
httpWebRequest.ContentType = "application/x-www-form-urlencoded"
httpWebRequest.KeepAlive = False
'ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3
'TODO change the integratorID to the serviceproviders account Id, useremail
Using streamWriter = New StreamWriter(httpWebRequest.GetRequestStream())
Dim json As String = New JavaScriptSerializer().Serialize(New With { _
Key .Email = useremail, _
Key .Chrome = "None", _
Key .Url = url, _
Key .IntegratorID = userIntegratorID, _
Key .ClientID = clientIdGlobal _
})
'TODO move it to the web.config, Following API Key is holonis accounts API Key
SetBasicAuthHeader(httpWebRequest, holonisApiKey, "")
streamWriter.Write(json)
streamWriter.Flush()
streamWriter.Close()
Dim httpResponse = DirectCast(httpWebRequest.GetResponse(), HttpWebResponse)
Using streamReader = New StreamReader(httpResponse.GetResponseStream())
result = streamReader.ReadToEnd()
result = result.Split(New [Char]() {":"})(2)
result = "https:" & result.Substring(0, result.Length - 2)
End Using
End Using
Me.midFrame.Attributes("src") = result
Catch ex As Exception
objLog.WriteLog("Error:" & ex.Message)
If (ex.Message.ToString().Contains("Invalid Email")) Then
'TODO Show message on UI
ElseIf (ex.Message.ToString().Contains("Email Taken")) Then
'TODO Show message on UI
ElseIf (ex.Message.ToString().Contains("Invalid Access Level")) Then
'TODO Show message on UI
ElseIf (ex.Message.ToString().Contains("Unsafe Password")) Then
'TODO Show message on UI
ElseIf (ex.Message.ToString().Contains("Invalid Password")) Then
'TODO Show message on UI
ElseIf (ex.Message.ToString().Contains("Empty Person Name")) Then
'TODO Show message on UI
End If
End Try
End Function
Public Sub SetBasicAuthHeader(ByVal request As WebRequest, ByVal userName As [String], ByVal userPassword As [String])
Dim authInfo As String = Convert.ToString(userName) & ":" & Convert.ToString(userPassword)
authInfo = Convert.ToBase64String(Encoding.[Default].GetBytes(authInfo))
request.Headers("Authorization") = "Basic " & authInfo
End Sub`