<?xml version="1.0" encoding="iso-8859-1"?>
<!-- generator="Movable Type/2.63" -->
<rss version="2.0">
  <channel>
    <title>Ingo Rammer&apos;s Weblog</title>
    <link>http://stage.ingorammer.com/</link>
    <description></description>
    <copyright>Copyright 2002, 2003 by Ingo Rammer</copyright> 
    <language>en-us</language>
    <webMaster>ingo@ingorammer.com</webMaster>
    <pubDate>Thu, 10 Apr 2003 18:00:00 +0100</pubDate>
    <item>
      <title>Advanced .NET Remoting</title>
      <link>http://stage.ingorammer.com/weblog/archives/000934.html</link>
      <description><![CDATA[<A href="http://www.sys-con.com/dotnet/readerschoice2003/index.cfm">
<IMG height=125 alt="" src="http://www.sys-con.com/dotnet/readerschoice2003/125x125-.NET.jpg" width=125 border=0></A>
<br>
<A href="http://www.ingorammer.com/Book/AdvancedDotNetRemoting.html">Advanced .NET Remoting</A> is up on 
.<A href="http://www.sys-con.com/dotnet/readerschoice2003/index.cfm">NET DJ's Reader's Choice Award</A>. That's your chance to tell the world that you really like this book ;-). Thanks for <A href="http://www.sys-con.com/dotnet/readerschoice2003/index.cfm">voting</A>.]]></description>
      <pubDate>Thu, 10 Apr 2003 18:00:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000934.html</guid>
    </item>
    <item>
      <title>What&apos;s in a Type&apos;s Name?</title>
      <link>http://stage.ingorammer.com/weblog/archives/000935.html</link>
      <description><![CDATA[
<P class=MsoNormal><SPAN lang=EN-GB 
style="FONT-SIZE: 10pt; FONT-FAMILY: Arial">Sam is <A 
title=http://dotnetweblogs.com/sgentile/posts/4994.aspx 
href="http://dotnetweblogs.com/sgentile/posts/4994.aspx"><FONT 
color=#aa00aa>heavily in favor of using the BCL&#8217;s type names versus C#&#8217;s 
names</FONT></A>. I absolutely second this for the very reason he states.<SPAN 
class=050011709-09012003> </SPAN></SPAN></P>
<P class=MsoNormal><SPAN lang=EN-GB 
style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><SPAN 
class=050011709-09012003></SPAN></SPAN><SPAN lang=EN-GB 
style="FONT-SIZE: 10pt; FONT-FAMILY: Arial">At the end of the day, nobody wants 
to end up with code like this, right?<o:p></o:p></SPAN></P>
<DIV class=Section1><PRE class=MsoNormal><SPAN lang=EN-GB style="FONT-WEIGHT: bold; FONT-SIZE: 10pt">static void MyMessagebox(HWND hWnd,<BR></SPAN><SPAN lang=EN-GB style="FONT-WEIGHT: bold; FONT-SIZE: 10pt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LPCTSTR lpText,<BR></SPAN><SPAN lang=EN-GB style="FONT-WEIGHT: bold; FONT-SIZE: 10pt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LPCTSTR lpCaption,<BR></SPAN><SPAN lang=EN-GB style="FONT-WEIGHT: bold; FONT-SIZE: 10pt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UINT uType,<BR></SPAN><SPAN lang=EN-GB style="FONT-WEIGHT: bold; FONT-SIZE: 10pt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WORD wLanguageId)<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">{<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">&nbsp; System.Windows.Forms.MessageBox.Show(lpText,lpCaption);<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">}</SPAN></PRE></DIV>
<P class=MsoNormal><CODE><FONT face="Courier New"><SPAN lang=EN-GB 
style="FONT-SIZE: 10pt"></SPAN></FONT></CODE><CODE><SPAN lang=EN-GB 
style="FONT-SIZE: 10pt; FONT-FAMILY: Arial">Scary? Well ... it&#8217;s in fact 
completely legal C# code take<SPAN class=050011709-09012003>n</SPAN> from the 
following&nbsp;<SPAN class=050011709-09012003>program</SPAN>:</SPAN></CODE></P><PRE class=MsoNormal><SPAN lang=EN-GB style="FONT-SIZE: 10pt">using System;</SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt"><o:p>&nbsp;<BR><BR><SPAN class=050011709-09012003> <BR></SPAN></o:p></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">using WORD = System.Int16;<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">using HWND = System.Int32;<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">using LPCTSTR = System.String;<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">using UINT = System.UInt32;<BR><SPAN class=050011709-09012003> <BR></SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">class ScaryThing<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">{<BR></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt"><SPAN class=050011709-09012003>&nbsp; </SPAN>static void MyMessagebox(HWND hWnd<SPAN class=050011709-09012003>,<BR>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">LPCTSTR lpText,<BR><SPAN class=050011709-09012003>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">LPCTSTR lpCaption,<BR><SPAN class=050011709-09012003>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">UINT uType,<BR><SPAN class=050011709-09012003>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">WORD wLanguageId<SPAN class=050011709-09012003>)<BR>&nbsp;&nbsp;</SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">{<BR><SPAN class=050011709-09012003>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">System.Windows.Forms.MessageBox.Show(lpText,lpCaption);<BR><SPAN class=050011709-09012003>&nbsp; </SPAN></SPAN><SPAN lang=EN-GB style="FONT-SIZE: 10pt">}<BR><SPAN class=050011709-09012003> <BR>  </SPAN></SPAN><SPAN style="FONT-SIZE: 10pt">[STAThread]<BR></SPAN><SPAN style="FONT-SIZE: 10pt"><SPAN class=050011709-09012003>&nbsp; </SPAN>static void Main(string[] args)<BR><SPAN class=050011709-09012003>&nbsp; </SPAN></SPAN><SPAN style="FONT-SIZE: 10pt">{<BR><SPAN class=050011709-09012003>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN style="FONT-SIZE: 10pt">LPCTSTR foo = "Foo";<BR><SPAN class=050011709-09012003>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN style="FONT-SIZE: 10pt">LPCTSTR bar = "Bar";<BR><SPAN class=050011709-09012003>&nbsp;&nbsp;&nbsp; </SPAN></SPAN><SPAN style="FONT-SIZE: 10pt">MyMessagebox(0,foo,bar,0,0);<BR><SPAN class=050011709-09012003>&nbsp; </SPAN></SPAN><SPAN style="FONT-SIZE: 10pt">}<BR></SPAN><SPAN style="FONT-SIZE: 10pt">}<o:p></o:p></SPAN></PRE>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>But&nbsp;you 
wouldn't want to, would you? So why does the use of <EM>LPCTSTR</EM> feel wrong, 
whereas the use of <EM>string</EM> instead of <EM>System.String</EM> doesn't? 
All three are equally right or wrong, but believe me - only the BCL name 
<EM>System.String</EM> is universally understood.</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Lesson's 
learnt:</SPAN></FONT></P>
<UL>
  <LI><FONT face=Verdana size=2><SPAN class=050011709-09012003>Use the BCL type 
  names</SPAN></FONT> 
  <LI><FONT face=Verdana size=2><SPAN class=050011709-09012003>Don't redefine 
  your type's names to match your old habits 
;-)</SPAN></FONT></LI></UL>]]></description>
      <pubDate>Mon, 07 Apr 2003 18:43:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000935.html</guid>
    </item>
    <item>
      <title>Sharpreader rocks!</title>
      <link>http://stage.ingorammer.com/weblog/archives/000936.html</link>
      <description><![CDATA[
<P><FONT color=#000000><A 
href="http://www.hutteman.com/weblog/2003/04/06.html#000056"><SPAN 
class=050011709-09012003><FONT face=Arial 
size=2>Sharpreader</FONT></SPAN></A><FONT face=Arial><FONT size=2>&nbsp;<SPAN 
class=050011709-09012003>rocks. 'nuff 
said.</SPAN></FONT></FONT></FONT></P>]]></description>
      <pubDate>Sun, 06 Apr 2003 19:30:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000936.html</guid>
    </item>
    <item>
      <title>Hardware Woes</title>
      <link>http://stage.ingorammer.com/weblog/archives/000937.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>I don't normally 
