Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Xml 错误:元素“Return”:验证根目录没有匹配的全局声明_Xml_Xsd - Fatal编程技术网

Xml 错误:元素“Return”:验证根目录没有匹配的全局声明

Xml 错误:元素“Return”:验证根目录没有匹配的全局声明,xml,xsd,Xml,Xsd,我正在尝试用xsd文件验证xml文件,以便为加拿大税务局提交T2202税单 下面是我的xml文件,可以稍微修改一下,以便使用xsd模式文件进行验证 <?xml version="1.0" encoding="UTF-8"?> <Return> <T2202> <T2202Slip> <SlipReportTypeCode>O</SlipReportTypeCode>

我正在尝试用xsd文件验证xml文件,以便为加拿大税务局提交T2202税单

下面是我的xml文件,可以稍微修改一下,以便使用xsd模式文件进行验证

<?xml version="1.0" encoding="UTF-8"?>

<Return>
    <T2202>
        <T2202Slip>
            <SlipReportTypeCode>O</SlipReportTypeCode>
            <FilerAccountNumber>000000000RZ0000</FilerAccountNumber>
            <PostSecondaryEducationalSchoolProgramName>Webdevelopment</PostSecondaryEducationalSchoolProgramName>
            <PostSecondaryEducationalSchoolTypeCode>1</PostSecondaryEducationalSchoolTypeCode>
            <FlyingSchoolClubCourseTypeCode>1</FlyingSchoolClubCourseTypeCode>
            <StudentName>
                <FamilyName>Jacob</FamilyName>
                <GivenName>peter</GivenName>
                <NameInitialText>k</NameInitialText>
            </StudentName>
            <SocialInsuranceNumber>000000000</SocialInsuranceNumber>
            <StudentNumber>501058988</StudentNumber>
            <StudentAddress>
                <AddressLine1Text>202-2526 LAKEVIEW</AddressLine1Text>
                <AddressLine2Text>CRES</AddressLine2Text>
                <CityName>ABBOTSFORD</CityName>
                <ProvinceStateCode>BC</ProvinceStateCode>
                <CountryCode>CAN</CountryCode>
                <PostalZipCode>V2W3A9</PostalZipCode>
            </StudentAddress>
            <SchoolSession>
                <StartYearMonth>1901</StartYearMonth>
                <EndYearMonth>1909</EndYearMonth>
                <EligibleTuitionFeeAmount>153.64</EligibleTuitionFeeAmount>
                <PartTimeStudentMonthCount>9</PartTimeStudentMonthCount>
                <FullTimeStudentMonthCount>0</FullTimeStudentMonthCount>
            </SchoolSession>
            <TotalEligibleTuitionFeeAmount>0</TotalEligibleTuitionFeeAmount>
            <TotalPartTimeStudentMonthCount>0</TotalPartTimeStudentMonthCount>
            <TotalFullTimeStudentMonthCount>0</TotalFullTimeStudentMonthCount>
        </T2202Slip>
        <T2202Summary>
            <FilerAccountNumber>000000000RZ0000</FilerAccountNumber>
            <SummaryReportTypeCode>O</SummaryReportTypeCode>
            <TaxationYear>2019</TaxationYear>
            <TotalSlipCount>1</TotalSlipCount>
            <PostSecondaryEducationalInstitutionName>
                <NameLine1Text>CAREER COLLEGE</NameLine1Text>
            </PostSecondaryEducationalInstitutionName>
            <PostSecondaryEducationalInstitutionMailingAddress>
                <CityName>ABBOTSFORD</CityName>
                <ProvinceStateCode>BC</ProvinceStateCode>
                <CountryCode>CAN</CountryCode>
                <PostalZipCode>V2W3A9</PostalZipCode>
            </PostSecondaryEducationalInstitutionMailingAddress>
            <ContactInformation>
                <ContactName>JOHN</ContactName>
                <ContactAreaCode>604</ContactAreaCode>
                <ContactPhoneNumber>720-4037</ContactPhoneNumber>
                <ContactExtensionNumber>6789</ContactExtensionNumber>
            </ContactInformation>
            <TotalEligibleTuitionFeeAmount>153.64</TotalEligibleTuitionFeeAmount>
        </T2202Summary>
    </T2202>
</Return>

请在下面找到我的xsd模式文件,该文件来自政府网站

<?xml version="1.0" encoding="ISO-8859-1"?>

<!--
Description T2202 Return Complex and Element Types
Last updated    May 2019
Version#:   1.19 (version #.yy)
-->

