我正在尝试使用web.config连接字符串连接远程SQL
我得到下面的错误,不确定我做错了什么,尝试了所有选项,如TCP 1433等。
The network path was not found
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.
我是断断续续地得到这个异常。我认为,当存在一个并发请求时,就会发生这样的情况:同一个资源id (/entities/123)具有确切的有效负载(有效载荷没有变化)。但有趣的是,第一个是成功,第二个是失败。
Sprint引导:1.5.6
API客户端: RestTemplate
Java版本: jdk 1.8
org.springframework.web.client.ResourceAccessException: I/O error on PUT request for "<somedomain>": Unexpected end of file from
我已经编写了以下处理程序类,用于从数据库中读取图像并将其显示在我的网页中:
<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Configuration;
using System.Data.SqlClient;
using System.Web;
public class Handler : IHttpHandler, System.Web.SessionState.IRequiresSessionState
{
SqlConnecti