Active Desktop and Windows Server 2003

If you are developing on Windows Server 2003, remote access to the console, like in Windows XP Pro, is handy. By default, you get a new session, but if you want to finish something you were working on at work from home later in the evening, connecting to the console is the only way:

http://support.microsoft.com/default.aspx?kbid=278845

BizTalk 2004 and small schema

Today, I came across something totally weird with BizTalk 2004.  I'm hoping someone out there will have an explanation for this one.

When we want to build a web service for BizTalk, the first thing we do is create an XML Schema.  This gets compiled into code using xsd.exe.  Once done, we compile xsd.exe's output (together with other schemes) into an assembly.  Our web service that BizTalk consumes uses this assembly to define the documents that we want BizTalk to use when communicating with our web service.  In this way, we know what the schema will look like in advance before we work with it inside BizTalk.

So, today we built a schema that describes the following document:

<MyList>
    <Item name="sunrise"/>
    <Item name="sunset"/>
</MyList>

When we added our web method returning an object that serializes into the above, BizTalk refused to add the web reference.  Sometimes it complained about arrays returned from web services are not allowed.

If we change the schema by simply adding a node, like so:

<MyList>
    <Title>Times of day</Title>
   
<Item name="sunrise"/>
   
<Item name="sunset"/>
</MyList>
 

BizTalk is happy. 

So what is going on here?  Is this BizTalk that is getting confused or is the WSDL generator doing something funny?

«October»
SunMonTueWedThuFriSat
262728293012
3456789
10111213141516
17181920212223
24252627282930
31123456