0
votes
2answers
31 views
LinqToSql InsertOnSubmit memory leak?
I am trying to isolate the source of a "memory leak" in my C# application. This application copies a large number of potentially large files into records in a database using the i …
2
votes
3answers
41 views
VB6 App Calling .NET DLL OutOfMemory Exception
We have a VB6 app that calls out to a .NET DLL. Occasionally, after the VB6 app has been running for a long time and has called the .NET code a lot, the .NET side of things throws …
0
votes
2answers
321 views
Memory shortage problem while using BufferedImage and ImageIO to save images.
I want to save some java.awt.Image objects into the disk. But when I try like:
for (Image image : images) {
image = new ImageIcon(image).getImage();
BufferedImage temp = n …
4
votes
7answers
182 views
Is it possible to catch out of memory exception in java?
I'm developing a program that would require huge amount of memory, and I want to catch when out-of-memory exception happens. I had heard this is not possible to do, but curious if …
2
votes
2answers
30 views
Linq to Entities and SQL Server 2008 FileStream
Backend: SQL Server 2008 database with FileStream enabled
Data Access: Linq to Entities
I have thousands of pdf's that currently reside on a file server. I would like to move the …
0
votes
0answers
41 views
pls help to convert .bmp image to pixel data
pls help to convert .bmp image to pixel data
Bitmap.FromFile(XYZ.bmp) gives System.OutOfMemoryException
thank you
0
votes
5answers
109 views
Why am I getting an Out of Memory Error doing ASP .NET Excel Interop?
This was working..and I moved the disposal code to the finally block, and now it fails every time.
I have a test spreadsheet with 4 records, 6 columns long. Here is the code I'm u …
10
votes
6answers
322 views
Linux optimistic malloc: will new always throw when out of memory?
I have been reading about out of memory conditions on Linux, and the following paragraph from the man pages got me thinking:
By default, Linux follows an optimistic memory allo …
4
votes
7answers
173 views
Java memory leak
Has anybody used Eclipse memory manager to detect memory leak in java codes? Can anybody recommend a good place to look for information regarding using memory manager? I read somet …
6
votes
3answers
140 views
OutOfMemory, but no gcroots for many objects
We are developing a rather large Windows Forms application. In several customers' computers it often crashes with OutOfMemory exception. After obtaining full memory dump of the app …
2
votes
4answers
134 views
OutOFMemory exception
Hi,
1) What are the possible reasons of OutofMemory exception.
2) Memory allocations should be handled by GC.
3) How much memory is allocated/Available to normal .Net/C# applica …
0
votes
3answers
104 views
System.OutOfMemoryException on WCF Web Service
I struggle on a System.OutOfMemoryException when performing an import process where a lot of objects are being created.
The effect is that the ASPNET_WP.EXE blows up to 1.4 GB and …
0
votes
3answers
77 views
CComBSTR memory allocation
I have a "const char* str" with a very long string.
I need to pass it from a cpp client to a .Net COM method which expects BSTR type.
Currently I use:
CComBSTR bstr = str;
This …
1
vote
6answers
475 views
How to serialize big objects in .NET? (OutOfMemory Exceptions)
I'm using serialization for "save" feature in my application. But when the data is too big (15+ MB) I'm starting to get OutOfMemory exceptions.
I've got so many objects and they a …
1
vote
3answers
121 views
Netbeans memory management
I have some Java code that is throwing out of memory exceptions after running for a while. I've investigated the netbeans profiler, and when I do one specific operation the Surviv …
