Web Forms :: Out Of Memory Exception When Retrieve Video From Database According To Id And Open It

Jun 28, 2010

i am using this code to retreive video from database according to id it works fine but when i open the sam page in two browser window i get Out of memory exception. how i can get rid of this exception.

EDataContext eld = new EDataContext();
var query = (from item in eld.Videos
where item.VideoID == VideoID
select item.Videodata);
foreach (System.Data.Linq.Binary arr in query)
{
context.Response.BinaryWrite(arr.ToArray());
}

View 4 Replies


Similar Messages:

Web Forms ::store Youtube Or Any Other Video URL Or Link In Database And Retrieve From Database??

Nov 6, 2010

how can i store youtube or any other video URL or link in database and retrive from database
and what control i use in this in C sharp

View 5 Replies

Web Forms :: How To Upload And Retrieve Video From Database

May 7, 2015

how to upload and retrieve video in c#.net using asp.net 

View 1 Replies

Web Forms :: Retrieve And Display Single Video From Database Using ID In QueryString

May 7, 2015

In the following code, I need to modify the Handler so that the records or results that display are based on a QueryString value. Currently all of the records in the table display on the page but I want records to display based on the passing a querystring value based on the field, id. I have tried to alter the code without much success.

Public Class FileVB : Implements IHttpHandler

Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
Dim id As Integer = Integer.Parse(context.Request.QueryString("id"))
Dim bytes As Byte()
Dim contentType As String
Dim strConnString As String = ConfigurationManager.ConnectionStrings("fitnesConnectionString").ConnectionString
Dim name As String
Using con As New SqlConnection(strConnString)
Using cmd As New SqlCommand()

[CODE]..

View 1 Replies

Web Forms :: Out Of Memory Exception On Remote Server

Oct 18, 2010

I'm not sure why but on random occassions after I have added an update to my site via ftp and then try to access the site through the browser I get an "out of memory" exception. But there are no infinite loops or problems like that. Then after some time it will then work (I assume the web hosts restart IIS or something) and all is fine again. Server Error in '/' Application. Exception of type 'System.OutOfMemoryException' was thrown. 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.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
Source Error:

[Code]....

Stack Trace:

[Code]....

View 3 Replies

Web Forms :: SQLBulkCopy Out Of Memory Exception For Larger Files

Dec 23, 2015

I'm using SqlBulkCopy to load large file into databse, but a file bigger than 200k give me an error outofmemoryexception. Is there any way to append data into database from a file splitted in two. the first time I can use SqlBulkCopy, but to append second file into my table.

View 1 Replies

Web Forms :: Out Of Memory Exception On Writing Large Files To Response

May 7, 2010

I have to large files in a database which users can download. The user clicks a link and the following code runs:

[Code]....

View 1 Replies

Forms Data Controls :: 2.0 - System.out Of Memory Exception Error When Access The Web Application

Apr 16, 2010

I am working on a ASP.NET 2.0 application. I get the following exception sometimes when i access the web application. I believe it is related to the server where the application is hosted? Exception of type 'System.OutOfMemoryException' was thrown. 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.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:

[OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.]
System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +0
System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +43
System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +127
System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +142
System.Reflection.Assembly.Load(String assemblyString) +28
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +46
[ConfigurationErrorsException: Exception of type 'System.OutOfMemoryException' was thrown.]
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +613
System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +203
System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +105
System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +178
System.Web.Compilation.BuildProvidersCompiler..ctor(VirtualPath configPath, Boolean supportLocalization, String outputAssemblyName) +54
System.Web.Compilation.ApplicationBuildProvider.GetGlobalAsaxBuildResult(Boolean isPrecompiledApp) +227
System.Web.Compilation.BuildManager.CompileGlobalAsax() +52
System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +337
[HttpException (0x80004005): Exception of type 'System.OutOfMemoryException' was thrown.]
System.Web.Compilation.BuildManager.ReportTopLevelCompilationException() +58
System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +512
System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters) +729
[HttpException (0x80004005): Exception of type 'System.OutOfMemoryException' was thrown.]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +8890735
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +85
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +259

What can be the reason for this error and what to check on the code or the server?

View 8 Replies

Databases :: Isolate An Out Of Memory Exception?

Nov 17, 2010