rant about hardware issues but I guess at this time my experiences of the past 
three days might actually save someone else some time.</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>It all started out 
with my decision to buy a (lowest price) iiyama 19" TFT&nbsp;providing me with 
1600x1200 which I planned to operate as my main screen in a dualhead setup. 
</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Unfortunately, when 
used with my Matrox G450, the display was way too blurry (at least by my 
standards, which are quite high. I sat there with a magnifying glass comparing 
the display with my Vaio's built-in TFT). </SPAN></FONT><FONT face=Verdana 
size=2><SPAN class=050011709-09012003>I therefore decided to switch to DVI and 
shell out some bucks for a digital dual head card. </SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>I somehow ended up 
with buying an Asus V8420 which is based on a GeForce4 Ti4200 and which somehow 
is a pretty weird card for a non-gamer like me. However, the result was 
brilliant. Don't ever try to run 1600x1200 on analog output as your combination 
of display adapter, cable&nbsp;and LCD panel might not be able to sync 
correctly. (I tried three different analog display adapters and two 
cables.).&nbsp;</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>But now, the 
problems really started: I've been running W2K3 Server Enterprise Edition for 
some days and, to say the least, it doesn't seem as if this operating system is 
about to become the main platform for games. It seems as if Asus therefore 
decided not to provide too much support for it at the given time. After 
installing the WXP drivers (and well after confirming a hundred <EM>"not 
supported. not digitally signed."</EM>-message boxes) strange things 
happend:</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Windows greated me 
with&nbsp;about&nbsp;five&nbsp;"Invalid instruction in&nbsp;RunDll.exe" message 
boxes after each reboot. And, strangely enough, when right-clicking on the 
desktop and hovering over "Arrange Icons By ... " or "New..." my system locked 
up for exactly 10 seconds with CSRSS.EXE taking up 99% CPU. I used <A 
href="http://www.sysinternals.com/ntw2k/source/filemon.shtml">Filemon</A>, <A 
href="http://www.sysinternals.com/ntw2k/source/regmon.shtml">Regmon</A> and <A 
href="http://www.ethereal.com">Ethereal</A> but couldn't get anywhere near the 
source of this problem. The only thing absolutely consistent was the wait time 
of exactly 10 seconds. I guess one has to be <A 
href="http://www.sysinternals.com/">Mark Russinovich</A> to know what's going on 
here.</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>As I'm neither Mark 
nor did I know what has been going on here, I instead decided to try and install 
the original NVidia drivers. Great wonders: it works. I only get one more 
"Invalid instruction" when trying to use NVidia's tray icon about which I don't 
care too much. No more 10 second delays ...</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Lessons&nbsp;learnt 
in the past week:</SPAN></FONT></P>
<UL>
  <LI><FONT face=Verdana size=2><SPAN class=050011709-09012003>When running TFTs 
  in 1600x1200 use DVI. Don't use analog - it sucks.</SPAN></FONT></LI>
  <LI><FONT face=Verdana size=2><SPAN class=050011709-09012003>When running an 
  Asus display adapter on W2K3, use the Nvidia drivers. 
</SPAN></FONT></LI></UL>]]></description>
      <pubDate>Tue, 01 Apr 2003 11:41:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000937.html</guid>
    </item>
    <item>
      <title>Biztalk and W2K3 -&gt; wait for BTS SP1</title>
      <link>http://stage.ingorammer.com/weblog/archives/000938.html</link>
      <description><![CDATA[
<P><SPAN class=050011709-09012003><FONT face=Verdana size=2>Thanks to <A 
href="http://www.larkware.com/">MikeG</A>:&nbsp;</FONT></SPAN></P>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
  <P><FONT face=Verdana size=2><EM>See </EM></FONT><A 
  href="http://www.microsoft.com/biztalk/evaluation/sysreqs/default.asp"><U><FONT 
  color=#0000ff size=2><FONT 
  face=Verdana><EM>http://www.microsoft.com/biztalk/evaluation/sysreqs/default.asp</EM></FONT></U></FONT></A><FONT 
  face=Verdana size=2><EM> : "BizTalk Server 2002 will run on the upcoming 
  production versions of Windows Server 2003 with the application of Service 
  Pack 1 for BizTalk Server 2002. SP1 is scheduled for availability within 90 
  days of the Windows Server 2003 release to 
manufacturing."</EM></FONT></P></BLOCKQUOTE>
<P dir=ltr><SPAN class=050011709-09012003><FONT face=Verdana size=2>So 
<EM>that's</EM> why it didn't work. Thanks. I should have checked 
myself.</FONT></SPAN></P>]]></description>
      <pubDate>Mon, 31 Mar 2003 09:51:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000938.html</guid>
    </item>
    <item>
      <title>This is a great list of .NET tools and resources...</title>
      <link>http://stage.ingorammer.com/weblog/archives/000939.html</link>
      <description><![CDATA[<A href="http://dotnetweblogs.com/FMARGUERIE/Story/4139.aspx">This</A> is 
a great list of .NET tools and resources...&nbsp;[<A 
href="http://dotnetweblogs.com/DNeimke/posts/4507.aspx">Darren</A>]]]></description>
      <pubDate>Mon, 31 Mar 2003 09:33:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000939.html</guid>
    </item>
    <item>
      <title>Biztalk on W2K3</title>
      <link>http://stage.ingorammer.com/weblog/archives/000940.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Anyone had success 
