| Thread | Last Post | Replies |
|
| XMLDocument.Load vs Session | 31 Mar 2004 09:47 GMT | 1 |
I'm overloading the onInit event in my custom page class and checking the requested Id in the Url is present in my XML file and also checking a couple of attributes for that Id. I'm using the XMLDocument.Load method and the SelectSingleNode method to check for my Id. I'm ...
|
| Tradeoffs? requestEncoding & preventing "Canonicalization" attacks | 30 Mar 2004 22:46 GMT | 2 |
While flipping through the ms book "Improving Web Application Security: Threats & CounterMeasures" I came across a recommendation for preventing/reducing the threat of canonicalization attacks. The book (offhandedly)suggested that one way to address this threat is to change your ...
|
| Thread.Suspend() results in CPU peak | 30 Mar 2004 07:10 GMT | 2 |
I've encountered an interesting case: My program implements a classic scenario in which a worker thread iterates over a queue, dequeues elements, perofrms operations on the elements and so forth. When the queue is empty, the thread calls Suspend upon him self, and when the queue is ...
|
| Crystal Report Object Memory Issue | 29 Mar 2004 19:25 GMT | 2 |
I can't believe .NET memory management is such a mess. I prefer to use old way to release memory. Now, I fix all memory leak in my Windows GUI Applicaion except some one related to Crystal report.
|
| foreach vs. for | 28 Mar 2004 14:51 GMT | 13 |
Why is it that given int C = 13000; int[] n = new int[C]; foreach (int i in n)
|
| prejit or jitman | 27 Mar 2004 17:11 GMT | 8 |
Where can I find prejit.exe or jitman.exe file ? Jitman program enables selecting the jit method (econo-jit etc.). Emil emil1983@op.pl
|
| Page faults | 26 Mar 2004 18:28 GMT | 4 |
We are experiencing a huge page faults and virtual memory in task manager after working a few hours with an application developed by VB.NET uses web services . This causes an extremely slow down in the application respond.
|
| Performance issues on different servers. | 26 Mar 2004 14:11 GMT | 5 |
We have a strange problem that we've been trying to solve for some days. We have an application where we have our own custom objects filled with data. We're doing a lot of looping / removing and creating of objects in a specific function. When I run this on my laptop it takes about ...
|
| Access to .Net Perfmon Counters | 25 Mar 2004 21:46 GMT | 1 |
We are trying to setup the appropriate permissions for a user group to access the .Net CLR counters remotely. We are able to access the counters without issue as long as the user is in the aministrators group. I'm assume we can add the appropriate group in the the registry to ...
|
| About perf counters ... | 25 Mar 2004 21:42 GMT | 1 |
I start to monitor my web application with some counters and alerts ... Sometimes, i cannot start the alert with one of these messages in the event log:
|
| help in analyzing data | 25 Mar 2004 21:40 GMT | 1 |
we have a severe memory problem on our webservers, the sitiuation is that the asp.net worker process just keeps eating all the memory and it eventually crashes when it reaches the 60% ( or whatever ) limit , it crashes, i have tried to observe it several time, but never saw it
|
| help with interpretation of perf data for a slow app | 25 Mar 2004 21:33 GMT | 1 |
We have an asp.net web application that starts to perform poorly with about 12 concurrent users. I went through the process of collecting the relevant performance counters and am trying to sort out what i am seeing. The web server is a 2 CPU machine with 1 GB RAM. Our application is ...
|
| Problem in the Performance counter | 25 Mar 2004 21:22 GMT | 4 |
PerformanceCounter processorUtiliz processorUtiliz = new PerformanceCounter("Processor","% Processor Time","_Toal") string myValue = processorUtiliz.NextValue().ToString() In this the processorUtiliz.NextValue() is always giving me a value 0.0. Could some body please help me why it ...
|
| Optimising Lockbit Routine?? | 25 Mar 2004 12:38 GMT | 8 |
I'm having some problems getting the required speed for a small app i'm currently writting. I rewrote the getPixel() fucntion that i thought was my orginal bottle neck, but i'm still taking 5-6 minutes to calcualte the score of around 6000 points. Does anyone have any
|
| Creating BSP tree | 25 Mar 2004 01:40 GMT | 6 |
I'm trying to generate a Binary Space Partion tree. All the code-examples that I have been looking at, all use C pointer, malloc() etc, which is pretty hard to convert to C#. I have created my own Create_BSP function, but its slooooow and very memory
|