How to isolate an out of memory exception

View 2 Replies

Web Forms :: Uploading & Retrieve Video File From Sql Server

Aug 7, 2010

i am doing an task about uploading & retrive video file in asp.net. first of all tell me How Can we Upload Video files In sql server? then second one is How Can we displays that uploaded video files in my web page?

View 3 Replies

VS 2008 Read XML Returning Out Of Memory Exception?

Mar 11, 2011

I have a large XML file that contains invalid hex characters. I'm trying to test a function that removes invalid characters from the XML file but it must be stored in a string. When I try to read the XML file into a string I receive an out of memory exception. The file is 149MB. Can anyone tell me if there is another way to do this?

Code:

[code]....

View 6 Replies

Ajax - Changing Culture - To Get An Out Of Memory Exception?

Jan 21, 2010

I have a strange problem with ASP.NET. Several sites on my web server run the exact same application. The application has a page that contains a Tab Container from the Ajax Control Toolkit which in itself contains a Calendar control.

If I set my culture in the web.config to be:

<globalization culture="en-GB" uiCulture="en-GB" />

Then everything works fine. However, by changing this to:

<globalization culture="en-US" uiCulture="en-US" />

When attempting to load the page I get an out of memory exception and w3wp.exe seems to use all available memory.

View 1 Replies

C# - Getting An Out Of Memory Exception With System.Threading.ReaderWriterCount

Nov 1, 2010

I've got an asp.net application, it's running on DotNetNuke, under load we get the occasional out of memory exception. I've got a dump loaded it into windbg. the end of !dumpheap -stat is