installing Biztalk 2002 on W2003? On my system the progress bar stops at about 
85% without any further indication of what it's about to do 
...</SPAN></FONT></P>]]></description>
      <pubDate>Mon, 31 Mar 2003 00:14:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000940.html</guid>
    </item>
    <item>
      <title>Thanks folks!</title>
      <link>http://stage.ingorammer.com/weblog/archives/000941.html</link>
      <description><![CDATA[Thanks to y'all for 
sending congrats: <A 
href="http://staff.develop.com/candera/weblog/2003/03/28.html#a71">Craig</A>, <A 
href="http://www.gotdotnet.com/team/dbox/default.aspx#nn2003-03-28T08:26:45Z">Don</A>, 
<A href="http://radio.weblogs.com/0112381/2003/03/28.html#a112">John</A>, <A 
href="http://dotnetweblogs.com/ksharkey/posts/4446.aspx">Kent</A>, <A 
href="http://staff.develop.com/nielsb/PermaLink.aspx/2c506d96-45d7-40c2-9a9b-12dab21eb5a1">Nils</A>, 
<A href="http://dotnetweblogs.com/sgentile/posts/4441.aspx">Sam</A>, <A 
href="http://dotnetweblogs.com/SIbrahim/posts/4453.aspx">Samer</A>, <A 
href="http://www.winterdom.com/weblog/archives/000243.html">Tomas</A>, and of 
course, to all of you who sent me private emails. 
<br>Thanks!</P>

<P>Congrats from my 
side fly out to the <A 
href="http://www.mindreef.com/weblog/2003/03/27.html#a45">Mindreef</A> team and 
<A href="http://dotnetweblogs.com/sgentile/posts/4438.aspx">Sam</A> who 
(independently) won two <EM>Jolt Awards</EM>. Wow. This really 
rocks!
</P>]]></description>
      <pubDate>Sun, 30 Mar 2003 23:54:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000941.html</guid>
    </item>
    <item>
      <title>Make my day!</title>
      <link>http://stage.ingorammer.com/weblog/archives/000942.html</link>
      <description><![CDATA[
<DIV><SPAN class=351201119-28032003><FONT face=Verdana size=2>Emails like this 
can&nbsp;<SPAN class=050011709-09012003>really </SPAN>make&nbsp;<SPAN 
class=050011709-09012003>my </SPAN>day<SPAN class=050011709-09012003> 
<EM>(hyperlinks inserted by me)</EM></SPAN></FONT></SPAN></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
  <DIV><FONT face=Verdana size=2><EM>Congratulations on passing the 
  </EM></FONT><A 
  title=http://www.ingorammer.com/Weblog/default.aspx?day=2003-03-26#20030326101800 
  href="http://www.ingorammer.com/Weblog/default.aspx?day=2003-03-26#20030326101800"><FONT 
  face=Verdana size=2><EM>test teach</EM></FONT></A><FONT face=Verdana><FONT 
  size=2><EM> with flying colors.<SPAN class=351201119-28032003> 
  </SPAN></EM></FONT></FONT></DIV>
  <DIV><FONT face=Verdana size=2><SPAN 
  class=351201119-28032003><EM>[...]</EM></SPAN></FONT></DIV>
  <DIV><SPAN class=351201119-28032003></SPAN><SPAN 
  class=351201119-28032003><FONT face=Verdana size=2><EM>Welcome </EM></FONT><A 
  title=http://www.develop.com/ href="http://www.develop.com/"><FONT 
  face=Verdana size=2><EM>aboard</EM></FONT></A><FONT face=Verdana size=2><EM> 
  Ingo!</EM></FONT></SPAN></DIV></BLOCKQUOTE>
<DIV dir=ltr><SPAN class=351201119-28032003><SPAN class=050011709-09012003><FONT 
face=Verdana size=2>Woohoo!</FONT></SPAN></SPAN></DIV>]]></description>
      <pubDate>Fri, 28 Mar 2003 20:16:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000942.html</guid>
    </item>
    <item>
      <title>Did it ...</title>
      <link>http://stage.ingorammer.com/weblog/archives/000943.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>I don't <A 
