Я взял следующий код из руководства, чтобы проверить его, и у меня возникла ошибка, говорящая, что Object reference not set to an instance of an object.
Обратите внимание, что это НЕ мой код, и поэтомупроблема связана с расшифровкой.
public class ProductImageHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
Int32 id;
if (context.Request.QueryString["id"] != null)
id = Convert.ToInt32(context.Request.QueryString["id"]);
else
throw new ArgumentException("No parameter specified");
context.Response.ContentType = "image/jpeg";
Stream strm = GetFromDB(id);
byte[] buffer = new byte[4096];
int byteSeq = strm.Read(buffer, 0, 4096);
while (byteSeq > 0)
{
context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 4096);
}
//context.Response.BinaryWrite(buffer);
}
public Stream GetFromDB(int id)
{
string conn = ConfigurationManager.ConnectionStrings["DB"].ConnectionString;
SqlConnection connection = new SqlConnection(conn);
string sql = "SELECT Image FROM Products WHERE ID = @ID";
SqlCommand cmd = new SqlCommand(sql, connection);
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@ID", id);
connection.Open();
object img = cmd.ExecuteScalar();
try
{
return new MemoryStream((byte[])img);
}
catch
{
return null;
}
finally
{
connection.Close();
}
}
public bool IsReusable
{
get
{
return false;
}
}
}
Ошибка возникает в следующей строке:
int byteSeq = strm.Read(buffer, 0, 4096);
Кто-нибудь имеет какие-либо идеи относительно того, чтопроблема может быть?