common/tools/ats/bctest/xmlsrv/xmlsrv.pl
changeset 1190 6f2a3431cc87
child 1196 c0b9bf290520
equal deleted inserted replaced
1189:9a976c4078e9 1190:6f2a3431cc87
       
     1 #!/usr/bin/perl
       
     2 # Copyright (c) 2009 Symbian Foundation Ltd
       
     3 # This component and the accompanying materials are made available
       
     4 # under the terms of the License "Eclipse Public License v1.0"
       
     5 # which accompanies this distribution, and is available
       
     6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 #
       
     8 # Initial Contributors:
       
     9 # Symbian Foundation Ltd - initial contribution.
       
    10 #
       
    11 # Contributors:
       
    12 # Maciej Seroka <maciejs@symbian.org>
       
    13 #
       
    14 # Description:
       
    15 # Script to build ATS test drop for XML Services tests
       
    16 
       
    17 
       
    18 use strict;
       
    19 use File::Copy;
       
    20 use File::Path;
       
    21 
       
    22 unlink "xmlsrv.zip";
       
    23 rmtree "temp";
       
    24 mkpath "temp/xmlsrvtest/general/TestFramework";
       
    25 mkpath "temp/xmlsrvtest/general/XMLTest";
       
    26 mkpath "temp/xmlsrvtest/general/XMLTest/output";
       
    27 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont";
       
    28 mkpath "temp/xmlsrvtest/general/XMLTest/output/chunkparser";
       
    29 mkpath "temp/xmlsrvtest/general/XMLTest/output/dom";
       
    30 mkpath "temp/xmlsrvtest/general/XMLTest/output/Encoding";
       
    31 mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf";
       
    32 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct";
       
    33 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial";
       
    34 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/appcontents";
       
    35 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/contents";
       
    36 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/copy";
       
    37 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/create";
       
    38 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/move";
       
    39 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/remove";
       
    40 mkpath "temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/replace";
       
    41 mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest";
       
    42 mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/not_wf";
       
    43 mkpath "temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/wf";
       
    44 mkpath "temp/xmlsrvtest/general/XMLTest/input/bincont";
       
    45 mkpath "temp/xmlsrvtest/general/XMLTest/input/chunk";
       
    46 mkpath "temp/xmlsrvtest/general/XMLTest/input/containers";
       
    47 mkpath "temp/xmlsrvtest/general/XMLTest/input/dom";
       
    48 mkpath "temp/xmlsrvtest/general/XMLTest/input/correct";
       
    49 mkpath "temp/xmlsrvtest/general/XMLTest/input/Encoding";
       
    50 mkpath "temp/xmlsrvtest/general/XMLTest/input/filecontainer";
       
    51 mkpath "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf";
       
    52 mkpath "temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf";
       
    53 mkpath "temp/xmlsrvtest/general/XMLTest/pattern/chunkparser";
       
    54 mkpath "temp/xmlsrvtest/general/XMLTest/pattern/dom";
       
    55 mkpath "temp/xmlsrvtest/general/XMLTest/pattern/Encoding";
       
    56 mkpath "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf";
       
    57 mkpath "temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf";
       
    58 
       
    59 mkpath "temp/xmlsrvtest/winscw_udeb";
       
    60 
       
    61 my $epoc=$ENV{'EPOCROOT'} . "epoc32/";
       
    62 copy("xmlsrv.xml",	"temp/test.xml");
       
    63 
       
    64 copy($epoc . "release/winscw/udeb/XeDomBCTester.dll",			"temp/xmlsrvtest/winscw_udeb/XeDomBCTester.dll") or die "failed : $!";
       
    65 copy($epoc . "winscw/c/TestFramework/DomBinCont.cfg",			"temp/xmlsrvtest/general/TestFramework/DomBinCont.cfg") or die "failed : $!";
       
    66 copy($epoc . "winscw/c/TestFramework/DomChunkCont.cfg",			"temp/xmlsrvtest/general/TestFramework/DomChunkCont.cfg") or die "failed : $!";
       
    67 copy($epoc . "winscw/c/TestFramework/DomChunkParser.cfg",		"temp/xmlsrvtest/general/TestFramework/DomChunkParser.cfg") or die "failed : $!";
       
    68 copy($epoc . "winscw/c/TestFramework/DomElem.cfg",				"temp/xmlsrvtest/general/TestFramework/DomElem.cfg") or die "failed : $!";
       
    69 copy($epoc . "winscw/c/TestFramework/DomEncoding.cfg",			"temp/xmlsrvtest/general/TestFramework/DomEncoding.cfg") or die "failed : $!";
       
    70 copy($epoc . "winscw/c/TestFramework/DomFileCont.cfg",			"temp/xmlsrvtest/general/TestFramework/DomFileCont.cfg") or die "failed : $!";
       
    71 copy($epoc . "winscw/c/TestFramework/DomModif.cfg",				"temp/xmlsrvtest/general/TestFramework/DomModif.cfg") or die "failed : $!";
       
    72 copy($epoc . "winscw/c/TestFramework/DomNodeFilter.cfg",		"temp/xmlsrvtest/general/TestFramework/DomNodeFilter.cfg") or die "failed : $!";
       
    73 copy($epoc . "winscw/c/TestFramework/DomNotWF.cfg",				"temp/xmlsrvtest/general/TestFramework/DomNotWF.cfg") or die "failed : $!";
       
    74 copy($epoc . "winscw/c/TestFramework/DomWF.cfg",				"temp/xmlsrvtest/general/TestFramework/DomWF.cfg") or die "failed : $!";
       
    75 copy($epoc . "winscw/c/TestFramework/DomXmlId.cfg",				"temp/xmlsrvtest/general/TestFramework/DomXmlId.cfg") or die "failed : $!";
       
    76 copy($epoc . "winscw/c/TestFramework/DomXPath.cfg",				"temp/xmlsrvtest/general/TestFramework/DomXPath.cfg") or die "failed : $!";
       
    77 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/XMLTest.out") or die "failed : $!";
       
    78 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/chunkparser/XMLTest.out") or die "failed : $!";
       
    79 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/dom/XMLTest.out") or die "failed : $!";
       
    80 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/Encoding/XMLTest.out") or die "failed : $!";
       
    81 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/xmlconf/XMLTest.out") or die "failed : $!";
       
    82 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/XMLTest.out") or die "failed : $!";
       
    83 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/XMLTest.out") or die "failed : $!";
       
    84 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/appcontents/XMLTest.out") or die "failed : $!";
       
    85 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/contents/XMLTest.out") or die "failed : $!";
       
    86 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/copy/XMLTest.out") or die "failed : $!";
       
    87 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/create/XMLTest.out") or die "failed : $!";
       
    88 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/move/XMLTest.out") or die "failed : $!";
       
    89 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/remove/XMLTest.out") or die "failed : $!";
       
    90 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/bincont/correct/partial/replace/XMLTest.out") or die "failed : $!";
       
    91 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/XMLTest.out") or die "failed : $!";
       
    92 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/not_wf/XMLTest.out") or die "failed : $!";
       
    93 copy($epoc . "winscw/c/XMLTest/XMLTest.out",		"temp/xmlsrvtest/general/XMLTest/output/xmlconf/xmltest/wf/XMLTest.out") or die "failed : $!";
       
    94 copy($epoc . "winscw/c/XMLTest/input/bincont/CreateSequenceSec.xml",		"temp/xmlsrvtest/general/XMLTest/input/bincont/CreateSequenceSec.xml") or die "failed : $!";
       
    95 copy($epoc . "winscw/c/XMLTest/input/bincont/signed-doc.xml",		"temp/xmlsrvtest/general/XMLTest/input/bincont/signed-doc.xml") or die "failed : $!";
       
    96 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_00.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_00.xml") or die "failed : $!";
       
    97 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_01.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_01.xml") or die "failed : $!";
       
    98 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_02.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_02.xml") or die "failed : $!";
       
    99 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_03.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_03.xml") or die "failed : $!";
       
   100 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_04.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_04.xml") or die "failed : $!";
       
   101 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_05.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_05.xml") or die "failed : $!";
       
   102 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_06.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_06.xml") or die "failed : $!";
       
   103 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_07.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_07.xml") or die "failed : $!";
       
   104 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_09.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_09.xml") or die "failed : $!";
       
   105 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_not_wf_10.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_not_wf_10.xml") or die "failed : $!";
       
   106 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_01.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_01.xml") or die "failed : $!";
       
   107 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_02.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_02.xml") or die "failed : $!";
       
   108 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_03.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_03.xml") or die "failed : $!";
       
   109 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_04.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_04.xml") or die "failed : $!";
       
   110 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_05.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_05.xml") or die "failed : $!";
       
   111 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_06.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_06.xml") or die "failed : $!";
       
   112 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_07.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_07.xml") or die "failed : $!";
       
   113 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_08.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_08.xml") or die "failed : $!";
       
   114 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_09.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_09.xml") or die "failed : $!";
       
   115 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_10.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_10.xml") or die "failed : $!";
       
   116 copy($epoc . "winscw/c/XMLTest/input/chunk/XML_wf_11.xml",		"temp/xmlsrvtest/general/XMLTest/input/chunk/XML_wf_11.xml") or die "failed : $!";
       
   117 copy($epoc . "winscw/c/XMLTest/input/containers/ascii.bin",		"temp/xmlsrvtest/general/XMLTest/input/containers/ascii.bin") or die "failed : $!";
       
   118 copy($epoc . "winscw/c/XMLTest/input/containers/entities.txt",		"temp/xmlsrvtest/general/XMLTest/input/containers/entities.txt") or die "failed : $!";
       
   119 copy($epoc . "winscw/c/XMLTest/input/containers/errors.doc",		"temp/xmlsrvtest/general/XMLTest/input/containers/errors.doc") or die "failed : $!";
       
   120 copy($epoc . "winscw/c/XMLTest/input/containers/html.zip",		"temp/xmlsrvtest/general/XMLTest/input/containers/html.zip") or die "failed : $!";
       
   121 copy($epoc . "winscw/c/XMLTest/input/containers/login.gif",		"temp/xmlsrvtest/general/XMLTest/input/containers/login.gif") or die "failed : $!";
       
   122 copy($epoc . "winscw/c/XMLTest/input/containers/not-escaped.txt",		"temp/xmlsrvtest/general/XMLTest/input/containers/not-escaped.txt") or die "failed : $!";
       
   123 copy($epoc . "winscw/c/XMLTest/input/containers/petit.jpg",		"temp/xmlsrvtest/general/XMLTest/input/containers/petit.jpg") or die "failed : $!";
       
   124 copy($epoc . "winscw/c/XMLTest/input/containers/picture.jpg",		"temp/xmlsrvtest/general/XMLTest/input/containers/picture.jpg") or die "failed : $!";
       
   125 copy($epoc . "winscw/c/XMLTest/input/containers/zip.bin",		"temp/xmlsrvtest/general/XMLTest/input/containers/zip.bin") or die "failed : $!";
       
   126 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_000.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_000.xml") or die "failed : $!";
       
   127 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_001.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_001.xml") or die "failed : $!";
       
   128 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_002.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_002.xml") or die "failed : $!";
       
   129 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_003.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_003.xml") or die "failed : $!";
       
   130 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_004.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_004.xml") or die "failed : $!";
       
   131 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_005.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_005.xml") or die "failed : $!";
       
   132 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_elem_006.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_elem_006.xml") or die "failed : $!";
       
   133 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_ID_01.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_ID_01.xml") or die "failed : $!";
       
   134 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_01.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_01.xml") or die "failed : $!";
       
   135 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_02.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_02.xml") or die "failed : $!";
       
   136 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_03.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_03.xml") or die "failed : $!";
       
   137 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_04.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_04.xml") or die "failed : $!";
       
   138 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_05.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_05.xml") or die "failed : $!";
       
   139 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_06.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_06.xml") or die "failed : $!";
       
   140 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_07.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_07.xml") or die "failed : $!";
       
   141 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_08.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_08.xml") or die "failed : $!";
       
   142 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_09.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_09.xml") or die "failed : $!";
       
   143 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_modif_10.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_modif_10.xml") or die "failed : $!";
       
   144 copy($epoc . "winscw/c/XMLTest/input/dom/DOM_nodefilter.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/DOM_nodefilter.xml") or die "failed : $!";
       
   145 copy($epoc . "winscw/c/XMLTest/input/dom/xpath_01.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/xpath_01.xml") or die "failed : $!";
       
   146 copy($epoc . "winscw/c/XMLTest/input/dom/xpath_02.xml",		"temp/xmlsrvtest/general/XMLTest/input/dom/xpath_02.xml") or die "failed : $!";
       
   147 copy($epoc . "winscw/c/XMLTest/input/correct/XML_correct_012.xml",		"temp/xmlsrvtest/general/XMLTest/input/correct/XML_correct_012.xml") or die "failed : $!";
       
   148 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_001.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_001.xml") or die "failed : $!";
       
   149 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_002.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_002.xml") or die "failed : $!";
       
   150 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_003.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_003.xml") or die "failed : $!";
       
   151 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_004.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_004.xml") or die "failed : $!";
       
   152 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_005.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_005.xml") or die "failed : $!";
       
   153 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_006.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_006.xml") or die "failed : $!";
       
   154 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_007.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_007.xml") or die "failed : $!";
       
   155 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_008.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_008.xml") or die "failed : $!";
       
   156 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_009.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_009.xml") or die "failed : $!";
       
   157 copy($epoc . "winscw/c/XMLTest/input/Encoding/XML_encoding_010.xml",		"temp/xmlsrvtest/general/XMLTest/input/Encoding/XML_encoding_010.xml") or die "failed : $!";
       
   158 copy($epoc . "winscw/c/XMLTest/input/filecontainer/icon.gif",		"temp/xmlsrvtest/general/XMLTest/input/filecontainer/icon.gif") or die "failed : $!";
       
   159 copy($epoc . "winscw/c/XMLTest/input/filecontainer/test.doc",		"temp/xmlsrvtest/general/XMLTest/input/filecontainer/test.doc") or die "failed : $!";
       
   160 copy($epoc . "winscw/c/XMLTest/input/filecontainer/test.jpg",		"temp/xmlsrvtest/general/XMLTest/input/filecontainer/test.jpg") or die "failed : $!";
       
   161 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_001.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_001.xml") or die "failed : $!";
       
   162 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_002.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_002.xml") or die "failed : $!";
       
   163 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_003.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_003.xml") or die "failed : $!";
       
   164 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_004.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_004.xml") or die "failed : $!";
       
   165 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_005.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_005.xml") or die "failed : $!";
       
   166 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_006.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_006.xml") or die "failed : $!";
       
   167 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_007.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_007.xml") or die "failed : $!";
       
   168 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_008.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_008.xml") or die "failed : $!";
       
   169 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_009.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_009.xml") or die "failed : $!";
       
   170 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_010.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_010.xml") or die "failed : $!";
       
   171 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_011.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_011.xml") or die "failed : $!";
       
   172 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_012.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_012.xml") or die "failed : $!";
       
   173 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_013.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_013.xml") or die "failed : $!";
       
   174 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_014.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_014.xml") or die "failed : $!";
       
   175 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_015.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_015.xml") or die "failed : $!";
       
   176 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_016.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_016.xml") or die "failed : $!";
       
   177 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_017.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_017.xml") or die "failed : $!";
       
   178 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_018.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_018.xml") or die "failed : $!";
       
   179 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_019.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_019.xml") or die "failed : $!";
       
   180 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_020.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_020.xml") or die "failed : $!";
       
   181 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_021.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_021.xml") or die "failed : $!";
       
   182 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_022.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_022.xml") or die "failed : $!";
       
   183 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_023.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_023.xml") or die "failed : $!";
       
   184 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_024.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_024.xml") or die "failed : $!";
       
   185 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_025.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_025.xml") or die "failed : $!";
       
   186 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_026.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_026.xml") or die "failed : $!";
       
   187 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_027.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_027.xml") or die "failed : $!";
       
   188 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_028.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_028.xml") or die "failed : $!";
       
   189 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_029.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_029.xml") or die "failed : $!";
       
   190 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_030.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_030.xml") or die "failed : $!";
       
   191 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_031.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_031.xml") or die "failed : $!";
       
   192 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_032.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_032.xml") or die "failed : $!";
       
   193 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_033.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_033.xml") or die "failed : $!";
       
   194 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_034.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_034.xml") or die "failed : $!";
       
   195 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_035.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_035.xml") or die "failed : $!";
       
   196 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_036.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_036.xml") or die "failed : $!";
       
   197 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_037.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_037.xml") or die "failed : $!";
       
   198 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_038.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_038.xml") or die "failed : $!";
       
   199 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_039.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_039.xml") or die "failed : $!";
       
   200 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_040.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_040.xml") or die "failed : $!";
       
   201 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_041.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_041.xml") or die "failed : $!";
       
   202 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_042.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_042.xml") or die "failed : $!";
       
   203 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_043.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_043.xml") or die "failed : $!";
       
   204 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_044.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_044.xml") or die "failed : $!";
       
   205 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_045.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_045.xml") or die "failed : $!";
       
   206 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_046.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_046.xml") or die "failed : $!";
       
   207 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_047.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_047.xml") or die "failed : $!";
       
   208 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_048.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_048.xml") or die "failed : $!";
       
   209 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_049.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_049.xml") or die "failed : $!";
       
   210 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_050.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_050.xml") or die "failed : $!";
       
   211 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_051.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_051.xml") or die "failed : $!";
       
   212 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_052.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_052.xml") or die "failed : $!";
       
   213 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_053.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_053.xml") or die "failed : $!";
       
   214 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_054.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_054.xml") or die "failed : $!";
       
   215 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_055.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_055.xml") or die "failed : $!";
       
   216 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_056.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_056.xml") or die "failed : $!";
       
   217 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_057.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_057.xml") or die "failed : $!";
       
   218 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_058.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_058.xml") or die "failed : $!";
       
   219 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_059.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_059.xml") or die "failed : $!";
       
   220 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_060.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_060.xml") or die "failed : $!";
       
   221 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_061.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_061.xml") or die "failed : $!";
       
   222 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_062.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_062.xml") or die "failed : $!";
       
   223 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_063.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_063.xml") or die "failed : $!";
       
   224 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_064.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_064.xml") or die "failed : $!";
       
   225 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_065.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_065.xml") or die "failed : $!";
       
   226 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_066.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_066.xml") or die "failed : $!";
       
   227 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_067.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_067.xml") or die "failed : $!";
       
   228 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_068.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_068.xml") or die "failed : $!";
       
   229 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_069.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_069.xml") or die "failed : $!";
       
   230 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_070.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_070.xml") or die "failed : $!";
       
   231 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_071.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_071.xml") or die "failed : $!";
       
   232 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_072.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_072.xml") or die "failed : $!";
       
   233 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_073.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_073.xml") or die "failed : $!";
       
   234 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_074.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_074.xml") or die "failed : $!";
       
   235 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_075.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_075.xml") or die "failed : $!";
       
   236 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_076.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_076.xml") or die "failed : $!";
       
   237 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_077.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_077.xml") or die "failed : $!";
       
   238 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_078.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_078.xml") or die "failed : $!";
       
   239 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_079.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_079.xml") or die "failed : $!";
       
   240 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_080.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_080.xml") or die "failed : $!";
       
   241 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_081.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_081.xml") or die "failed : $!";
       
   242 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_082.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_082.xml") or die "failed : $!";
       
   243 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_083.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_083.xml") or die "failed : $!";
       
   244 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_084.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_084.xml") or die "failed : $!";
       
   245 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_085.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_085.xml") or die "failed : $!";
       
   246 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_086.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_086.xml") or die "failed : $!";
       
   247 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_087.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_087.xml") or die "failed : $!";
       
   248 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_088.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_088.xml") or die "failed : $!";
       
   249 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_089.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_089.xml") or die "failed : $!";
       
   250 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_090.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_090.xml") or die "failed : $!";
       
   251 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_091.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_091.xml") or die "failed : $!";
       
   252 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_092.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_092.xml") or die "failed : $!";
       
   253 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_093.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_093.xml") or die "failed : $!";
       
   254 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_094.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_094.xml") or die "failed : $!";
       
   255 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_095.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_095.xml") or die "failed : $!";
       
   256 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_096.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_096.xml") or die "failed : $!";
       
   257 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_097.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_097.xml") or die "failed : $!";
       
   258 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_098.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_098.xml") or die "failed : $!";
       
   259 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_099.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_099.xml") or die "failed : $!";
       
   260 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_100.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_100.xml") or die "failed : $!";
       
   261 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_101.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_101.xml") or die "failed : $!";
       
   262 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_102.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_102.xml") or die "failed : $!";
       
   263 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_103.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_103.xml") or die "failed : $!";
       
   264 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_104.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_104.xml") or die "failed : $!";
       
   265 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_105.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_105.xml") or die "failed : $!";
       
   266 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_106.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_106.xml") or die "failed : $!";
       
   267 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_107.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_107.xml") or die "failed : $!";
       
   268 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_108.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_108.xml") or die "failed : $!";
       
   269 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_109.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_109.xml") or die "failed : $!";
       
   270 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_110.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_110.xml") or die "failed : $!";
       
   271 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_111.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_111.xml") or die "failed : $!";
       
   272 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_112.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_112.xml") or die "failed : $!";
       
   273 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_113.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_113.xml") or die "failed : $!";
       
   274 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_114.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_114.xml") or die "failed : $!";
       
   275 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_115.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_115.xml") or die "failed : $!";
       
   276 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_116.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_116.xml") or die "failed : $!";
       
   277 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_117.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_117.xml") or die "failed : $!";
       
   278 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_118.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_118.xml") or die "failed : $!";
       
   279 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_119.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_119.xml") or die "failed : $!";
       
   280 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_120.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_120.xml") or die "failed : $!";
       
   281 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_121.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_121.xml") or die "failed : $!";
       
   282 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_122.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_122.xml") or die "failed : $!";
       
   283 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_123.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_123.xml") or die "failed : $!";
       
   284 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_124.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_124.xml") or die "failed : $!";
       
   285 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_125.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_125.xml") or die "failed : $!";
       
   286 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_126.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_126.xml") or die "failed : $!";
       
   287 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_127.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_127.xml") or die "failed : $!";
       
   288 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_128.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_128.xml") or die "failed : $!";
       
   289 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_129.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_129.xml") or die "failed : $!";
       
   290 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_130.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_130.xml") or die "failed : $!";
       
   291 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_131.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_131.xml") or die "failed : $!";
       
   292 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_132.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_132.xml") or die "failed : $!";
       
   293 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_133.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_133.xml") or die "failed : $!";
       
   294 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_134.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_134.xml") or die "failed : $!";
       
   295 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_135.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_135.xml") or die "failed : $!";
       
   296 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_136.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_136.xml") or die "failed : $!";
       
   297 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_137.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_137.xml") or die "failed : $!";
       
   298 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_138.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_138.xml") or die "failed : $!";
       
   299 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_139.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_139.xml") or die "failed : $!";
       
   300 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_140.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_140.xml") or die "failed : $!";
       
   301 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_141.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_141.xml") or die "failed : $!";
       
   302 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_142.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_142.xml") or die "failed : $!";
       
   303 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_143.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_143.xml") or die "failed : $!";
       
   304 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_144.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_144.xml") or die "failed : $!";
       
   305 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_145.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_145.xml") or die "failed : $!";
       
   306 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_146.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_146.xml") or die "failed : $!";
       
   307 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_147.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_147.xml") or die "failed : $!";
       
   308 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_148.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_148.xml") or die "failed : $!";
       
   309 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_149.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_149.xml") or die "failed : $!";
       
   310 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_150.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_150.xml") or die "failed : $!";
       
   311 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_151.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_151.xml") or die "failed : $!";
       
   312 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_152.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_152.xml") or die "failed : $!";
       
   313 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_153.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_153.xml") or die "failed : $!";
       
   314 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_154.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_154.xml") or die "failed : $!";
       
   315 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_155.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_155.xml") or die "failed : $!";
       
   316 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_156.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_156.xml") or die "failed : $!";
       
   317 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_157.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_157.xml") or die "failed : $!";
       
   318 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_158.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_158.xml") or die "failed : $!";
       
   319 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_159.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_159.xml") or die "failed : $!";
       
   320 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_160.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_160.xml") or die "failed : $!";
       
   321 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_161.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_161.xml") or die "failed : $!";
       
   322 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_162.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_162.xml") or die "failed : $!";
       
   323 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_163.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_163.xml") or die "failed : $!";
       
   324 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_164.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_164.xml") or die "failed : $!";
       
   325 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_165.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_165.xml") or die "failed : $!";
       
   326 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_166.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_166.xml") or die "failed : $!";
       
   327 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_167.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_167.xml") or die "failed : $!";
       
   328 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_168.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_168.xml") or die "failed : $!";
       
   329 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_169.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_169.xml") or die "failed : $!";
       
   330 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_170.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_170.xml") or die "failed : $!";
       
   331 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_171.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_171.xml") or die "failed : $!";
       
   332 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_172.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_172.xml") or die "failed : $!";
       
   333 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_173.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_173.xml") or die "failed : $!";
       
   334 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_174.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_174.xml") or die "failed : $!";
       
   335 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_175.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_175.xml") or die "failed : $!";
       
   336 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_176.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_176.xml") or die "failed : $!";
       
   337 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_177.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_177.xml") or die "failed : $!";
       
   338 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_178.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_178.xml") or die "failed : $!";
       
   339 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_179.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_179.xml") or die "failed : $!";
       
   340 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_180.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_180.xml") or die "failed : $!";
       
   341 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_181.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_181.xml") or die "failed : $!";
       
   342 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_182.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_182.xml") or die "failed : $!";
       
   343 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_183.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_183.xml") or die "failed : $!";
       
   344 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_184.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_184.xml") or die "failed : $!";
       
   345 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_185.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_185.xml") or die "failed : $!";
       
   346 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_186.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/not_wf/XML_not_wf_186.xml") or die "failed : $!";
       
   347 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_001.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_001.xml") or die "failed : $!";
       
   348 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_002.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_002.xml") or die "failed : $!";
       
   349 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_003.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_003.xml") or die "failed : $!";
       
   350 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_004.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_004.xml") or die "failed : $!";
       
   351 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_005.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_005.xml") or die "failed : $!";
       
   352 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_006.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_006.xml") or die "failed : $!";
       
   353 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_007.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_007.xml") or die "failed : $!";
       
   354 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_008.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_008.xml") or die "failed : $!";
       
   355 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_009.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_009.xml") or die "failed : $!";
       
   356 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_010.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_010.xml") or die "failed : $!";
       
   357 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_011.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_011.xml") or die "failed : $!";
       
   358 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_012.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_012.xml") or die "failed : $!";
       
   359 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_013.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_013.xml") or die "failed : $!";
       
   360 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_014.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_014.xml") or die "failed : $!";
       
   361 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_015.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_015.xml") or die "failed : $!";
       
   362 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_016.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_016.xml") or die "failed : $!";
       
   363 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_017.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_017.xml") or die "failed : $!";
       
   364 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_018.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_018.xml") or die "failed : $!";
       
   365 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_019.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_019.xml") or die "failed : $!";
       
   366 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_020.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_020.xml") or die "failed : $!";
       
   367 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_021.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_021.xml") or die "failed : $!";
       
   368 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_022.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_022.xml") or die "failed : $!";
       
   369 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_023.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_023.xml") or die "failed : $!";
       
   370 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_024.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_024.xml") or die "failed : $!";
       
   371 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_025.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_025.xml") or die "failed : $!";
       
   372 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_026.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_026.xml") or die "failed : $!";
       
   373 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_027.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_027.xml") or die "failed : $!";
       
   374 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_028.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_028.xml") or die "failed : $!";
       
   375 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_029.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_029.xml") or die "failed : $!";
       
   376 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_030.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_030.xml") or die "failed : $!";
       
   377 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_031.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_031.xml") or die "failed : $!";
       
   378 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_032.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_032.xml") or die "failed : $!";
       
   379 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_033.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_033.xml") or die "failed : $!";
       
   380 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_034.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_034.xml") or die "failed : $!";
       
   381 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_035.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_035.xml") or die "failed : $!";
       
   382 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_036.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_036.xml") or die "failed : $!";
       
   383 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_037.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_037.xml") or die "failed : $!";
       
   384 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_038.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_038.xml") or die "failed : $!";
       
   385 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_039.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_039.xml") or die "failed : $!";
       
   386 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_040.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_040.xml") or die "failed : $!";
       
   387 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_041.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_041.xml") or die "failed : $!";
       
   388 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_042.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_042.xml") or die "failed : $!";
       
   389 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_043.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_043.xml") or die "failed : $!";
       
   390 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_044.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_044.xml") or die "failed : $!";
       
   391 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_045.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_045.xml") or die "failed : $!";
       
   392 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_046.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_046.xml") or die "failed : $!";
       
   393 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_047.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_047.xml") or die "failed : $!";
       
   394 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_048.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_048.xml") or die "failed : $!";
       
   395 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_049.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_049.xml") or die "failed : $!";
       
   396 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_050.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_050.xml") or die "failed : $!";
       
   397 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_051.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_051.xml") or die "failed : $!";
       
   398 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_052.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_052.xml") or die "failed : $!";
       
   399 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_053.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_053.xml") or die "failed : $!";
       
   400 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_054.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_054.xml") or die "failed : $!";
       
   401 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_055.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_055.xml") or die "failed : $!";
       
   402 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_056.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_056.xml") or die "failed : $!";
       
   403 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_057.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_057.xml") or die "failed : $!";
       
   404 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_058.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_058.xml") or die "failed : $!";
       
   405 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_059.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_059.xml") or die "failed : $!";
       
   406 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_060.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_060.xml") or die "failed : $!";
       
   407 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_061.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_061.xml") or die "failed : $!";
       
   408 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_062.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_062.xml") or die "failed : $!";
       
   409 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_063.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_063.xml") or die "failed : $!";
       
   410 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_064.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_064.xml") or die "failed : $!";
       
   411 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_065.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_065.xml") or die "failed : $!";
       
   412 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_066.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_066.xml") or die "failed : $!";
       
   413 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_067.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_067.xml") or die "failed : $!";
       
   414 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_068.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_068.xml") or die "failed : $!";
       
   415 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_070.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_070.xml") or die "failed : $!";
       
   416 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_071.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_071.xml") or die "failed : $!";
       
   417 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_072.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_072.xml") or die "failed : $!";
       
   418 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_073.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_073.xml") or die "failed : $!";
       
   419 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_074.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_074.xml") or die "failed : $!";
       
   420 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_075.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_075.xml") or die "failed : $!";
       
   421 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_077.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_077.xml") or die "failed : $!";
       
   422 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_078.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_078.xml") or die "failed : $!";
       
   423 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_079.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_079.xml") or die "failed : $!";
       
   424 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_080.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_080.xml") or die "failed : $!";
       
   425 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_081.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_081.xml") or die "failed : $!";
       
   426 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_082.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_082.xml") or die "failed : $!";
       
   427 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_083.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_083.xml") or die "failed : $!";
       
   428 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_084.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_084.xml") or die "failed : $!";
       
   429 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_085.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_085.xml") or die "failed : $!";
       
   430 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_086.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_086.xml") or die "failed : $!";
       
   431 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_087.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_087.xml") or die "failed : $!";
       
   432 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_088.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_088.xml") or die "failed : $!";
       
   433 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_089.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_089.xml") or die "failed : $!";
       
   434 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_092.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_092.xml") or die "failed : $!";
       
   435 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_093.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_093.xml") or die "failed : $!";
       
   436 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_094.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_094.xml") or die "failed : $!";
       
   437 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_095.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_095.xml") or die "failed : $!";
       
   438 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_096.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_096.xml") or die "failed : $!";
       
   439 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_097.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_097.xml") or die "failed : $!";
       
   440 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_098.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_098.xml") or die "failed : $!";
       
   441 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_099.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_099.xml") or die "failed : $!";
       
   442 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_100.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_100.xml") or die "failed : $!";
       
   443 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_101.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_101.xml") or die "failed : $!";
       
   444 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_102.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_102.xml") or die "failed : $!";
       
   445 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_103.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_103.xml") or die "failed : $!";
       
   446 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_104.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_104.xml") or die "failed : $!";
       
   447 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_105.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_105.xml") or die "failed : $!";
       
   448 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_106.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_106.xml") or die "failed : $!";
       
   449 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_107.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_107.xml") or die "failed : $!";
       
   450 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_108.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_108.xml") or die "failed : $!";
       
   451 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_109.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_109.xml") or die "failed : $!";
       
   452 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_110.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_110.xml") or die "failed : $!";
       
   453 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_111.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_111.xml") or die "failed : $!";
       
   454 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_112.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_112.xml") or die "failed : $!";
       
   455 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_113.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_113.xml") or die "failed : $!";
       
   456 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_114.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_114.xml") or die "failed : $!";
       
   457 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_115.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_115.xml") or die "failed : $!";
       
   458 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_116.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_116.xml") or die "failed : $!";
       
   459 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_117.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_117.xml") or die "failed : $!";
       
   460 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_118.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_118.xml") or die "failed : $!";
       
   461 copy($epoc . "winscw/c/XMLTest/input/xmlconf/xmltest/wf/XML_wf_119.xml",		"temp/xmlsrvtest/general/XMLTest/input/xmlconf/xmltest/wf/XML_wf_119.xml") or die "failed : $!";
       
   462 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_01.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_01.ref") or die "failed : $!";
       
   463 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_02.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_02.ref") or die "failed : $!";
       
   464 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_03.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_03.ref") or die "failed : $!";
       
   465 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_04.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_04.ref") or die "failed : $!";
       
   466 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_05.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_05.ref") or die "failed : $!";
       
   467 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_06.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_06.ref") or die "failed : $!";
       
   468 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_07.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_07.ref") or die "failed : $!";
       
   469 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_08.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_08.ref") or die "failed : $!";
       
   470 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_09.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_09.ref") or die "failed : $!";
       
   471 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_10.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_10.ref") or die "failed : $!";
       
   472 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_11.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_11.ref") or die "failed : $!";
       
   473 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_12.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_not_wf_12.ref") or die "failed : $!";
       
   474 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_01.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_01.ref") or die "failed : $!";
       
   475 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_02.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_02.ref") or die "failed : $!";
       
   476 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_03.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_03.ref") or die "failed : $!";
       
   477 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_04.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_04.ref") or die "failed : $!";
       
   478 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_05.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_05.ref") or die "failed : $!";
       
   479 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_06.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_06.ref") or die "failed : $!";
       
   480 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_07.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_07.ref") or die "failed : $!";
       
   481 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_08.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_08.ref") or die "failed : $!";
       
   482 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_09.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_09.ref") or die "failed : $!";
       
   483 copy($epoc . "winscw/c/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_10.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/chunkparser/DOM_XML_chunk_wf_10.ref") or die "failed : $!";
       
   484 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_001.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_001.ref") or die "failed : $!";
       
   485 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_002.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_002.ref") or die "failed : $!";
       
   486 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_003.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_003.ref") or die "failed : $!";
       
   487 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_004.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_004.ref") or die "failed : $!";
       
   488 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_005.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_005.ref") or die "failed : $!";
       
   489 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_elem_006.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_elem_006.ref") or die "failed : $!";
       
   490 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_01.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_01.ref") or die "failed : $!";
       
   491 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_02.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_02.ref") or die "failed : $!";
       
   492 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_03.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_03.ref") or die "failed : $!";
       
   493 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_inner_04.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_inner_04.ref") or die "failed : $!";
       
   494 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_001.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_001.ref") or die "failed : $!";
       
   495 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_002.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_002.ref") or die "failed : $!";
       
   496 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_003.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_003.ref") or die "failed : $!";
       
   497 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_004.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_004.ref") or die "failed : $!";
       
   498 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_005.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_005.ref") or die "failed : $!";
       
   499 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_006.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_006.ref") or die "failed : $!";
       
   500 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_008.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_008.ref") or die "failed : $!";
       
   501 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_009.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_009.ref") or die "failed : $!";
       
   502 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_010.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_010.ref") or die "failed : $!";
       
   503 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_011.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_011.ref") or die "failed : $!";
       
   504 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_012.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_012.ref") or die "failed : $!";
       
   505 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_013.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_013.ref") or die "failed : $!";
       
   506 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_014.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_014.ref") or die "failed : $!";
       
   507 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_015.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_015.ref") or die "failed : $!";
       
   508 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_016.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_016.ref") or die "failed : $!";
       
   509 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_017.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_017.ref") or die "failed : $!";
       
   510 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_018.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_018.ref") or die "failed : $!";
       
   511 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_019.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_019.ref") or die "failed : $!";
       
   512 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_020.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_020.ref") or die "failed : $!";
       
   513 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_021.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_021.ref") or die "failed : $!";
       
   514 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_022.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_022.ref") or die "failed : $!";
       
   515 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_034.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_034.ref") or die "failed : $!";
       
   516 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_035.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_035.ref") or die "failed : $!";
       
   517 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_036.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_036.ref") or die "failed : $!";
       
   518 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_041.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_041.ref") or die "failed : $!";
       
   519 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_modif_046.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_modif_046.ref") or die "failed : $!";
       
   520 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_nodefilter_01.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_nodefilter_01.ref") or die "failed : $!";
       
   521 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_01.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_01.ref") or die "failed : $!";
       
   522 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_02.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_02.ref") or die "failed : $!";
       
   523 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_03.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_03.ref") or die "failed : $!";
       
   524 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_outer_04.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_outer_04.ref") or die "failed : $!";
       
   525 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_save_01.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_save_01.ref") or die "failed : $!";
       
   526 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_save_02.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_save_02.ref") or die "failed : $!";
       
   527 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_save_03.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_save_03.ref") or die "failed : $!";
       
   528 copy($epoc . "winscw/c/XMLTest/pattern/dom/DOM_xmlid_08.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/dom/DOM_xmlid_08.ref") or die "failed : $!";
       
   529 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_001.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_001.ref") or die "failed : $!";
       
   530 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_002.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_002.ref") or die "failed : $!";
       
   531 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_003.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_003.ref") or die "failed : $!";
       
   532 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_004.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_004.ref") or die "failed : $!";
       
   533 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_005.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_005.ref") or die "failed : $!";
       
   534 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_006.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_006.ref") or die "failed : $!";
       
   535 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_007.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_007.ref") or die "failed : $!";
       
   536 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_008.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_008.ref") or die "failed : $!";
       
   537 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_009.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_009.ref") or die "failed : $!";
       
   538 copy($epoc . "winscw/c/XMLTest/pattern/Encoding/DOM_XML_encoding_010.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/Encoding/DOM_XML_encoding_010.ref") or die "failed : $!";
       
   539 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001.ref") or die "failed : $!";
       
   540 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001b.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_001b.ref") or die "failed : $!";
       
   541 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_002.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_002.ref") or die "failed : $!";
       
   542 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_003.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_003.ref") or die "failed : $!";
       
   543 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_004.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_004.ref") or die "failed : $!";
       
   544 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_005.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_005.ref") or die "failed : $!";
       
   545 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_006.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_006.ref") or die "failed : $!";
       
   546 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_007.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_007.ref") or die "failed : $!";
       
   547 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_008.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_008.ref") or die "failed : $!";
       
   548 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_009.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_009.ref") or die "failed : $!";
       
   549 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_010.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_010.ref") or die "failed : $!";
       
   550 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_011.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_011.ref") or die "failed : $!";
       
   551 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_012.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_012.ref") or die "failed : $!";
       
   552 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_013.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_013.ref") or die "failed : $!";
       
   553 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_014.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_014.ref") or die "failed : $!";
       
   554 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_015.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_015.ref") or die "failed : $!";
       
   555 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_016.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_016.ref") or die "failed : $!";
       
   556 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_017.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_017.ref") or die "failed : $!";
       
   557 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_018.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_018.ref") or die "failed : $!";
       
   558 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_019.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_019.ref") or die "failed : $!";
       
   559 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_020.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_020.ref") or die "failed : $!";
       
   560 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_021.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_021.ref") or die "failed : $!";
       
   561 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_022.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_022.ref") or die "failed : $!";
       
   562 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_023.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_023.ref") or die "failed : $!";
       
   563 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_024.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_024.ref") or die "failed : $!";
       
   564 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_025.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_025.ref") or die "failed : $!";
       
   565 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_026.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_026.ref") or die "failed : $!";
       
   566 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_027.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_027.ref") or die "failed : $!";
       
   567 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_028.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_028.ref") or die "failed : $!";
       
   568 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_029.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_029.ref") or die "failed : $!";
       
   569 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_030.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_030.ref") or die "failed : $!";
       
   570 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_031.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_031.ref") or die "failed : $!";
       
   571 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_032.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_032.ref") or die "failed : $!";
       
   572 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_033.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_033.ref") or die "failed : $!";
       
   573 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_034.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_034.ref") or die "failed : $!";
       
   574 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_035.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_035.ref") or die "failed : $!";
       
   575 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_036.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_036.ref") or die "failed : $!";
       
   576 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_037.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_037.ref") or die "failed : $!";
       
   577 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_038.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_038.ref") or die "failed : $!";
       
   578 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_039.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_039.ref") or die "failed : $!";
       
   579 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_040.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_040.ref") or die "failed : $!";
       
   580 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_041.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_041.ref") or die "failed : $!";
       
   581 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_042.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_042.ref") or die "failed : $!";
       
   582 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_043.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_043.ref") or die "failed : $!";
       
   583 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_044.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_044.ref") or die "failed : $!";
       
   584 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_045.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_045.ref") or die "failed : $!";
       
   585 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_046.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_046.ref") or die "failed : $!";
       
   586 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_047.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_047.ref") or die "failed : $!";
       
   587 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_048.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_048.ref") or die "failed : $!";
       
   588 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_049.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_049.ref") or die "failed : $!";
       
   589 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_050.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_050.ref") or die "failed : $!";
       
   590 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_051.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_051.ref") or die "failed : $!";
       
   591 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_052.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_052.ref") or die "failed : $!";
       
   592 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_053.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_053.ref") or die "failed : $!";
       
   593 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_054.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_054.ref") or die "failed : $!";
       
   594 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_055.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_055.ref") or die "failed : $!";
       
   595 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_056.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_056.ref") or die "failed : $!";
       
   596 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_057.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_057.ref") or die "failed : $!";
       
   597 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_058.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_058.ref") or die "failed : $!";
       
   598 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_059.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_059.ref") or die "failed : $!";
       
   599 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_060.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_060.ref") or die "failed : $!";
       
   600 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_061.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_061.ref") or die "failed : $!";
       
   601 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_062.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_062.ref") or die "failed : $!";
       
   602 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_063.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_063.ref") or die "failed : $!";
       
   603 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_064.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_064.ref") or die "failed : $!";
       
   604 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_065.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_065.ref") or die "failed : $!";
       
   605 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_066.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_066.ref") or die "failed : $!";
       
   606 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_067.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_067.ref") or die "failed : $!";
       
   607 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_068.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_068.ref") or die "failed : $!";
       
   608 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_069.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_069.ref") or die "failed : $!";
       
   609 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_070.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_070.ref") or die "failed : $!";
       
   610 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_071.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_071.ref") or die "failed : $!";
       
   611 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_072.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_072.ref") or die "failed : $!";
       
   612 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_073.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_073.ref") or die "failed : $!";
       
   613 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_074.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_074.ref") or die "failed : $!";
       
   614 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_075.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_075.ref") or die "failed : $!";
       
   615 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_076.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_076.ref") or die "failed : $!";
       
   616 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_077.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_077.ref") or die "failed : $!";
       
   617 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_078.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_078.ref") or die "failed : $!";
       
   618 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_079.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_079.ref") or die "failed : $!";
       
   619 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_080.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_080.ref") or die "failed : $!";
       
   620 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_081.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_081.ref") or die "failed : $!";
       
   621 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_082.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_082.ref") or die "failed : $!";
       
   622 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_083.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_083.ref") or die "failed : $!";
       
   623 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_084.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_084.ref") or die "failed : $!";
       
   624 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_085.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_085.ref") or die "failed : $!";
       
   625 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_086.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_086.ref") or die "failed : $!";
       
   626 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_087.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_087.ref") or die "failed : $!";
       
   627 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_088.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_088.ref") or die "failed : $!";
       
   628 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_089.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_089.ref") or die "failed : $!";
       
   629 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_090.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_090.ref") or die "failed : $!";
       
   630 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_091.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_091.ref") or die "failed : $!";
       
   631 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_092.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_092.ref") or die "failed : $!";
       
   632 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_093.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_093.ref") or die "failed : $!";
       
   633 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_094.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_094.ref") or die "failed : $!";
       
   634 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_095.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_095.ref") or die "failed : $!";
       
   635 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_096.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_096.ref") or die "failed : $!";
       
   636 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_097.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_097.ref") or die "failed : $!";
       
   637 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_098.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_098.ref") or die "failed : $!";
       
   638 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_099.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_099.ref") or die "failed : $!";
       
   639 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_100.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_100.ref") or die "failed : $!";
       
   640 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_101.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_101.ref") or die "failed : $!";
       
   641 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_102.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_102.ref") or die "failed : $!";
       
   642 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_103.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_103.ref") or die "failed : $!";
       
   643 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_104.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_104.ref") or die "failed : $!";
       
   644 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_105.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_105.ref") or die "failed : $!";
       
   645 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_106.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_106.ref") or die "failed : $!";
       
   646 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_107.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_107.ref") or die "failed : $!";
       
   647 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_108.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_108.ref") or die "failed : $!";
       
   648 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_109.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_109.ref") or die "failed : $!";
       
   649 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_110.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_110.ref") or die "failed : $!";
       
   650 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_111.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_111.ref") or die "failed : $!";
       
   651 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_112.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_112.ref") or die "failed : $!";
       
   652 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_113.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_113.ref") or die "failed : $!";
       
   653 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_114.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_114.ref") or die "failed : $!";
       
   654 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_115.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_115.ref") or die "failed : $!";
       
   655 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_116.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_116.ref") or die "failed : $!";
       
   656 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_117.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_117.ref") or die "failed : $!";
       
   657 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_118.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_118.ref") or die "failed : $!";
       
   658 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_119.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_119.ref") or die "failed : $!";
       
   659 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_120.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_120.ref") or die "failed : $!";
       
   660 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_121.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_121.ref") or die "failed : $!";
       
   661 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_122.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_122.ref") or die "failed : $!";
       
   662 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_123.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_123.ref") or die "failed : $!";
       
   663 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_124.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_124.ref") or die "failed : $!";
       
   664 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_125.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_125.ref") or die "failed : $!";
       
   665 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_126.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_126.ref") or die "failed : $!";
       
   666 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_127.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_127.ref") or die "failed : $!";
       
   667 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_128.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_128.ref") or die "failed : $!";
       
   668 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_129.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_129.ref") or die "failed : $!";
       
   669 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_130.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_130.ref") or die "failed : $!";
       
   670 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_131.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_131.ref") or die "failed : $!";
       
   671 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_132.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_132.ref") or die "failed : $!";
       
   672 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_133.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_133.ref") or die "failed : $!";
       
   673 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_134.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_134.ref") or die "failed : $!";
       
   674 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_135.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_135.ref") or die "failed : $!";
       
   675 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_136.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_136.ref") or die "failed : $!";
       
   676 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_137.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_137.ref") or die "failed : $!";
       
   677 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_138.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_138.ref") or die "failed : $!";
       
   678 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_139.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_139.ref") or die "failed : $!";
       
   679 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_140.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_140.ref") or die "failed : $!";
       
   680 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_141.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_141.ref") or die "failed : $!";
       
   681 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_142.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_142.ref") or die "failed : $!";
       
   682 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_143.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_143.ref") or die "failed : $!";
       
   683 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_144.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_144.ref") or die "failed : $!";
       
   684 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_145.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_145.ref") or die "failed : $!";
       
   685 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_146.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_146.ref") or die "failed : $!";
       
   686 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_147.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_147.ref") or die "failed : $!";
       
   687 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_148.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_148.ref") or die "failed : $!";
       
   688 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_149.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_149.ref") or die "failed : $!";
       
   689 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_150.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_150.ref") or die "failed : $!";
       
   690 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_151.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_151.ref") or die "failed : $!";
       
   691 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_152.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_152.ref") or die "failed : $!";
       
   692 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_153.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_153.ref") or die "failed : $!";
       
   693 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_154.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_154.ref") or die "failed : $!";
       
   694 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_155.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_155.ref") or die "failed : $!";
       
   695 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_156.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_156.ref") or die "failed : $!";
       
   696 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_157.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_157.ref") or die "failed : $!";
       
   697 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_158.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_158.ref") or die "failed : $!";
       
   698 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_159.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_159.ref") or die "failed : $!";
       
   699 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_160.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_160.ref") or die "failed : $!";
       
   700 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_161.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_161.ref") or die "failed : $!";
       
   701 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_162.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_162.ref") or die "failed : $!";
       
   702 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_163.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_163.ref") or die "failed : $!";
       
   703 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_164.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_164.ref") or die "failed : $!";
       
   704 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_165.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_165.ref") or die "failed : $!";
       
   705 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_166.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_166.ref") or die "failed : $!";
       
   706 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_167.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_167.ref") or die "failed : $!";
       
   707 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_168.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_168.ref") or die "failed : $!";
       
   708 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_169.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_169.ref") or die "failed : $!";
       
   709 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_170.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_170.ref") or die "failed : $!";
       
   710 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_171.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_171.ref") or die "failed : $!";
       
   711 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_172.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_172.ref") or die "failed : $!";
       
   712 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_173.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_173.ref") or die "failed : $!";
       
   713 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_174.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_174.ref") or die "failed : $!";
       
   714 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_175.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_175.ref") or die "failed : $!";
       
   715 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_176.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_176.ref") or die "failed : $!";
       
   716 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_177.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_177.ref") or die "failed : $!";
       
   717 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_178.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_178.ref") or die "failed : $!";
       
   718 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_179.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_179.ref") or die "failed : $!";
       
   719 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_180.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_180.ref") or die "failed : $!";
       
   720 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_181.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_181.ref") or die "failed : $!";
       
   721 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_182.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_182.ref") or die "failed : $!";
       
   722 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_183.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_183.ref") or die "failed : $!";
       
   723 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_184.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_184.ref") or die "failed : $!";
       
   724 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_185.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_185.ref") or die "failed : $!";
       
   725 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_186.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/not_wf/DOM_XML_not_wf_186.ref") or die "failed : $!";
       
   726 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_001.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_001.ref") or die "failed : $!";
       
   727 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_002.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_002.ref") or die "failed : $!";
       
   728 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_003.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_003.ref") or die "failed : $!";
       
   729 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_004.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_004.ref") or die "failed : $!";
       
   730 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_005.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_005.ref") or die "failed : $!";
       
   731 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_006.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_006.ref") or die "failed : $!";
       
   732 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_007.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_007.ref") or die "failed : $!";
       
   733 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_008.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_008.ref") or die "failed : $!";
       
   734 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_009.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_009.ref") or die "failed : $!";
       
   735 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_010.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_010.ref") or die "failed : $!";
       
   736 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_011.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_011.ref") or die "failed : $!";
       
   737 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_012.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_012.ref") or die "failed : $!";
       
   738 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_013.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_013.ref") or die "failed : $!";
       
   739 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_014.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_014.ref") or die "failed : $!";
       
   740 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_015.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_015.ref") or die "failed : $!";
       
   741 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_016.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_016.ref") or die "failed : $!";
       
   742 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_017.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_017.ref") or die "failed : $!";
       
   743 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_018.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_018.ref") or die "failed : $!";
       
   744 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_019.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_019.ref") or die "failed : $!";
       
   745 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_020.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_020.ref") or die "failed : $!";
       
   746 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_021.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_021.ref") or die "failed : $!";
       
   747 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_022.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_022.ref") or die "failed : $!";
       
   748 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_023.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_023.ref") or die "failed : $!";
       
   749 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_024.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_024.ref") or die "failed : $!";
       
   750 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_025.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_025.ref") or die "failed : $!";
       
   751 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_026.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_026.ref") or die "failed : $!";
       
   752 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_027.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_027.ref") or die "failed : $!";
       
   753 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_028.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_028.ref") or die "failed : $!";
       
   754 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_029.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_029.ref") or die "failed : $!";
       
   755 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_030.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_030.ref") or die "failed : $!";
       
   756 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_031.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_031.ref") or die "failed : $!";
       
   757 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_032.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_032.ref") or die "failed : $!";
       
   758 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_033.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_033.ref") or die "failed : $!";
       
   759 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_034.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_034.ref") or die "failed : $!";
       
   760 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_035.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_035.ref") or die "failed : $!";
       
   761 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_036.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_036.ref") or die "failed : $!";
       
   762 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_037.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_037.ref") or die "failed : $!";
       
   763 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_038.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_038.ref") or die "failed : $!";
       
   764 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_039.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_039.ref") or die "failed : $!";
       
   765 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_040.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_040.ref") or die "failed : $!";
       
   766 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_041.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_041.ref") or die "failed : $!";
       
   767 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_042.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_042.ref") or die "failed : $!";
       
   768 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_043.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_043.ref") or die "failed : $!";
       
   769 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_044.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_044.ref") or die "failed : $!";
       
   770 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_045.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_045.ref") or die "failed : $!";
       
   771 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_046.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_046.ref") or die "failed : $!";
       
   772 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_047.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_047.ref") or die "failed : $!";
       
   773 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_048.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_048.ref") or die "failed : $!";
       
   774 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_049.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_049.ref") or die "failed : $!";
       
   775 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_050.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_050.ref") or die "failed : $!";
       
   776 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_051.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_051.ref") or die "failed : $!";
       
   777 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_052.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_052.ref") or die "failed : $!";
       
   778 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_053.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_053.ref") or die "failed : $!";
       
   779 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_054.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_054.ref") or die "failed : $!";
       
   780 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_055.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_055.ref") or die "failed : $!";
       
   781 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_056.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_056.ref") or die "failed : $!";
       
   782 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_057.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_057.ref") or die "failed : $!";
       
   783 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_058.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_058.ref") or die "failed : $!";
       
   784 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_059.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_059.ref") or die "failed : $!";
       
   785 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_060.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_060.ref") or die "failed : $!";
       
   786 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_061.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_061.ref") or die "failed : $!";
       
   787 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_062.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_062.ref") or die "failed : $!";
       
   788 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_063.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_063.ref") or die "failed : $!";
       
   789 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_064.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_064.ref") or die "failed : $!";
       
   790 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_065.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_065.ref") or die "failed : $!";
       
   791 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_066.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_066.ref") or die "failed : $!";
       
   792 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_067.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_067.ref") or die "failed : $!";
       
   793 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_068.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_068.ref") or die "failed : $!";
       
   794 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_070.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_070.ref") or die "failed : $!";
       
   795 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_071.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_071.ref") or die "failed : $!";
       
   796 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_072.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_072.ref") or die "failed : $!";
       
   797 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_073.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_073.ref") or die "failed : $!";
       
   798 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_074.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_074.ref") or die "failed : $!";
       
   799 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_075.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_075.ref") or die "failed : $!";
       
   800 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_077.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_077.ref") or die "failed : $!";
       
   801 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_078.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_078.ref") or die "failed : $!";
       
   802 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_079.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_079.ref") or die "failed : $!";
       
   803 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_080.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_080.ref") or die "failed : $!";
       
   804 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_081.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_081.ref") or die "failed : $!";
       
   805 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_082.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_082.ref") or die "failed : $!";
       
   806 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_083.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_083.ref") or die "failed : $!";
       
   807 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_084.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_084.ref") or die "failed : $!";
       
   808 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_085.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_085.ref") or die "failed : $!";
       
   809 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_086.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_086.ref") or die "failed : $!";
       
   810 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_087.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_087.ref") or die "failed : $!";
       
   811 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_088.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_088.ref") or die "failed : $!";
       
   812 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_089.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_089.ref") or die "failed : $!";
       
   813 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_092.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_092.ref") or die "failed : $!";
       
   814 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_093.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_093.ref") or die "failed : $!";
       
   815 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_094.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_094.ref") or die "failed : $!";
       
   816 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_095.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_095.ref") or die "failed : $!";
       
   817 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_096.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_096.ref") or die "failed : $!";
       
   818 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_097.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_097.ref") or die "failed : $!";
       
   819 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_098.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_098.ref") or die "failed : $!";
       
   820 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_099.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_099.ref") or die "failed : $!";
       
   821 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_100.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_100.ref") or die "failed : $!";
       
   822 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_101.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_101.ref") or die "failed : $!";
       
   823 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_102.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_102.ref") or die "failed : $!";
       
   824 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_103.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_103.ref") or die "failed : $!";
       
   825 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_104.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_104.ref") or die "failed : $!";
       
   826 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_105.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_105.ref") or die "failed : $!";
       
   827 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_106.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_106.ref") or die "failed : $!";
       
   828 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_107.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_107.ref") or die "failed : $!";
       
   829 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_108.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_108.ref") or die "failed : $!";
       
   830 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_109.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_109.ref") or die "failed : $!";
       
   831 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_110.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_110.ref") or die "failed : $!";
       
   832 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_111.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_111.ref") or die "failed : $!";
       
   833 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_112.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_112.ref") or die "failed : $!";
       
   834 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_113.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_113.ref") or die "failed : $!";
       
   835 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_114.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_114.ref") or die "failed : $!";
       
   836 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_115.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_115.ref") or die "failed : $!";
       
   837 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_116.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_116.ref") or die "failed : $!";
       
   838 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_117.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_117.ref") or die "failed : $!";
       
   839 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_118.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_118.ref") or die "failed : $!";
       
   840 copy($epoc . "winscw/c/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_119.ref",		"temp/xmlsrvtest/general/XMLTest/pattern/xmlconf/xmltest/wf/DOM_XML_wf_119.ref") or die "failed : $!";
       
   841 
       
   842 system("7z a -tzip xmlsrvtest.zip ./temp/*");