href="http://www.ingorammer.com/weblog/default.aspx?day=2003-03-26#20030326101800">have 
to be silent</A>.</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN 
class=050011709-09012003></SPAN></FONT>&nbsp;</P>]]></description>
      <pubDate>Thu, 27 Mar 2003 14:20:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000943.html</guid>
    </item>
    <item>
      <title>Niels and Jason will be around</title>
      <link>http://stage.ingorammer.com/weblog/archives/000944.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Cool. <A 
href="http://staff.develop.com/nielsb/PermaLink.aspx/44b04943-2e92-4e62-9303-3b97ae013f0d">Niels</A> 
and <A href="http://staff.develop.com/jasonw/weblog">Jason</A> will also be 
around in London (together with&nbsp;some other <EM>no-blog-yet</EM> DM guys 
;-)).</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>That's going to be 
some <EM>serious</EM> fun. </SPAN></FONT></P>]]></description>
      <pubDate>Wed, 26 Mar 2003 15:08:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000944.html</guid>
    </item>
    <item>
      <title>Off to London</title>
      <link>http://stage.ingorammer.com/weblog/archives/000945.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>I'm off to London in 
a couple of hours. Sorry, <A 
href="http://radio.weblogs.com/0108971/">Clemens</A>.</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>This is going to be 
one of the most important <EM>"talks"</EM> in more than a year now and I'm 
really excited about it. If it turns out ok, I guess you'll hear about 
it&nbsp;from the usual suspect's&nbsp;blogs. Otherwise, I'll just tear out my 
calendar's page of March 27th [1],&nbsp;and will never mention&nbsp;this day's 
events&nbsp;again ;-)</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Wish me luck, it's 
going to be fun!</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>[1] Which would be a 
pretty&nbsp;hard thing to do&nbsp;- considering my use of Outlook on a TPC. 
</SPAN></FONT></P>]]></description>
      <pubDate>Wed, 26 Mar 2003 10:18:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000945.html</guid>
    </item>
    <item>
      <title>Distributed .NET Newsletter</title>
      <link>http://stage.ingorammer.com/weblog/archives/000946.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Hmmm ... I'm not the 
