Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Yasser Shohoud
Yasser's personal space on the Web
This Blog
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
Personal
Technology
Archives
February 2009 (1)
November 2008 (2)
September 2006 (1)
July 2006 (1)
June 2006 (3)
April 2006 (1)
March 2006 (1)
January 2006 (2)
December 2005 (1)
November 2005 (1)
October 2005 (2)
September 2005 (2)
June 2005 (1)
March 2005 (1)
January 2005 (1)
December 2004 (1)
November 2004 (3)
September 2004 (2)
August 2004 (2)
July 2004 (2)
June 2004 (2)
May 2004 (1)
November 2003 (6)
June 2003 (1)
April 2003 (15)
March 2003 (15)
Blogroll
clemens vasters
chris dix
dare obasanjo
ingo rammer
peter drayton
chris sells
simon fell
sam gentile
christian weyer
rob howard
scott guthrie
tim ewald
keith ballinger
don box
sam ruby
martin gudgin (gudge)
jeff schlimmer
becky dias
jorgen thelin
scot gellock
Web services features in .NET 2.0 (VS Connections talk)
My VS Connections talk's slides and code are available
here
.
Published Wednesday, November 10, 2004 5:24 PM by
yassers
Filed under:
Technology
Comments
#
re: Web services features in .NET 2.0 (VS Connections talk)
Problem
XML Serializer generates assemblies on the fly to serialize application types
There’s an initial hit for generating these assemblies
Solution
A new tool named sgen.exe lets you pre-generate these assemblies at design or deployment time and deploy with your app
Serialization assemblies loaded, if found, and runtime invocation of the compiler will not occur
--- i have a situation where i want to update clients on the fly, and would like to "break" off a type and send that in an assembly somehow; presently, i have to compile it like i want it, is there a tool coming that will allow me to place just that type in its own assembly or take a serialized object graph and place all the types into their own assembly for use on the remote side all at runtime?
Wednesday, November 10, 2004 5:45 PM by
JP
#
re: Web services features in .NET 2.0 (VS Connections talk)
You mean, with this .net client can update itself?
Monday, November 15, 2004 10:27 PM by
bd
#
re: Web services features in .NET 2.0 (VS Connections talk)
yeah, basically, what I have setup now is a system where when a graph of nodes is serialized and sent across the wire, when its deserialized if the assembly is not found (trips the event handler, throws the serialization exception, etc) a requst is sent back to the main app and asks for an assembly update which is then sent back. problem is, right now, the main app needs to compile the types into the assemblies manually, in a pre-meditated manner. What i wanted was a custom assembly generated on teh fly that would just contain the types in the serialized graph;
however
I just realized the assembly full name wouldnt match in terms of version number because of the new assembly being compiled (obviously not matching the main app's assembly version number)
so it makes it a moot point in the end.
Tuesday, November 16, 2004 9:04 PM by
JP
Anonymous comments are disabled