<xsd:schema xmlns:sdt="http://www.cra-arc.gc.ca/xmlns/sdt/2-2-0" 
    xmlns:ccms="http://www.cra-arc.gc.ca/xmlns/ccms/1-0-0" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:import namespace="http://www.cra-arc.gc.ca/xmlns/sdt/2-2-0" schemaLocation="standarddatatypes.xsd"/>
    <xsd:import namespace="http://www.cra-arc.gc.ca/xmlns/ccms/1-0-0" schemaLocation="cracommonstructures.xsd"/>
    <xsd:include schemaLocation="lemmcommontypes.xsd"/>

    <xsd:complexType name="T2202SlipType">
        <xsd:sequence>
            <xsd:element ref="SlipReportTypeCode"/>
            <xsd:element name="FilerAccountNumber" type="BNRZType"/>
            <xsd:element name="PostSecondaryEducationalSchoolProgramName" type="Length1to30TextType"/>

            <!-- School type code:
                1. University
                2. College
                3. Other education institution providing courses at a post-secondary school level
                4. Certified by the Minister of Employment and Social Development Canada
                5. Flying school or club
            -->
            <xsd:element name="PostSecondaryEducationalSchoolTypeCode" type="OneToFiveCodeType"/>

            <!-- Flying school or club course type code. Must have a value if School type code is 5,
                 should be blank if school type code is 1-4. Valid values:
                1. Private pilots license
                2. Commercial pilots licence
                3. Civil flying instructor rating
                4. Helicopter category rating
                5. Instrument rating
                6. Other
            -->
            <xsd:element name="FlyingSchoolClubCourseTypeCode" type="OneToSixCodeType" minOccurs="0"/>
            <xsd:element name="StudentName" type="IndividualNameType"/>
            <xsd:element name="SocialInsuranceNumber" type="ccms:SINType"/>
            <xsd:element name="StudentNumber" type="Length1to20TextType" minOccurs="0"/>
            <xsd:element name="StudentAddress" type="RequiredLine1AddressType"/>
            <xsd:element name="SchoolSession" type="SchoolSessionType" minOccurs="1" maxOccurs="4"/>
            <xsd:element name="TotalEligibleTuitionFeeAmount" type="Decimal13AmountType" minOccurs="0"/>
            <xsd:element name="TotalPartTimeStudentMonthCount" type="ZeroToTwelveCountType"/>
            <xsd:element name="TotalFullTimeStudentMonthCount" type="ZeroToTwelveCountType"/>
        </xsd:sequence>
    </xsd:complexType>

    <xsd:complexType name="SchoolSessionType">
        <xsd:all>
            <xsd:element name="StartYearMonth" type="YYMMType"/>
            <xsd:element name="EndYearMonth" type="YYMMType"/>
            <xsd:element name="EligibleTuitionFeeAmount" type="Decimal11AmountType" minOccurs="0"/>
            <xsd:element name="PartTimeStudentMonthCount" type="ZeroToTwelveCountType"/>
            <xsd:element name="FullTimeStudentMonthCount" type="ZeroToTwelveCountType"/>
        </xsd:all>
    </xsd:complexType>

    <xsd:complexType name="T2202SummaryType">
        <xsd:all>
            <xsd:element name="FilerAccountNumber" type="BNRZType"/>
            <xsd:element ref="SummaryReportTypeCode"/>
            <xsd:element name="FilerAmendmentNote" type="Length1to1309TextType" minOccurs="0"/>
            <xsd:element ref="TaxationYear"/>
            <xsd:element ref="TotalSlipCount"/>
            <xsd:element name="PostSecondaryEducationalInstitutionName" type="ThreeLinedLength30NameType"/>
            <xsd:element name="PostSecondaryEducationalInstitutionMailingAddress" type="RequiredLine1AddressType"/>
            <xsd:element name="ContactInformation" type="ContactType3" minOccurs="0"/>
            <xsd:element name="TotalEligibleTuitionFeeAmount" type="Decimal15AmountType"/>
        </xsd:all>
    </xsd:complexType>
</xsd:schema>
我需要验证xml文件。可以对xml文件进行轻微更改。我得到下面的错误

错误:元素“Return”:验证根目录没有匹配的全局声明


提前感谢

我调试了您的XSD集,最后发现了关键错误:

因此,要么将minOccurs=0属性添加到lemmcommontypes.xsd中的以下元素

这可能是不可能的,因为您无法更改XSD

或者,如果无法执行此操作,请将值TotalEligibleTutionFeeAmunit从0更改为0.00,以使正则表达式匹配