<A href="http://dotnetweblogs.com/sgentile/posts/3966.aspx">first</A> <A 
href="http://dotnetweblogs.com/SIbrahim/posts/3971.aspx">one</A> <A 
href="http://dotnetweblogs.com/ASanto/posts/3976.aspx">to</A> <A 
href="http://aspnetweblog.com/posts/3977.aspx">announce</A>: The first issue of 
my <A href="http://www.ingorammer.com/NL">Distributed .NET Newsletter</A> has 
been sent to more than 1.500 subscribers today. </SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003></SPAN></FONT><FONT 
face=Verdana size=2><SPAN class=050011709-09012003>If you want to subscribe, you 
can do so at <A 
href="http://www.ingorammer.com/NL">http://www.ingorammer.com/NL</A>&nbsp;(it's 
free, it's bi-weekly). You can also check out <A 
href="http://www.ingorammer.com/distributeddotnetnewsletter/march2003/newsletter.htm">today's 
issue</A>. </SPAN></FONT></P>]]></description>
      <pubDate>Tue, 18 Mar 2003 18:50:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000946.html</guid>
    </item>
    <item>
      <title>InfoPath</title>
      <link>http://stage.ingorammer.com/weblog/archives/000947.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>InfoPath. I'm 
impressed. It so much rocks. It somehow feels like Web Services clients should 
simply be developed like this.</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Now, let me 
-&nbsp;<EM>the humble person who I am</EM> - state some of my 
wishes:</SPAN></FONT></P>
<UL>
  <LI><FONT face=Verdana size=2><SPAN class=050011709-09012003>Just make it a 
  development tool. I'd really like&nbsp;to embed InfoPath forms into my 
  WinForms apps.</SPAN></FONT></LI>
  <LI><FONT face=Verdana size=2><SPAN class=050011709-09012003>Give me Events, 
  give me the InfoSet. I'd love to fully integrate forms like these with my real 
  apps.</SPAN></FONT></LI>
  <LI><FONT face=Verdana size=2><SPAN class=050011709-09012003>Let me redist it 
  without depending on Office 2003. In fact, just include it in .NET and let me 
  redist it for free. The reason for this final - <EM>and 
  maybe&nbsp;aggressive</EM> - demand is that my client's customers [1] won't 
  easily allow me to deploy Office 2003 with&nbsp;our applications. And that's 
  not just for the cost of the licenses but instead for the testing and 
  support&nbsp;issues involved. It's hard to get them to roll out .NET - it's 
  absolutely impossible to make them roll out Office 2003 just for a small web 
  services client.</SPAN></FONT></LI></UL>
