all groups > dotnet performance > november 2004
Filter by week: 1 2 3 4 5
Performance decrease after migration to .NET
Posted by Christian Correa at 11/30/2004 7:15:49 PM
Has anyone experienced a performance decrease after migrating a project to
..NET? We migrated our code from ASP to ASP.NET, modifying sintax whenever
needed. Basically, the application is the same but it now has its code
separated into the .aspx and codebehind (.aspx.vb) files. After compiling... more >>
Dataset commands performance
Posted by mtv at 11/30/2004 1:47:03 PM
My app processes about 5K-10K records (~50 columns/record) in RAM. I need to
have a quick way to insert (w/ sort), update and delete partially at a time.
For example, it inserts 100 rows, update other 400 rows, delete some or
all... You got the idea.
One of the scenarios, I had this data in... more >>
Obtain system memory usage info.
Posted by mtv at 11/30/2004 10:33:09 AM
Does anyone know how to get the total and used RAM programmatically of the
local system? That means, I want to get Memory information like Task Manager
does.
Thanks.
--
Your 2 cents are worth $milion$. Thanks.... more >>
Load Testing Errors
Posted by Shabam at 11/29/2004 1:47:13 PM
A web application of mine developed using C# + MS SQL runs fine normally.
However when I stress test it with a load testing software (using about 60
simultaneous users) some instances start erroring out. I see two different
errors. One is a "Object reference not set to an instance of an object.... more >>
garbage collection problem in large linked lists
Posted by Mr. Mountain at 11/27/2004 1:08:49 AM
I have a need to implement a linked list that will hold a large number of
items. I have done a little performance testing to compare the linked list
against the framework's standard hashtable.
So far the linked list meets my objectives in all ways -- except for one
problem that it exhibits. I... more >>
Article : Soapsuds.exe (.Net Framework tools series)
Posted by Namratha Shah \(Nasha\) at 11/26/2004 9:30:08 PM
Hey Group,
Today we gonna discuss Soapsuds tool.
Soapsuds is shipped with .Net FrameWork and is used by .Net remoting Client
Applications to generate xml schema,proxy class or assembly for their HTTP
Remoting Server. Client App can use this proxy class or the assembly as a
reference to the... more >>
How to FTP via VPN to sites on different IP's ?
Posted by Jason Robertson at 11/25/2004 1:17:28 PM
Hi,
I am using Windows 2003 Server. The VPN works fine, but I want to FTP
through the VPN so the connection is encrypted. The problem is each of my
IIS sites has a real Internet address specified, w.x.y.z. So when the VPN
comes up using a private IP, I can't connect to any of the FTP sites u... more >>
Regex performance is bad
Posted by Dathon at 11/23/2004 9:15:04 PM
I'm profiling my (fairly complex) application and discovered that nearly half
the time spent is inside of Regex.IsMatch. Diving a little deeper, it seems
that the main culprit is a bazillion calls to ToLower inside of the Regex
code.
RegexRunner is called 200,000 times in the test run, res... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Generic types performance oddities (4x4 matrix multiplication test)
Posted by Eran Kampf at 11/20/2004 12:11:27 PM
Hi,
I am currently working on a C# numerics library (Sharp3D.Math -
http://www.ekampf.com/Sharp3D.Math/) and I decided to test the performance
of generic types to see if they're worth the effort.
I tested performance of a 4x4 matrix multiply operation, the solution on how
to use numerics wit... more >>
Article : Security Tools Part -- 1 (.Net FrameWork Tools Series)
Posted by Namratha Shah \(Nasha\) at 11/19/2004 4:22:35 AM
Hey Group,
Today we look in to creating software digital certificates but we take a
plunge in that we will look at certain aspects of Crytography.
Cryptography is about keys for encryption. These keys can be symmeteric or
asymmetric. When we say symmetric keys what we mean is that the same k... more >>
invalid viewstate with application center test
Posted by jsmith at 11/16/2004 4:53:24 PM
I'm trying to run volume testing on a .NET site using ACT. We modified the
script per MSDN article (parse the response/encode view state manually). I
still get authentication failed - invalid viewstate messages. Any
suggestions?
--
JSmith... more >>
Memory Leak on a pure managed application
Posted by Yariv at 11/16/2004 7:16:03 AM
Hi,
I run a fairly straigt-forward application that uses SQL Server database.
One of the modules is runs as a batch for a few hours.
After a few times I got a System.OutOfMemoryException, I've started calling
GC.Collect after each sub task has ended.
I monitored the application via a ".Net ... more >>
Comparison performance - String.compare vs Select Case
Posted by RJB at 11/12/2004 9:54:03 AM
Can anybody tell me what is the quickest way )most efficient) method of
performing comparisons in vb.net?
I'm making modifications to an asp.Net / vb.net application developed by
someone else. The code base is loaded with nested if statements all doing
string comparisons. The research tha... more >>
Loops performance contradictions.
Posted by Sean Wolfe at 11/11/2004 6:14:10 PM
I've read many items about looping and performance issue on how you use
loops. I was bringing this up with other co-workers and there was a
slight dispute. I made a test example, and in most cases, it proved what
I have come to understand, and in some it surprised me.
As far as I understand... more >>
request queue makes web app down
Posted by Dicky Cheng at 11/10/2004 10:15:27 AM
As my web app in IIS always face request queue up due to lengthy requests.
And finally my web app will not response and totally dead. Any methods I can
solve this problem? Also, any article talks about how to tweak the setting
in IIS and machine.config?
Thanks,
Dicky
... more >>
How to dispose a dataset completely
Posted by atul.chivate NO[at]SPAM itb-india.com at 11/10/2004 4:09:58 AM
Hi,
Once a dataset is populated from DataAdapter, I want to release the
memory acquired by dataSet object. So I call oDataSet.Dispose(). But
it doesnot disposes the internal objects like Datatable/dataColumn.
Should I have to call Dispose() method for these internal objects
explicitely? OR ... more >>
web performance
Posted by Dicky Cheng at 11/10/2004 1:15:42 AM
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnservice/html/service07222003.asp
For the article above, does anyone know it's common to implement the
solution in a heavy server? any other method can solve the problem raised in
the article?
Thanks,
Dicky
... more >>
Memory leak in BinaryFormatter?
Posted by Martin Lessard at 11/9/2004 8:38:08 AM
I try to serialize a dataset with the BinaryFormatter. The size of the
dataset is about 23mb. When i call the serialise method of the
BinaryFormatter, the memory used by my process goes from 51500k to 256736k as
reported by the task manager and there is nothing i can do to reclaim this
mem... more >>
performance: IIS - Sqlserver locks influence???
Posted by Alex Callea at 11/8/2004 2:18:32 PM
Hi there,
We have a web application handling thousands of requests per seconds reading
sql server data which is heavily updated.
We are generally experiencing no performance problems.
On some occasions we get an increase of the traffic of about 15% for short
periods. In this case we observ... more >>
Artricle : Ngen.exe -- A discussion , some queries (.NET Framework Tools Series)
Posted by Namratha Shah \(Nasha\) at 11/7/2004 10:57:20 AM
Hi Guys,
Today we will discuss Ngen.exe and then there are some questions regarding
Ngen which ahve always bothered me. I have managed to get answers to them
..... please read thru and let me know your answers to them ... coz I am sure
these questions must have bothered u also.
Lets start... more >>
Installation issues with linksys router
Posted by Tom Richards at 11/7/2004 8:14:56 AM
..Net is required to run Norton Ghost so, 2 days ago, subsequent to a Norton
Ghost 9.0 install I installed .Net along with it's service pack. I use a
linksys router (wrt54gs) for internet, file and print sharing and noticed a
slowdown in throughput internet speed immediately. Eventually, after... more >>
Performance of Weak References vs. Strong References
Posted by jamal NO[at]SPAM docUSA.com at 11/6/2004 10:08:59 PM
Hello everybody,
Does anybody know some tips regarding the performance of weak references vs.
strong references?
Thanks,
Jamal
... more >>
Article : Code Access Security Part - 1 (.Net FrameWork Tools Series)
Posted by Namratha Shah \(Nasha\) at 11/6/2004 8:58:37 PM
Hey Guys,
Today we are going to look at Code Access Security.
Code access security is a feature of .NET that manages code depending on its
trust level. If the CLS trusts the code enough to allow it ro run then it
will execute, the code execution depends on the permission provided to the
ass... more >>
Declarative Data Access
Posted by Angelos Karantzalis at 11/5/2004 9:04:04 PM
Hi guys,
for a while now, we've been flirting with the idea of having a single
component in our app that handles all the plumbing for our Db calls (
creating connections, Commands & Parametes etc. ) through an xml definition
of each Db call.
For instance, a call to a Stored Procedure would ... more >>
web apps + remoting sometimes request queue force to iisreset
Posted by Dicky Cheng at 11/5/2004 8:02:56 PM
Hi,
I have web client application and web server application. The client will
send remoting request to the server. In a normal condition, the client app
runs smoothly. But sometimes, the client will request queue up due to too
many requests from users, and that requests will trigger remoting s... more >>
Getting "Not enough memory" when using !dumpheap
Posted by Hasani \(remove nospam from address\) at 11/3/2004 10:35:51 AM
We have an application thats consuming 260~280MB (according to task manager)
on our webservers and I'm trying to investigate why. The performance monitor
says the heap size is 240MB, and generation 2 objects are consuming 98~99%
of the heap (238MB).
Using cdb, I created a dump and saved it an... more >>
memory tracing tool
Posted by Frank Samuel at 11/2/2004 6:15:51 PM
Hi,
I've got an application, which uses a lot of MS technologies (COM, ATL, MFC,
VB, C#).
Now I've got the problem that the memory overhead of this application
(private bytes) increased dramatically when I introduced managed code.
I have to track down the problem.
So I'm searching for a memo... more >>
Program end as soon as it has started.
Posted by Jens Burup at 11/1/2004 11:37:16 AM
Hi Ng
Hope this is the right group to place my question.
I have a simple VS2003 vb.net application, with 2 data grids and 2 combo
boxes on my UI.
Using ADO to fill the grid and boxes.
Everything works fine, but suddenly after I have done the build and try to
run the program ( F5) the UI fl... more >>
|