使XML与XSD集匹配

在这两种情况下,您都必须将以下定义添加到从frms.XSD复制的上述XSD文件中:

使上述XML匹配。
现在应该验证XML了。

我调试了XSD集,最后发现了关键错误:

因此,要么将minOccurs=0属性添加到lemmcommontypes.xsd中的以下元素

这可能是不可能的,因为您无法更改XSD

或者,如果无法执行此操作,请将值TotalEligibleTutionFeeAmunit从0更改为0.00,以使正则表达式匹配

使XML与XSD集匹配

在这两种情况下,您都必须将以下定义添加到从frms.XSD复制的上述XSD文件中:

使上述XML匹配。
现在应该验证XML了。

我认为问题在于,您的XML应该包含在一个as中

随后,我根据中包含的模式验证了xml文件

我不必像目前接受的答案那样对XSD文件进行任何修改

您提交给CRA的文件应如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<Submission xmlns:ccms="http://www.cra-arc.gc.ca/xmlns/ccms/1-0-0" 
  xmlns:sdt="http://www.cra-arc.gc.ca/xmlns/sdt/2-2-0" 
  xmlns:ols="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols/1-0-1" 
  xmlns:ols1="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols1/1-0-1" 
  xmlns:ols10="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols10/1-0-1" 
  xmlns:ols100="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols100/1-0-1" 
  xmlns:ols12="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols12/1-0-1" 
  xmlns:ols125="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols125/1-0-1" 
  xmlns:ols140="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols140/1-0-1" 
  xmlns:ols141="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols141/1-0-1" 
  xmlns:ols2="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols2/1-0-1" 
  xmlns:ols5="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols5/1-0-1" 
  xmlns:ols50="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols50/1-0-1" 
  xmlns:ols52="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols52/1-0-1" 
  xmlns:ols6="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols6/1-0-1" 
  xmlns:ols8="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols8/1-0-1" 
  xmlns:ols8-1="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols8-1/1-0-1" 
  xmlns:ols9="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols9/1-0-1" 
  xmlns:olsbr="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/olsbr/1-0-1" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="layout-topologie.xsd">
  <T619>
    <sbmt_ref_id>00000001</sbmt_ref_id>
    <rpt_tcd>O</rpt_tcd>
    <trnmtr_nbr>MM555555</trnmtr_nbr>
    <trnmtr_tcd>1</trnmtr_tcd>
    <summ_cnt>1</summ_cnt>
    <lang_cd>E</lang_cd>
    <TRNMTR_NM>
      <l1_nm>CAREER COLLEGE</l1_nm>
    </TRNMTR_NM>
    <TRNMTR_ADDR>
      <addr_l1_txt>Address of School</addr_l1_txt>
      <cty_nm>ABBOTSFORD</cty_nm>
      <prov_cd>BC</prov_cd>
      <cntry_cd>CAN</cntry_cd>
      <pstl_cd>V2W3A9</pstl_cd>
    </TRNMTR_ADDR>
    <CNTC>
      <cntc_nm>JOHN LASTNAME</cntc_nm>
      <cntc_area_cd>604</cntc_area_cd>
      <cntc_phn_nbr>720-4037</cntc_phn_nbr>
      <cntc_email_area>john@careercollege.com</cntc_email_area>
    </CNTC>
  </T619>
  <Return>
    Your return from above goes here
  </Return>
</Submission>


我认为问题在于,您的应用程序应该按照包含在a中

随后,我根据中包含的模式验证了xml文件

我不必像目前接受的答案那样对XSD文件进行任何修改