<DIV><FONT face=Verdana size=2><SPAN class=050011709-09012003>InfoPath&nbsp;is 
set to be a perfect 4th generation tool to write&nbsp;simple web services 
clients. By including it in .NET, you can make it heavily used by both, ISVs and 
corporate developers. </SPAN></FONT><FONT face=Verdana size=2><SPAN 
class=050011709-09012003>And, at the end of the day, it really feels like a 
developer's and power user's tool - not something which belongs in your average 
Office Suite, right? </SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=050011709-09012003></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=050011709-09012003></SPAN></FONT><FONT face=Verdana size=2><SPAN 
class=050011709-09012003>If you are working&nbsp;on this team - or know someone 
who does - I'd really love to hear about your ideas regarding these issues! 
</SPAN></FONT></DIV>
<DIV><FONT face=Verdana size=2><SPAN 
class=050011709-09012003></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><SPAN class=050011709-09012003>[1] I'm 
consultant, my clients are software engineers - so I'm talking about the users 
of <EM>their</EM> apps here.</SPAN></FONT></DIV>]]></description>
      <pubDate>Thu, 13 Mar 2003 08:26:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000947.html</guid>
    </item>
    <item>
      <title>Zurich Connection</title>
      <link>http://stage.ingorammer.com/weblog/archives/000948.html</link>
      <description><![CDATA[
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003>Yesterday, I met the 
guys in Zurich:</SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003><IMG alt="" hspace=0 
src="http://stage.ingorammer.com/Weblog/ImageCache/050011709X09012003-0F2C.JPG" align=baseline border=0><BR>.NET Bloggers: <A 
href="http://www.shamiro.ch/weblog/default.aspx">Ben</A>, me, <A 
href="http://www.corti.com/WebLogSascha/default.aspx">Sascha</A></SPAN></FONT></P>
<P><FONT face=Verdana size=2><SPAN class=050011709-09012003><A 
href="http://radio.weblogs.com/0108971/">Clemens</A> has also been there - but 
he left before we took the photo. I guess that makes&nbsp;yesteday 
evening&nbsp;the largest .NET weblogger gathering in Central Europe 
(German-speaking parts). Unfortunately, <A 
href="http://dotnetweblogs.com/Cweyer/">Christian</A> hasn't been 
around.</SPAN></FONT></P>]]></description>
      <pubDate>Thu, 13 Mar 2003 08:18:00 +0100</pubDate>
      <guid>http://stage.ingorammer.com/weblog/archives/000948.html</guid>
    </item>

  </channel>
</rss>