Re: [DOTNET] COM Interop calling a C# DLL from VB6

2002-05-31 Thread Tracy Martin
Take a look at the attribute flag. It should allow you to specify the uuid for each interface, so that they do not change between compiles. That's as close to binary compatibility as I've found, although you (the programmer) are required to uphold the contract of no interface changes - it's not d

[DOTNET] WebService state question

2002-05-16 Thread Tracy Martin
Greetings, This seems a simple question, but I don't seem to see the answer in the docs, and I've had varying experiences with it in practice, so I thought I would ask: Does a WebService maintain state for a specific instance? For example, if I have a WebApplication which instantiates a WebServi

Re: [DOTNET] Threading and Enumeration

2002-04-15 Thread Tracy Martin
read safety during > enumeration, > you can either lock the collection during the entire enumeration or > catch the exceptions resulting from changes made by other threads." > > > nsienumerato > rclasstopic.htm> > > -Original Message- > From: dotnet disc

[DOTNET] Threading and Enumeration

2002-04-15 Thread Tracy Martin
Greetings, Does anyone have any information about how enumerators handle changes in the object during enumeration? Or, more specifically, I have a scenario where I have a collection of objects that potentially being added to by separate threads while being enumerated on another thread. Only one t

Re: [DOTNET] HttpWebReqponse - raw headers?

2002-04-14 Thread Tracy Martin
other information available from the HttpWebResponse object. > -Original Message- > From: dotnet discussion > [mailto:[EMAIL PROTECTED]]On Behalf Of > Brad Wilson > Sent: Sunday, April 14, 2002 19:23 > To: [EMAIL PROTECTED] > Subject: Re: HttpWebReqponse - raw headers

Re: [DOTNET] HttpWebReqponse - raw headers?

2002-04-14 Thread Tracy Martin
++i) >Console.WriteLine("\nHeader Name:{0}, > Value:{1}",myHttpWebResponse.Headers.Keys[i],myHttpWebRespon > se.Headers[i > ]); > > myHttpWebResponse.Close(); > > Deepak > > > -Original Message- > > From: dotnet discussion [mailto:[EM

[DOTNET] HttpWebReqponse - raw headers?

2002-04-14 Thread Tracy Martin
Greetings, I'm playing with HttpWebRequest and HttpWebResponse, and I can't seem to find a way to get the raw header stream. I thought perhaps GetResponseStream, but that returns the actual internet resource, not the headers. I want to be able to log the raw headers for certain retrievals - and