您提交给CRA的文件应如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<Submission xmlns:ccms="http://www.cra-arc.gc.ca/xmlns/ccms/1-0-0" 
  xmlns:sdt="http://www.cra-arc.gc.ca/xmlns/sdt/2-2-0" 
  xmlns:ols="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols/1-0-1" 
  xmlns:ols1="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols1/1-0-1" 
  xmlns:ols10="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols10/1-0-1" 
  xmlns:ols100="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols100/1-0-1" 
  xmlns:ols12="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols12/1-0-1" 
  xmlns:ols125="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols125/1-0-1" 
  xmlns:ols140="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols140/1-0-1" 
  xmlns:ols141="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols141/1-0-1" 
  xmlns:ols2="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols2/1-0-1" 
  xmlns:ols5="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols5/1-0-1" 
  xmlns:ols50="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols50/1-0-1" 
  xmlns:ols52="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols52/1-0-1" 
  xmlns:ols6="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols6/1-0-1" 
  xmlns:ols8="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols8/1-0-1" 
  xmlns:ols8-1="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols8-1/1-0-1" 
  xmlns:ols9="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols9/1-0-1" 
  xmlns:olsbr="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/olsbr/1-0-1" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="layout-topologie.xsd">
  <T619>
    <sbmt_ref_id>00000001</sbmt_ref_id>
    <rpt_tcd>O</rpt_tcd>
    <trnmtr_nbr>MM555555</trnmtr_nbr>
    <trnmtr_tcd>1</trnmtr_tcd>
    <summ_cnt>1</summ_cnt>
    <lang_cd>E</lang_cd>
    <TRNMTR_NM>
      <l1_nm>CAREER COLLEGE</l1_nm>
    </TRNMTR_NM>
    <TRNMTR_ADDR>
      <addr_l1_txt>Address of School</addr_l1_txt>
      <cty_nm>ABBOTSFORD</cty_nm>
      <prov_cd>BC</prov_cd>
      <cntry_cd>CAN</cntry_cd>
      <pstl_cd>V2W3A9</pstl_cd>
    </TRNMTR_ADDR>
    <CNTC>
      <cntc_nm>JOHN LASTNAME</cntc_nm>
      <cntc_area_cd>604</cntc_area_cd>
      <cntc_phn_nbr>720-4037</cntc_phn_nbr>
      <cntc_email_area>john@careercollege.com</cntc_email_area>
    </CNTC>
  </T619>
  <Return>
    Your return from above goes here
  </Return>
</Submission>


您的示例缺少xsd:importfile和xsd:include文件。因此,它不是一个完整的,因此可能无法回答的.xsd:import文件,其中包含由政府保护的文件。公众将无法查看这些文件。我自己根据政府的规范创建了xml文件。[链接]如果政府不提供standarddatatypes.xsd、cracommonstructures.xsd和lemmcommontypes.xsd文件,那么除了政府之外,你和其他人都不能验证XML文件。这些文件对于验证相应的XML文件是绝对必要的,因为它们包含元素和属性的类型。[link]-在这里,您可以在步骤2中找到xmlschm1-20-5.zip,我从中获得了questiont2202.xsd和lemmcommontypes.xsd中提到的xsd模式。此外,如果您完成这些步骤,您将看到它们没有提供太多信息。下面是指向所有xsd的链接:您的示例缺少xsd:importfile和xsd:include文件。因此,它不是一个完整的,因此可能无法回答的.xsd:import文件,其中包含由政府保护的文件。公众将无法查看这些文件。我自己根据政府的规范创建了xml文件。[链接]如果政府不提供standarddatatypes.xsd、cracommonstructures.xsd和lemmcommontypes.xsd文件,那么除了政府之外,你和其他人都不能验证XML文件。这些文件对于验证相应的XML文件是绝对必要的,因为它们包含元素和属性的类型。[link]-在这里,您可以在步骤2中找到xmlschm1-20-5.zip,我从中获得了questiont2202.xsd和lemmcommontypes.xsd中提到的xsd模式。此外,如果您完成这些步骤,您将看到它们没有提供太多信息。这是指向所有xsd的链接:感谢您的时间。通过添加此代码,XML现在是有效的。但是,我可以向XML文件中添加一些内容,而不是更改xsd文件吗?这是因为在报税时,我们需要使用正确的xml。更改xsd不是一个选项,正如我在上面的回答中所写的:选项1和3更改xsd,选项2和4更改XML。因此,如果无法更改XSD,请使用选项2和4。这意味着添加任何行!!!并将XML中的0更改为0.00。然后将答案最后一部分中提到的定义添加到XSD中。但我说的是添加定义
在答案的最后一部分,在你的XSD列表之后。这是对xsd文件的一种更改,对吗?我必须添加最后一部分,我只是从frms.xsd文件中复制了这一部分,以使您在问题中描述的整个情况都有效。在一个完整的场景中,可能包含了frms.xsd,因此不需要添加。但要完整地回答这个问题,答案是肯定的。这就是我提到MCVE的原因:要使MCVE工作,必须添加最后一部分。要验证文件,请使用验证解析器对照我们的模式文件检查.xml文件的格式和内容。-我希望将代码从一个文件添加到另一个文件是可以的。感谢您的时间。通过添加此代码,XML现在是有效的。但是,有什么东西可以添加到XML文件而不是更改xsd文件吗?这是因为在报税时,我们需要使用正确的xml。更改xsd不是一个选项,正如我在上面的回答中所写的:选项1和3更改xsd,选项2和4更改XML。因此,如果无法更改XSD,请使用选项2和4。这意味着添加任何行!!!并将XML中的0更改为0.00。然后将答案最后一部分中提到的定义添加到XSD中。但我所说的是将答案最后一部分中提到的定义添加到XSD列表之后。这是对xsd文件的一种更改,对吗?我必须添加最后一部分,我只是从frms.xsd文件中复制了这一部分,以使您在问题中描述的整个情况都有效。在一个完整的场景中,可能包含了frms.xsd,因此不需要添加。但要完整地回答这个问题,答案是肯定的。这就是我提到MCVE的原因:要使MCVE工作,必须添加最后一部分。要验证文件,请使用验证解析器对照我们的模式文件检查.xml文件的格式和内容。-我希望将代码从一个文件添加到另一个文件是可以的。是的,我提交的提交没有T619,但被CRA拒绝。是的,我提交的提交没有T619,但被CRA拒绝。
<xsd:simpleType name="Decimal13AmountType">
    <xsd:restriction base="sdt:AmountType">
        <xsd:totalDigits value="13"></xsd:totalDigits>
        <xsd:pattern value="[+]?\d{0,11}(\.\d{2})?"/>
        <xsd:minInclusive value="0"/>
    </xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="T2202ReturnType">   <!-- From frms.xsd -->
    <xsd:sequence>
        <xsd:element name="T2202Slip" type="T2202SlipType" minOccurs="0" maxOccurs="unbounded"/>
        <xsd:element name="T2202Summary" type="T2202SummaryType"/>
    </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="ReturnChoiceType">  <!-- From frms.xsd -->
    <xsd:choice>
        <xsd:element name="T2202" type="T2202ReturnType" minOccurs="0"/>
    </xsd:choice>
