Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet distributed apps > march 2004 > threads for march 15 - 21, 2004

Filter by week: 1 2 3 4 5

HTTP Server
Posted by Jim P. at 3/19/2004 7:26:37 PM
When an HTTP server receives a connection on a listener socket, does the socket stay open while the server processes that request? Or does it close the socket and reopen a new one to send once it has fulfilled the request? thanks ...more >>


Enterprise Instrumentation framework
Posted by Mathieu at 3/19/2004 5:14:00 PM
So I try to make a small lab on EIF, I block on the level of the file EnterpriseInstrumentation.config I create a project, Console Application, I add two references => Microsoft.EnterpriseInstrumentation , Microsoft.EnterpriseInstrumentation.Schema. This is the code source : ...more >>

Singleton Question Threading Question
Posted by C Newby at 3/19/2004 3:37:52 PM
Suppose i have a remote singelton such as class MySingelton{ ... public Int32 GetSum( Int32 X, Int32 Y ){ Int32 sum = X + Y; return sum; } } Now suppose i have two requests (threads) for this method that happen in the following order: Thread A ente...more >>

No Touch deployment vs Local Installation
Posted by Graham Allwood at 3/19/2004 3:28:16 PM
With the announcement of Whidbey being delayed until next year I thought I would start looking at the application updater as a method of deploying my smart client application. But I have a few questions... How far from OneClick installation is the application updater? Normally when installi...more >>

VB.net SQL DTS distribution
Posted by B.A Baracus at 3/19/2004 9:31:06 AM
Hi all I have created a VB.net application that uses SQL 2000 DTS. The application works great on my PC (since i have SQL Server E/M installed). I created a build to use on PC's that do not have any SQL Clients Tools installed. I did some research and found the DLLS that i need to add and regis...more >>

For Next loop runs in circles on deployment PC
Posted by Joan at 3/18/2004 6:11:07 PM
I have a For Each Next loop parsing thru an XML doc. When I build and deploy my app.exe on a PC other than the development PC I'm getting the strangest behavior in one of my functions. The application gets caught in the Child4 loop in the code snippet below. There are 8 child nodes of oChild4,but i...more >>

Any sample code available?
Posted by Ritesh Sompura at 3/18/2004 3:20:25 PM
Hi! Guys, I am learning and working on .NET Architecture. I want to develop application with n-Tire Architecture. Is there any sample code which shows which class should be in which tier. How to pass data from Data Access Logic Class to Business Logic Class and from Business Logic Class to ...more >>

Getting SEC_E_SECPKG_NOT_FOUND returned from AcquireCredentialsHandle from my c# code
Posted by erikreiter NO[at]SPAM hotmail.com at 3/18/2004 2:56:06 PM
I am getting SEC_E_SECPKG_NOT_FOUND returned from AcquireCredentialsHandle from my c# code: Error SEC_E_SECPKG_NOT_FOUND (0x80090305 2148074245) I am useing NTLM. Here is the the test class. Just cut and paste into a console app and change domain user name and password. Any help would ...more >>



No Touch Deployment question
Posted by Terry Diederich at 3/18/2004 2:43:15 PM
I'm just starting to look at no touch deployment and I have a question. Do you write an application differently that will be deployed via no-touch compared to an application that will be installed locally? For example, for an application that is installed locally I would handle database ...more >>

Error in Updater App Block before the download
Posted by chanser NO[at]SPAM web.de at 3/18/2004 4:33:18 AM
Hi! My Updater App Block works just fine till the download of the files: - it downloads the servermanifest - it recognizes the update on the server & and asks if it should download - it creates the directory "newFiles" and creates some 0kb-files named "bitxxx.tmp" However, then the method ...more >>

Circumventing NAT/Firewall with HTTP
Posted by Jim P. at 3/17/2004 5:06:15 PM
I'm using TCPClient & TCPListener. Using a Relay server, I have 2 peers behind firewalls. Peer1 needs to use HTTP to drop messages on Relay so Peer2 can pick them up at a leter time. The message are in XML. My question is: To communicate via HTTP using TCPClient, do I just need to wrap my m...more >>

where do assemblies for .Net DLLs Execute??
Posted by GCeaser NO[at]SPAM aol.com at 3/17/2004 1:56:02 PM
OK, I just had a long conversation with a co-worker on this and we are looking for the answers to the following question: Where do .Net Assemblies based on class libraries (DLLs) that are strong named execute and where do non-strong named assemblies execute. Logic tells me...more >>

Smart Clients
Posted by João Melo at 3/17/2004 12:49:33 PM
Does anyone have any experience with smart clients ? I have an application that uses infragistics components. I want to be able to get the application with an url like 'http://myservernam/appname/appexecutable.exe' using reflection. I already can run this from my server but when i try to run...more >>

UIP Built-In Database...how to remove?
Posted by BBuff at 3/17/2004 10:52:34 AM
Greetings All! I've downloaded and begun playing with the User Interface Process Application Block and I'm perplexed on one thing. I have setup the web.config to for my app to use SQL Server session state and the UIP block to use Session State as its persistence method. However, I still see ...more >>

System.IO.FileNotFoundException: File or assembly name COMPlus, or one of its dependencies, was not found.
Posted by GCeaser NO[at]SPAM aol.com at 3/16/2004 1:32:07 PM
All, I am trying to do a simple test of a serviced component call from an ASP.Net web page. For the serviced component, I have given it a strong name (as proof when I click on the reference to the Service Component in the Web app and check its properties, its strong name property ...more >>

Best Practices for insert, delete, update records in c#
Posted by Immer at 3/16/2004 10:13:55 AM
hi, could anyone help with best practices for insert, delete and update records in c#??? Immer. ...more >>

Updater App Block - can't kill thread
Posted by Marty McDonald at 3/15/2004 2:25:21 PM
My ApplicationManager object is running in a thread called _updaterThread. I'm unable to kill it. After this code executes, I can still see the process in Task Manager. Is this the proper way to kill it? Do I have to call _updaterThread.Abort ? _updater.StopUpdater(); if( null != _updater...more >>


DevelopmentNow Blog