Home Page › Forums › BizTalk 2004 – BizTalk 2010 › BTS 2006 MS Help File Tutorial – Tutorial 1 Problem › BTS 2006 MS Help File Tutorial – Tutorial 1 Problem
Phil,
The ns0 is a namespace prefix and is an Xml construct specified in the Xml definition. (see http://www.w3.org)
The prefix can be any QName string
e.g.
<bob:Request xmlns:bob=\”http://Tut1_Schemas.T1_sch_request\”>
Using a default namespace is also valid but this impacts on subsequent nodes.
<Request xmlns=\”http://Tut1_Schemas.T1_sch_request\”>
<ns0:Request xmlns:ns0=\”http://EAISchemas.Request\”>
<Header xmlns=\”\”>
<ReqID>R12345_</ReqID>
<Date>Today_</Date>
</Header>
<Item xmlns=\”\”>
<Description>Description_</Description>
<Quantity>600 </Quantity>
<UnitPrice>1.45 </UnitPrice>
<TotalPrice>870.00 </TotalPrice>
</Item>
</Request>
So you need to manually override the default namespace inheritance by specifying no namespace on child nodes