</xsd:complexType>

<xsd:element name="Return" type="ReturnChoiceType"/>
<?xml version="1.0" encoding="UTF-8"?>
<Submission xmlns:ccms="http://www.cra-arc.gc.ca/xmlns/ccms/1-0-0" 
  xmlns:sdt="http://www.cra-arc.gc.ca/xmlns/sdt/2-2-0" 
  xmlns:ols="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols/1-0-1" 
  xmlns:ols1="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols1/1-0-1" 
  xmlns:ols10="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols10/1-0-1" 
  xmlns:ols100="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols100/1-0-1" 
  xmlns:ols12="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols12/1-0-1" 
  xmlns:ols125="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols125/1-0-1" 
  xmlns:ols140="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols140/1-0-1" 
  xmlns:ols141="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols141/1-0-1" 
  xmlns:ols2="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols2/1-0-1" 
  xmlns:ols5="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols5/1-0-1" 
  xmlns:ols50="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols50/1-0-1" 
  xmlns:ols52="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols52/1-0-1" 
  xmlns:ols6="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols6/1-0-1" 
  xmlns:ols8="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols8/1-0-1" 
  xmlns:ols8-1="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols8-1/1-0-1" 
  xmlns:ols9="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/ols9/1-0-1" 
  xmlns:olsbr="http://www.cra-arc.gc.ca/enov/ol/interfaces/efile/partnership/olsbr/1-0-1" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="layout-topologie.xsd">
  <T619>
    <sbmt_ref_id>00000001</sbmt_ref_id>
    <rpt_tcd>O</rpt_tcd>
    <trnmtr_nbr>MM555555</trnmtr_nbr>
    <trnmtr_tcd>1</trnmtr_tcd>
    <summ_cnt>1</summ_cnt>
    <lang_cd>E</lang_cd>
    <TRNMTR_NM>
      <l1_nm>CAREER COLLEGE</l1_nm>
    </TRNMTR_NM>
    <TRNMTR_ADDR>
      <addr_l1_txt>Address of School</addr_l1_txt>
      <cty_nm>ABBOTSFORD</cty_nm>
      <prov_cd>BC</prov_cd>
      <cntry_cd>CAN</cntry_cd>
      <pstl_cd>V2W3A9</pstl_cd>
    </TRNMTR_ADDR>
    <CNTC>
      <cntc_nm>JOHN LASTNAME</cntc_nm>
      <cntc_area_cd>604</cntc_area_cd>
      <cntc_phn_nbr>720-4037</cntc_phn_nbr>
      <cntc_email_area>john@careercollege.com</cntc_email_area>
    </CNTC>
  </T619>
  <Return>
    Your return from above goes here
  </Return>
</Submission>