April 2003 - Posts
you can read more on my first day today at teched 2003 - israel.
http://dotnetweblogs.com/yosit/story/6182.aspx
Read More...
there is one MMC Library sdk which is the only opensource project I know
it's from www.ironringsoftware.com ,
it lacks one small thing we encountered today, u can add nodes to the mmc tree but you can't delete.
behind the scenes it uses the IConsoleNameSpace2 interface.
which do support the remove feature . so if u'll add the following code to the BaseNode.cs:
public void Remove()
{
IConsoleNameSpace2 cns = Snapin.ConsoleNameSpace;
cns.DeleteItem((uint)this.HScop
Read More...
we've moved our code into vs.net 2003 we noticed a problem when passing parameters to the server that contained xml code we got "A potentially dangerous request......" searching thru google came up with this: http://www.asp.net/faq/RequestValidation.aspx
Read More...
today I've had a meeting with thwe MS guy responsible for the content of my lecture. he wanted me to add slides about minidump and managed code.. I said ok. I remember something about it ... Although I've never used it (didn't have to) I looked into it.
Read More...
chekc out: http://dotnetweblogs.com/Lrozner/posts/5601.aspx
Read More...
I've going to do a lecture on the next Teched (2003) in israel,
it's about Advanced Debugging and undocumented features of the debugger..
you can find it HERE : http://www.microsoft.com/israel/teched/sessions.aspx?track=1
I'll post the presentation as soon as I'll finish it.
you are all welcome..... ;)
Read More...
Last night we stayed 17 hours at work trying to figure out why we can't load the remoted server with more than 250 Remote calls per sec.
we had a server running asp.net which called another server thru remoting.
we could get the 2nd server to load, we even tried more than 1 web server at the time.
it seemed we had a bottleneck somewhere in the 2nd server which led us to believe Remoting had a limit.
.............
Read More...
a new caching guide from MS
Read More...