1192a588 88684 2128416 AutoMapper.MappingEngine
79333594 9482 2266348 System.Byte[]
134b0034 88695 2838240 System.EventHandler`1[[AutoMapper.TypeMapCreatedEventArgs, AutoMapper]]
13d8703c 88684 4611568 System.Collections.Generic.Dictionary`2[[Castle.DynamicProxy.Generators.CacheKey, AutoMapper],[System.Type, mscorlib]]
13d86dc8 88684 4611568 Castle.DynamicProxy.ModuleScope
13d865bc 88684 4611568 System.Collections.Generic.Dictionary`2[[AutoMapper.Internal.TypePair, AutoMapper],[AutoMapper.IObjectMapper, AutoMapper]]
79327434 88703 4612556 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.Int32, mscorlib]]
6c38e4e4 88684 5675776 System.Threading.ReaderWriterLockSlim
79330b24 87736 6458012 System.String
000d9c88 129 24186884 Free
793042f4 221202 101117016 System.Object[]
6c38e4a0 22703104 544874496 System.Threading.ReaderWriterCount

I can't find much information on the System.Threading.ReaderWriterCount, as it seems to be the problem. What is the likely cause? Or failing that what's the best next step to work that out? Based on the pointer from the given answer I had a look at ReaderWriterLockSlim. I wasn't using it directly, but I saw that it had 88684 instances, digging deeper I saw quite a few classes with that number of instances, pointing to AutoMapper.MappingEngine. This should be a singleton, so I've had a look at where it's being created. I suspect that it's the DI container and have made some changes around that to see if it helps

View 1 Replies

C# - Out Of Memory Exception While Writing 300dpi Images

Jan 19, 2011

I have a requirement that to create a image with 300DPI, but during the composition of image, like addding the resources (font, images) I am getting out of memory exception.

using (Bitmap pg = new Bitmap(GetPixelsFromInches(float.Parse(pageWidth), dpi, actualDpi), GetPixelsFromInches(float.Parse(pageHeight), dpi, actualDpi)))
{
pg.SetResolution(float.Parse(dpi), float.Parse(dpi));
Graphics gr = Graphics.FromImage(pg);
gr.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
System.Drawing.Rectangle pgRect = new System.Drawing.Rectangle(0, 0, pg.Width, pg.Height);
SolidBrush solidWhite = new SolidBrush(Color.White);
gr.FillRectangle(solidWhite, pgRect);
currentPageDisplayed = xNode.Attributes["id"].Value;
foreach (XmlElement xElement in xNode)
{
//Here I am writing each elements, like texts or images.
DrawImageForElements(xElement, , dpi, actualDpi);
}
MemoryStream myMemoryStream = new MemoryStream();
//pg.Save(myMemoryStream, System.Drawing.Imaging.ImageFormat.Bmp);
String filename=@"c:images" + currentPageDisplayed + "+.png";
pg.Save(filename, System.Drawing.Imaging.ImageFormat.Png);
myMemoryStream.Dispose();
gr.Dispose();
pg.Dispose();
}

View 1 Replies

C# - How To Solve Out Of Memory Exception Error In Entity Framework

Apr 5, 2010

these below codes give whole data of my Rehber datas. But if i want to show web page via Gridview send me out of memory exception error.

[code]....

View 1 Replies

DataSource Controls :: Datatable To Excel Memory Exception?

Feb 1, 2010

[Code]....

View 4 Replies

Crystal Reports :: Out Of Memory Exception While Reading The Records

Feb 9, 2011

im using sap crystal report version 13.0.2000.0. i've 27,000 records to be printed but when i run my application the exception error is displayed "Out Of Memory".. i've my appliation in VS2010 and OS is server 64bit and 4GB RAM..

View 1 Replies

Controls :: Export To Excel - System Is Out Of Memory Exception

Nov 22, 2013

We are using below code to export gridview data to excel. It is working fine when export 2 or 3 months data with more than 120,000 rows but we can try to export data for more than 12 months which almost contain 480,000 rows so it generates error

"System is out of memory exception" ....

View 1 Replies

AJAX :: 2.0 - Out Of Memory Exception When Browse The Site From IE7 In WinXP Machine

Nov 17, 2010

I am encountering a weird message 'Out of memory at line : 6' in a web application, which is in production, all of a sudden. The application is built with ASP.Net 2.0. The page which throws this error is constructed as below:

Master Page
Main Page (Error displayed here)
Tab Page 4
Update Panel
User Control - Main
User Control - Child 1
User Controls - Sub Child 1
User Control - Child 2

There are six tab pages in the tab control, which is designed as a wizard and this error is thrown when navigating from Tab 3 to Tab 4. Tab 4 contains ModalPopupExtenders, Cascading Drop Down Lists, and Collapsible panes in user control. The Web Server is Win2003 SP1 with IIS 6.0. The browser is IE 6.0.3790.3959 SP2. When tested in firefox 3.0 the error is not thrown. When the site is browsed from IE7 in WinXP machine, It throws Sys.WebForms.PageRequestManagerServerErrorException with error code 12152 or 401.

View 3 Replies

Retrieve The Data From Web Service And Keep In Process Memory?

Feb 15, 2010

I have to retrieve the data from the web service and this data should be kept in process's memory and use it where needed.Do not like to call web service every time.Is there any method to do this?

View 2 Replies

Installation :: Web App In 3.5 Framework And Deployed At High Config Server - Out Of Memory Exception

Apr 13, 2010

I have developed my web app in 3.5 framework and deployed at high config server(15 gb ram). In my app there are some rdlc reports which always throws out of memory exception. each report has around 15-20 pages. rest of pages are working fine. there are 700-800 users hitting this site concurrently. i m checking my server utilization and its never gone beyond 2 gb. wot i need to do so that my app can utilize full memory.

View 2 Replies

SQL Server :: How To Upload Video And How To Retrieve It And Play In Windows Media Player

Oct 5, 2010

i am developing web portal, which suppose to upload video in sql2005 and should be able to retrieve that video on request and play in aspx page with windows media player.

View 1 Replies

Web Forms :: Get A Video From A Database?

May 17, 2010

I have used asp.net for a while, but never had to embed a video before. I'm using a simple Windows Media Player object which works when given a static URL to use for the video.My problem is that I want to be able to get the URL from a database, I'm probably being stupid and it is late, but the answer isn't jumping out at me. On a change of value in a dropdownlist I want a video to load and I'm not sure how to give the object the

View 1 Replies

Web Forms :: Store Video Files To Database In C#

Mar 13, 2013

I am creating a video database .. User will upload his video.. I know the path will be store in database and video on hard disk .. How video will upload, path are set, and if possible video is downloaded.. I am not creating online streaming .. Just upload and download ..

View 1 Replies

Web Forms :: Play Live Video Stream From Database Using C#

Mar 29, 2013

How to save video file in sql . and play on web page in asp.net c#.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved