Re: [ADVANCED-DOTNET] Modules...

2006-03-29 Thread Mark Smith
Said tool is ILMerge -- http://research.microsoft.com/~mbarnett/ILMerge.aspx There's also a custom MSBuild script available to integrate into VS.NET -- http://blogs.msdn.com/jomo_fisher/archive/2006/03/05/544144.aspx Mark http://www.julmar.com/blog/mark > -Original Message- > From: Disc

Re: [ADVANCED-DOTNET] Modules...

2006-03-28 Thread Mark Smith
> Does anyone actually do this in any situations? csc > /t:module is interesting, but I can't find a use where I > could recommend it to a customer for their production > systems. Anyone? I've used this in one project where we had a piece of managed C++ code (which had to be C++ for various reas

Re: [ADVANCED-DOTNET] Retrieving all available data on a Blocking TCP Listener Call...

2006-03-28 Thread Mark Smith
ECTED] On Behalf Of Mark Smith > Sent: Tuesday, March 28, 2006 5:46 PM > To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > Subject: Re: [ADVANCED-DOTNET] Retrieving all available data > on a Blocking TCP Listener Call... > > > Is that true for a client as well? I thought the client had to k

Re: [ADVANCED-DOTNET] Retrieving all available data on a Blocking TCP Listener Call...

2006-03-28 Thread Mark Smith
> Is that true for a client as well? I thought the client had > to keep the connection open in order to receive the server's > response. I know the > *server* can omit Content-Length and close the connection; > but it seems that would be not-very-useful for a client to do. All header entity values

Re: [ADVANCED-DOTNET] Retrieving all available data on a Blocking TCP Listener Call...

2006-03-28 Thread Mark Smith
to read until the socket is closed by the peer side. Mark Smith === This list is hosted by DevelopMentor® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com

Re: [ADVANCED-DOTNET] Howto create VS2005 project with both c# and c++

2006-03-24 Thread Mark Smith
bly, but you can give it a shot. If you are willing to add a new target type into MSBuild, Jomo Fisher had a process for using ILMerge from within VS.NET -- http://blogs.msdn.com/jomo_fisher/default.aspx Best Regards, Mark Smith === This list is hosted by Develop

Re: [ADVANCED-DOTNET] Most appropriate design pattern to use for ...

2005-03-29 Thread Mark Smith
> It seems to me that CoR adds little value to the original question if I can remember it correctly ;-) The fact that > it's a chain is not important because it's unlikely that the list of known processors for the various flavors of the > document are unknown. Second, this discussion of the CoR cam

Re: [ADVANCED-DOTNET] Most appropriate design pattern to use for ...

2005-03-29 Thread Mark Smith
ments of your problem before choosing the way to build it and that there are probably many appropriate ways you can go about it.. Best Regards, Mark Smith === This list is hosted by DevelopMentor® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com

Re: [ADVANCED-DOTNET] Most appropriate design pattern to use for ...

2005-03-29 Thread Mark Smith
object a chance to process a request. If you are mapping to only a single processing object then it might be overkill. Best Regards, Mark Smith === This list is hosted by DevelopMentor® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com

Re: [ADVANCED-DOTNET] Most appropriate design pattern to use for ...

2005-03-29 Thread Mark Smith
ctory is generally a better option as it removes the coupling between all the strategies themselves. Best Regards, Mark Smith DevelopMentor === This list is hosted by DevelopMentor® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com

Re: [ADVANCED-DOTNET] Anyway to speed this up?

2005-03-24 Thread Mark Smith
Have you tried AddRange instead of Add? It seems to be faster from what I've done in the past. Best Regards, Mark Smith DevelopMentor http://www.develop.com -Original Message- From: Unmoderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Jamin Guy

Re: [ADVANCED-DOTNET] Missing callbacks from asynchronous sockets?

2004-07-26 Thread Mark Smith
, Mark Smith > -Original Message- > From: Unmoderated discussion of advanced .NET topics. > [mailto:[EMAIL PROTECTED] On Behalf Of > Garry Barclay > Sent: Monday, July 26, 2004 2:07 AM > To: [EMAIL PROTECTED] > Subject: Re: [ADVANCED-DOTNET] Missing callbacks from &